:root {
    --black: #050505;
    --surface: #0d0d0d;
    --elevated: #151515;
    --border: #2a2a2a;
    --text: #f5f5f5;
    --muted: #6f6f6f;
    --purple: hsl(275, 100%, 55%);
    --purple-hover: hsl(275, 100%, 68%);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Navigation */
body > nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 64px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid #111;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body > nav .nav-logo {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
}

body > nav .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 1.7vw, 1.75rem);
}

body > nav .nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #777;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

body > nav .nav-links a:hover,
body > nav .nav-links a.active {
    color: var(--purple);
}

body > nav .nav-socials {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

body > nav .nav-socials a {
    display: inline-flex;
    align-items: center;
    color: #f5f5f5;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

body > nav .nav-socials a:hover {
    color: var(--purple);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    body > nav {
        min-height: 60px;
        padding: 0 1rem;
    }

    body > nav .nav-links,
    body > nav .nav-socials {
        display: none !important;
    }

    body > nav .mobile-menu-toggle {
        display: flex;
    }
}

/* Full-screen mobile nav overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 2000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-overlay a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.25rem 0;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    transition: color 0.2s, border-color 0.2s;
}

.mobile-menu-overlay a:first-of-type {
    border-top: 1px solid #1a1a1a;
}

.mobile-menu-overlay a:hover {
    color: #8b5cf6;
    border-color: #8b5cf6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

/* Glitch/Scanline Animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px);
    pointer-events: none;
    animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.glitch-title {
    position: relative;
    animation: glitch 4s infinite;
}

@keyframes glitch {
    0%, 92%, 100% { text-shadow: none; }
    93% { text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff; }
    95% { text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff; }
    97% { text-shadow: 0 0 30px rgba(139, 92, 246, 0.8); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, var(--black) 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Space Mono', monospace;
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 16px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--text);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.btn:hover {
    background: var(--text);
    color: var(--black);
}

.btn-primary {
    background: var(--purple);
    border-color: var(--purple);
}

.btn-primary:hover {
    background: var(--purple-hover);
    border-color: var(--purple-hover);
    color: var(--text);
}

/* Section Labels */
.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

/* Latest Tracks Section */
.section {
    padding: 6rem 3rem;
    background: var(--black);
    scroll-margin-top: 96px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Space Mono', monospace;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Track Cards */
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.track-card {
    background: #0a0a0a;
    border: 1px solid #111;
    padding: 1.5rem;
    transition: border-color 0.2s;
}

.track-card:hover {
    border-color: var(--purple);
}

.track-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.track-art {
    width: 60px;
    height: 60px;
    object-fit: cover;
    background: #111;
}

.track-info h3 {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.track-info p {
    font-size: 12px;
    color: var(--gray);
}

.track-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-duration {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--gray);
}

.track-play {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.track-play:hover {
    background: var(--purple);
    border-color: var(--purple);
}

.track-support {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    background: transparent;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.track-support:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--text);
}

/* Support Modal */
#supportModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

#supportModal.active { display: flex; }

.support-modal-content {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
}

.support-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.support-amount {
    padding: 1rem;
    border: 1px solid #222;
    background: transparent;
    color: #fff;
    font-family: 'Space Mono',monospace;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.support-amount:hover, .support-amount.selected {
    border-color: var(--purple);
    background: var(--purple);
}

.support-custom {
    width: 100%;
    padding: 1rem;
    background: #050505;
    border: 1px solid #222;
    color: #fff;
    font-family: 'Space Mono',monospace;
    font-size: 14px;
    margin-bottom: 1rem;
    text-align: center;
}

.support-custom:focus {
    outline: none;
    border-color: var(--purple);
}

.support-track-info {
    font-family: 'Space Mono',monospace;
    font-size: 12px;
    color: #666;
    margin-bottom: 0.5rem;
}

.support-track-title {
    font-family: 'Space Mono',monospace;
    font-size: 16px;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #0a0a0a;
    border: 1px solid #111;
    padding: 2rem;
    text-align: center;
}

.service-card h3 {
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: 'Space Mono', monospace;
    font-size: 24px;
    color: var(--purple);
    margin-bottom: 1rem;
}

/* Newsletter */
.newsletter {
    background: #0a0a0a;
    border: 1px solid #111;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h3 {
    font-family: 'Space Mono', monospace;
    font-size: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.newsletter p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--black);
    border: 1px solid #222;
    border-right: none;
    color: var(--text);
    font-family: 'Space Mono', monospace;
    font-size: 12px;
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--purple);
}

.newsletter-status {
    min-height: 1.4rem;
    margin-top: 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #777;
}

.newsletter-status.error {
    color: #ff4d4d;
}

.newsletter-form button {
    padding: 14px 24px;
    background: var(--purple);
    border: 1px solid var(--purple);
    color: var(--text);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: var(--purple-hover);
}

/* Footer */
footer {
    background: #050505;
    border-top: 1px solid #111;
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    font-size: 14px;
    color: var(--text);
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--purple);
}

.footer-section a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #111;
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.1em;
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links,
    .nav-socials {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .hero {
        padding: 4rem 1.5rem;
        min-height: 50vh;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: 1px solid #222;
        margin-bottom: 0.5rem;
    }

    .newsletter-form button {
        width: 100%;
    }

    /* Inline player: hide volume + timestamps on mobile */
    #audioPlayer {
        padding: 0 0.75rem !important;
        gap: 0.5rem !important;
    }

    #audioPlayer > div:last-child {
        display: none !important;
    }

#currentTime,
#trackDuration {
    display: none !important;
}
}

/* Audio Player */
.audio-player {
    display: none;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropbtn {
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray) !important;
    transition: color 0.2s;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.nav-dropbtn:hover {
    color: var(--text) !important;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    z-index: 1001;
    border: 1px solid #222;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
}

.nav-dropdown-content a {
    color: var(--gray) !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    transition: all 0.2s;
}

.nav-dropdown-content a:hover {
    color: var(--text) !important;
    background: rgba(255,255,255,0.05);
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

@media (min-width: 769px) {
    .audio-player {
        display: flex;
    }
}

@media (min-width: 1024px) {
    #voidAccessBanner {
        padding: 0.45rem 2.25rem !important;
        font-size: 9px !important;
    }

    .hero {
        min-height: 74vh;
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .featured-service-grid,
    .void-elite-grid,
    #about .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

.premium-hero {
    background: #050505;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}
.premium-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px);
    pointer-events: none;
}
.premium-hero-shell {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.premium-kicker {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--purple);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.premium-title {
    max-width: 880px;
    font-family: 'Space Mono', monospace;
    font-size: clamp(34px, 7vw, 68px);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--text);
}
.premium-subtitle {
    font-size: 14px;
    color: #888;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.premium-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.premium-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.2s;
    text-decoration: none;
}
.premium-btn.primary {
    background: var(--purple);
    border: 1px solid var(--purple);
    color: #fff;
}
.premium-btn.primary:hover {
    background: var(--purple-hover);
    border-color: var(--purple-hover);
}
.premium-btn.secondary {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
}
.premium-btn.secondary:hover {
    border-color: var(--purple);
    color: var(--purple);
}


@media (max-width: 640px) {
  .premium-hero {
    padding: 4.5rem 1.1rem 3rem;
  }

  .premium-kicker {
    letter-spacing: 0.14em;
    font-size: 10px;
  }

  .premium-title {
    font-size: clamp(29px, 11vw, 44px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .premium-actions {
    width: 100%;
  }

  .premium-btn {
    width: 100%;
    text-align: center;
    padding-inline: 18px;
  }
}
