/* ============================================================
   THE HATED CREW — REVAMPED STYLES
   Fonts: Bebas Neue (display) + IBM Plex Mono (body)
   Aesthetic: Dark ops / underground document / neon cipher
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap');


/* ============================================================
   CSS VARIABLES
============================================================ */

:root {
    --neon:        #00ff88;
    --neon-dim:    #00cc6a;
    --neon-glow:   rgba(0, 255, 136, 0.35);
    --neon-subtle: rgba(0, 255, 136, 0.08);
    --bg:          #000;
    --surface:     #050505;
    --panel:       rgba(0, 0, 0, 0.72);
    --text:        #e8e8e8;
    --muted:       #666;
    --border:      rgba(0, 255, 136, 0.18);
    --border-hot:  rgba(0, 255, 136, 0.55);
    --red-glitch:  #ff003c;
    --blue-glitch: #00cfff;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'IBM Plex Mono', monospace;
}


/* ============================================================
   RESET
============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ============================================================
   BODY
============================================================ */

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    cursor: none; /* hides default — custom cursor takes over */
    overflow-x: hidden;
}


/* ============================================================
   CUSTOM CURSOR
============================================================ */

#cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease, background 0.2s ease;
    box-shadow: 0 0 8px var(--neon);
}

#cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid var(--neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.6;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
    width: 50px;
    height: 50px;
    border-color: var(--neon);
    opacity: 1;
}


/* ============================================================
   SCANLINES OVERLAY
============================================================ */

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.07) 2px,
        rgba(0, 0, 0, 0.07) 4px
    );
    pointer-events: none;
    z-index: 9990;
}


/* ============================================================
   GRAIN / NOISE OVERLAY
============================================================ */

body::before {
    content: "";
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 9989;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10%       { transform: translate(-2%, -3%); }
    20%       { transform: translate(3%, 1%); }
    30%       { transform: translate(-1%, 4%); }
    40%       { transform: translate(4%, -2%); }
    50%       { transform: translate(-3%, 3%); }
    60%       { transform: translate(2%, -4%); }
    70%       { transform: translate(-4%, 1%); }
    80%       { transform: translate(1%, 3%); }
    90%       { transform: translate(3%, -1%); }
}


/* ============================================================
   BACKGROUND VIDEO
============================================================ */

#bg-video {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.28) saturate(0.7);
}


/* ============================================================
   GLOBAL SECTIONS
============================================================ */

section {
    max-width: 1200px;
    margin: auto;
    padding: 90px 24px;
    position: relative;
    z-index: 1;
}

/* Scroll reveal — base state */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* ============================================================
   TYPOGRAPHY
============================================================ */

h1, h2, h3 {
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    line-height: 1;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text);
    margin-bottom: 16px;
}

h3 {
    font-size: 1.4rem;
    color: var(--neon);
    margin-bottom: 8px;
}

p {
    color: #999;
    font-size: 14px;
    letter-spacing: 0.02em;
}


/* ============================================================
   NAVBAR
============================================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 48px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    z-index: 10000;
    transition: padding 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 48px;
    background: rgba(0, 0, 0, 0.92);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    color: var(--neon);
    text-decoration: none;
    cursor: none;
    position: relative;
    /* flicker animation */
    animation: neon-flicker 6s infinite;
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 6px var(--neon),
            0 0 16px var(--neon),
            0 0 30px var(--neon-dim);
        color: var(--neon);
    }
    20%, 24%, 55% {
        text-shadow: none;
        color: var(--neon-dim);
    }
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #aaa;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: none;
    position: relative;
    transition: color 0.2s ease;
    /* data-text is set by JS for scramble */
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 8px var(--neon);
}

.nav-links a:hover {
    color: var(--neon);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Scramble chars glow */
.scramble-char {
    color: var(--neon);
    opacity: 0.7;
}


/* ============================================================
   HERO
============================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(64px, 12vw, 140px);
    letter-spacing: 0.08em;
    color: var(--neon);
    position: relative;
    line-height: 0.95;
    cursor: default;
    /* subtle text-shadow baseline */
    text-shadow:
        0 0 20px rgba(0, 255, 136, 0.4),
        0 0 60px rgba(0, 255, 136, 0.15);
}

