/* Base Styles */
body {
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Glassmorphism */
.glass {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease-in-out;
}

/* Hero Gradient */
.hero-gradient {
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

/* Card Hover Glow */
.accent-glow:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
    transition: 0.3s;
}

/* Mobile Shadow for cards (since no hover on touch) */
@media (max-width: 640px) {
    .accent-glow {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    }
}

/* Adjust glass padding for mobile */
@media (max-width: 640px) {
    .glass {
        padding: 1.5rem;
    }
}

/* Navbar Mobile Menu */
#mobile-menu a {
    font-size: 1.25rem;
    transition: 0.3s;
}
#mobile-menu a:hover {
    color: #3b82f6;
}

/* Footer */
footer {
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    footer {
        font-size: 0.875rem;
    }
}
