html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: #10131a;
    color: #e1e2eb;
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-card {
    background: rgba(21, 25, 33, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Active state for navigation — applied via JS on scroll */
.nav-link.is-active {
    color: #c3c0ff;
}

#desktop-nav .nav-link.is-active {
    border-bottom: 2px solid #c3c0ff;
    padding-bottom: 4px;
}

/* Status messages */
.form-status-success {
    color: #b9c8de;
}

.form-status-error {
    color: #ffb4ab;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