/* GLITCH LAYERS */
.hero h1::before,
.hero h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    overflow: hidden;
}

.hero h1::before {
    color: var(--red-glitch);
    animation: glitch-top 4s infinite steps(1);
    animation-delay: 0.5s;
}

.hero h1::after {
    color: var(--blue-glitch);
    animation: glitch-bottom 4s infinite steps(1);
    animation-delay: 1s;
}

@keyframes glitch-top {
    0%, 90%, 100% {
        clip-path: inset(0 0 100% 0);
        transform: translate(0, 0) skewX(0);
    }
    92% {
        clip-path: inset(0% 0 85% 0);
        transform: translate(-4px, -2px) skewX(-3deg);
    }
    94% {
        clip-path: inset(30% 0 50% 0);
        transform: translate(4px, 1px) skewX(2deg);
    }
    96% {
        clip-path: inset(60% 0 20% 0);
        transform: translate(-3px, 0) skewX(-1deg);
    }
    98% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(2px, -2px) skewX(4deg);
    }
}

@keyframes glitch-bottom {
    0%, 88%, 100% {
        clip-path: inset(100% 0 0 0);
        transform: translate(0, 0) skewX(0);
    }
    89% {
        clip-path: inset(70% 0 0% 0);
        transform: translate(5px, 3px) skewX(2deg);
    }
    91% {
        clip-path: inset(40% 0 30% 0);
        transform: translate(-5px, 1px) skewX(-3deg);
    }
    93% {
        clip-path: inset(10% 0 70% 0);
        transform: translate(3px, -2px) skewX(1deg);
    }
    95% {
        clip-path: inset(55% 0 15% 0);
        transform: translate(-2px, 2px) skewX(-2deg);
    }
}

/* Hero subtitle line */
.hero-subtitle {
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 16px;
    margin-bottom: 8px;
}

.hero-buttons {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================================
   BUTTONS
============================================================ */

.primary-btn,
.secondary-btn,
.view-button,
.music-button,
.buy-button {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    display: inline-block;
    padding: 14px 28px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

/* sweep fill effect */
.primary-btn::before,
.secondary-btn::before,
.view-button::before,
.music-button::before,
.buy-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--neon);
    transform: translateX(-105%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.primary-btn span,
.secondary-btn span,
.view-button span,
.music-button span,
.buy-button span {
    position: relative;
    z-index: 1;
}

/* PRIMARY */
.primary-btn {
    background: var(--neon);
    color: #000;
}

.primary-btn:hover {
    box-shadow: 0 0 24px var(--neon-glow), 0 0 50px rgba(0,255,136,0.2);
    color: #000;
}

.primary-btn:hover::before {
    transform: translateX(0);
}

/* SECONDARY */
.secondary-btn {
    background: transparent;
    border: 1px solid var(--neon);
    color: var(--neon);
}

.secondary-btn:hover {
    color: #000;
    box-shadow: 0 0 24px var(--neon-glow);
}

.secondary-btn:hover::before {
    transform: translateX(0);
}

/* VIEW / MUSIC */
.view-button,
.music-button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--neon);
    margin-top: 32px;
}

.view-button:hover,
.music-button:hover {
    color: #000;
    border-color: var(--neon);
    box-shadow: 0 0 20px var(--neon-glow);
}

.view-button:hover::before,
.music-button:hover::before {
    transform: translateX(0);
}

/* BUY */
.buy-button {
    background: var(--neon);
    color: #000;
    width: 100%;
    text-align: center;
}

.buy-button:hover {
    box-shadow: 0 0 24px var(--neon-glow);
}

.buy-button:hover::before {
    transform: translateX(0);
}


/* ============================================================
   ABOUT STRIP
============================================================ */

.about-strip {
    text-align: center;
}

.about-box {
    max-width: 680px;
    margin: auto;
}

.about-box p + p {
    margin-top: 16px;
}


/* ============================================================
   GRID — MUSIC + MERCH
============================================================ */

.grid-section {
    text-align: center;
}

.grid,
.merch-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 1000px;
    margin: 40px auto 0;
}

