@layer base {
    html {
        scroll-padding-top: 5rem;
        scroll-behavior: smooth;
    }
    html, body {
        margin: 0;
        padding: 0;
    }
    body {
        overscroll-behavior: none;
    }
    main > :first-child {
        margin-top: 0 !important;
    }
    main > :last-child {
        margin-bottom: 0 !important;
    }
}

::-webkit-scrollbar {
    display: none;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee-continuous {
    display: flex;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
}

.animate-marquee-continuous:hover {
    animation-play-state: paused;
}

/* Header Navigation Links */
.header-nav-link {
    position: relative;
    padding: 0.5rem 0.75rem;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8E92A4;
    border-radius: 0.25rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.header-nav-link:hover {
    color: #D4FF00;
    background-color: rgba(212, 255, 0, 0.08);
    box-shadow: 0 0 12px rgba(212, 255, 0, 0.2);
}

.header-nav-link.active,
.header-nav-link[aria-current="page"] {
    color: #D4FF00;
    background-color: #1A1B22;
    font-weight: 700;
    box-shadow: 0 0 16px rgba(212, 255, 0, 0.25), inset 0 0 0 1px rgba(212, 255, 0, 0.3);
}