.card {
    width: 210px;
    text-align: center;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid var(--border);
    padding: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    cursor: none;
}

/* Corner accent lines */
.card::before,
.card::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--neon);
    border-style: solid;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.card::before {
    top: 4px; left: 4px;
    border-width: 2px 0 0 2px;
}

.card::after {
    bottom: 4px; right: 4px;
    border-width: 0 2px 2px 0;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 50px rgba(0, 255, 136, 0.2), 0 0 0 1px var(--border-hot);
    border-color: var(--border-hot);
}

.card:hover::before,
.card:hover::after {
    opacity: 1;
    width: 20px;
    height: 20px;
}

.card img {
    width: 100%;
    display: block;
    transition: filter 0.4s ease, transform 0.4s ease;
    filter: saturate(0.85);
}

.card:hover img {
    filter: saturate(1.1) brightness(1.05);
    transform: scale(1.04);
}

.card p {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 10px;
    transition: color 0.3s ease;
}

.card:hover p {
    color: var(--neon);
}


/* ============================================================
   MERCH IMAGE FIX
============================================================ */

.merch-grid .card img,
.merch-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #0a0a0a;
    padding: 10px;
}


/* ============================================================
   MUSIC PAGE
============================================================ */

.music-section {
    max-width: 1100px;
    margin: auto;
}

.music-card {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    background: rgba(0, 0, 0, 0.65);
    padding: 24px;
    border: 1px solid var(--border);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.music-card:hover {
    border-color: var(--border-hot);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.1);
}

/* animated left accent bar */
.music-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 3px;
    height: 0;
    background: var(--neon);
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 12px var(--neon);
}

.music-card:hover::before {
    height: 100%;
}

.music-card img {
    width: 220px;
    filter: saturate(0.8);
    transition: filter 0.4s ease;
}

.music-card:hover img {
    filter: saturate(1.1);
}

.music-info {
    flex: 1;
    min-width: 280px;
}

.music-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}


/* ============================================================
   PLATFORM BUTTONS
============================================================ */

.artist-platforms {
    text-align: center;
    padding: 60px 20px;
}

.platform-links {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-radius: 3px;
    color: white;
    cursor: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.platform-btn i { font-size: 15px; }

.platform-btn.youtube    { background: #cc0000; }
.platform-btn.spotify    { background: #1aa34a; }
.platform-btn.soundcloud { background: #e04400; }
.platform-btn.iheart     { background: #a5001e; }
.platform-btn.apple      { background: #111; border: 1px solid #333; }
.platform-btn.amazon     { background: #c47900; color: #000; }

.platform-btn:hover {
    transform: translateY(-4px) scale(1.04);
    filter: brightness(1.15);
}

.platform-btn.youtube:hover    { box-shadow: 0 6px 20px rgba(204,0,0,0.5); }
.platform-btn.spotify:hover    { box-shadow: 0 6px 20px rgba(26,163,74,0.5); }
.platform-btn.soundcloud:hover { box-shadow: 0 6px 20px rgba(224,68,0,0.5); }
.platform-btn.iheart:hover     { box-shadow: 0 6px 20px rgba(165,0,30,0.5); }
.platform-btn.apple:hover      { box-shadow: 0 6px 20px rgba(150,150,150,0.3); }
.platform-btn.amazon:hover     { box-shadow: 0 6px 20px rgba(196,121,0,0.5); }


/* ============================================================
   NEWS
============================================================ */

.news-section {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.news-card {
    width: 260px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.news-card::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--neon);
    box-shadow: 0 0 10px var(--neon);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hot);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.12);
}

.news-card:hover::before {
    width: 100%;
}

.news-date {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 8px;
}

.news-card h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-card p {
    font-size: 13px;
    line-height: 1.65;
}


/* ============================================================
   ABOUT PAGE
============================================================ */

.about-main {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-main.reverse {
    flex-direction: row-reverse;
}

.about-image img {
    width: 340px;
    max-width: 100%;
    filter: grayscale(0.3) saturate(1.1);
    border: 1px solid var(--border);
    transition: filter 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
    filter: grayscale(0) saturate(1.3);
    box-shadow: 0 0 40px var(--neon-glow);
}

.about-text p + p {
    margin-top: 14px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
    padding: 60px 24px;
}

.stat h3 {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-weight: 500;
}

.stat p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: var(--neon);
}


/* ============================================================
   CONTACT
============================================================ */

.contact-section {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 13px;
    margin-bottom: 6px;
}

.contact-form-wrapper {
    min-width: 340px;
}

.contact-form-wrapper label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
    margin-top: 14px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 11px 14px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: vertical;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    border-color: var(--neon);
    box-shadow: 0 0 0 1px var(--neon), 0 0 16px rgba(0,255,136,0.15);
}

.contact-form-wrapper .primary-btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

#contactStatus {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--neon);
    margin-top: 10px;
    min-height: 20px;
}


/* ============================================================
   MERCH / DIGITAL TRACK
============================================================ */

.merch-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border);
    padding: 20px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.track-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 80px auto;
}

.track-card {
    width: 360px;
    text-align: center;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid var(--border);
    padding: 28px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.track-card:hover {
    border-color: var(--border-hot);
    box-shadow: 0 0 40px rgba(0,255,136,0.1);
}

.track-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: saturate(0.8);
    transition: filter 0.4s ease;
}

.track-card:hover img {
    filter: saturate(1.1);
}

.track-card h3 {
    margin-top: 16px;
    font-size: 1.6rem;
}

.track-info h2 {
    margin-bottom: 12px;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 12px;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.audio-player button {
    background: transparent;
    border: 1px solid var(--neon);
    color: var(--neon);
    width: 32px;
    height: 32px;
    cursor: none;
    font-size: 12px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.audio-player button:hover {
    background: var(--neon);
    color: #000;
    box-shadow: 0 0 14px var(--neon-glow);
}

.terms-check {
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 12px;
}

.terms-check a { color: var(--neon); }

.price {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.track-card input[type="number"] {
    background: #0a0a0a;
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 8px 12px;
    width: 100%;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.3s ease;
}

.track-card input[type="number"]:focus {
    border-color: var(--neon);
}


/* ============================================================
   PAGE HEADER
============================================================ */

.page-header {
    padding-top: 160px;
    padding-bottom: 60px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 9vw, 96px);
    letter-spacing: 0.12em;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: var(--neon);
    margin: 10px auto 0;
    box-shadow: 0 0 12px var(--neon);
    animation: expand-line 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes expand-line {
    to { width: 80px; }
}

.page-header p {
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}


/* ============================================================
   CTA SECTION
============================================================ */

.cta {
    text-align: center;
    padding: 100px 24px;
    position: relative;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--border);
    border-radius: 2px;
    max-width: 900px;
    margin: auto;
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--neon);
}

.cta p {
    max-width: 440px;
    margin: 16px auto 0;
    font-size: 13px;
}


/* ============================================================
   FEATURED
============================================================ */

.featured {
    text-align: center;
}

.featured-card {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.featured-card img {
    width: 250px;
    border: 1px solid var(--border);
    filter: saturate(0.8);
    transition: filter 0.4s ease, box-shadow 0.4s ease;
}

.featured-card img:hover {
    filter: saturate(1.2);
    box-shadow: 0 0 30px var(--neon-glow);
}

.featured-info {
    max-width: 380px;
    text-align: left;
}


/* ============================================================
   DIVIDER
============================================================ */

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        rgba(0, 255, 136, 0.6),
        transparent
    );
    margin: 0 auto;
    width: 55%;
    position: relative;
    z-index: 1;
}


/* ============================================================
   FOOTER
============================================================ */

.footer {
    text-align: center;
    padding: 32px 24px 48px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer p {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}


/* ============================================================
   SUCCESS / REDEEM
============================================================ */

.success-section,
.redeem-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-card,
.redeem-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--neon);
    padding: 48px;
    text-align: center;
    width: 400px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
}


/* ============================================================
   SELECTION COLOR
============================================================ */

::selection {
    background: var(--neon);
    color: #000;
}


/* ============================================================
   SCROLLBAR
============================================================ */

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: var(--neon-dim);
    border-radius: 2px;
}
