/* =====================================================
   THE HEADLESS - Band Website Styles
   70s Psychedelic Rock Poster meets Cosmic Space Rock
   *** WILD & UNCONVENTIONAL EDITION ***
   ===================================================== */

/* -----------------------------------------------------
   CSS VARIABLES
   ----------------------------------------------------- */
:root {
    /* Color Palette */
    --bg-dark: #0a0a1a;
    --bg-accent: #1a0a2e;
    --bg-gradient: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a0a1a 100%);

    --primary-gold: #d4a574;
    --primary-gold-light: #e8c9a0;
    --primary-gold-dark: #b8875a;

    --accent-pink: #c77dff;
    --accent-pink-light: #e0a8ff;
    --accent-cyan: #7df9ff;
    --accent-red: #ff6b6b;
    --accent-green: #6bff8a;

    --text-primary: #f5f0e6;
    --text-muted: #a09080;
    --text-dim: #6a6060;

    /* Typography */
    --font-display: 'Anton', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --section-padding: clamp(5rem, 12vw, 10rem);
    --container-max: 1200px;
    --container-padding: clamp(1rem, 5vw, 3rem);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-slow: 0.8s ease;
    --transition-glitch: 0.1s steps(2, end);

    /* Borders & Effects */
    --border-glow: 0 0 30px rgba(212, 165, 116, 0.5);
    --text-glow: 0 0 60px rgba(212, 165, 116, 0.6);
}

/* -----------------------------------------------------
   CSS RESET & BASE
   ----------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Global floating particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(212, 165, 116, 0.4) 1px, transparent 0),
        radial-gradient(1px 1px at 40% 70%, rgba(199, 125, 255, 0.3) 1px, transparent 0),
        radial-gradient(1px 1px at 60% 20%, rgba(212, 165, 116, 0.3) 1px, transparent 0),
        radial-gradient(2px 2px at 80% 50%, rgba(199, 125, 255, 0.2) 1px, transparent 0),
        radial-gradient(1px 1px at 10% 80%, rgba(212, 165, 116, 0.4) 1px, transparent 0),
        radial-gradient(1px 1px at 90% 10%, rgba(199, 125, 255, 0.3) 1px, transparent 0);
    background-size: 200px 200px;
    animation: floatParticles 60s linear infinite;
}

@keyframes floatParticles {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-200px) rotate(10deg); }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* -----------------------------------------------------
   GLITCH & PSYCHEDELIC KEYFRAMES
   ----------------------------------------------------- */
@keyframes glitchText {
    0%, 100% {
        text-shadow:
            2px 0 var(--accent-cyan),
            -2px 0 var(--accent-pink);
        transform: translate(0);
    }
    20% {
        text-shadow:
            -3px 0 var(--accent-pink),
            3px 0 var(--accent-cyan);
        transform: translate(-2px, 1px);
    }
    40% {
        text-shadow:
            3px 0 var(--accent-cyan),
            -3px 0 var(--accent-pink);
        transform: translate(2px, -1px);
    }
    60% {
        text-shadow:
            -2px 0 var(--accent-pink),
            2px 0 var(--accent-cyan);
        transform: translate(1px, 2px);
    }
    80% {
        text-shadow:
            2px 0 var(--accent-cyan),
            -2px 0 var(--accent-pink);
        transform: translate(-1px, -2px);
    }
}

@keyframes glitchSkew {
    0%, 100% { transform: skew(0deg); }
    20% { transform: skew(-2deg); }
    40% { transform: skew(3deg); }
    60% { transform: skew(-1deg); }
    80% { transform: skew(2deg); }
}

@keyframes colorShift {
    0%, 100% { filter: hue-rotate(0deg); }
    25% { filter: hue-rotate(15deg); }
    50% { filter: hue-rotate(-10deg); }
    75% { filter: hue-rotate(5deg); }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(2deg); }
    50% { transform: translate(-5px, 10px) rotate(-1deg); }
    75% { transform: translate(15px, 5px) rotate(1deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes warp {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

/* -----------------------------------------------------
   TYPOGRAPHY
   ----------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

h1 { font-size: clamp(3rem, 15vw, 10rem); }
h2 { font-size: clamp(3rem, 10vw, 7rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
    margin-bottom: 1em;
}

.lead {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 500;
    color: var(--text-primary);
}

/* -----------------------------------------------------
   BUTTONS - WILD EDITION
   ----------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    transform: skewX(-3deg);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
    box-shadow:
        var(--border-glow),
        inset 0 0 20px rgba(212, 165, 116, 0.2);
    transform: skewX(-3deg) scale(1.05);
    animation: glitchSkew 0.3s ease;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    transform: skewX(5deg) scale(1.05);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

.btn.placeholder {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn.placeholder:hover {
    transform: skewX(-3deg);
    animation: none;
}

/* -----------------------------------------------------
   NAVIGATION
   ----------------------------------------------------- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-medium);
}

.main-nav.scrolled {
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
    transition: var(--transition-fast);
    transform: rotate(-2deg);
}

.nav-logo:hover {
    text-shadow: var(--text-glow);
    animation: glitchText 0.5s ease;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li {
    transform: rotate(var(--rotation, 0deg));
    transition: var(--transition-medium);
}

.nav-links li:nth-child(1) { --rotation: -2deg; }
.nav-links li:nth-child(2) { --rotation: 1deg; }
.nav-links li:nth-child(3) { --rotation: -1deg; }
.nav-links li:nth-child(4) { --rotation: 2deg; }
.nav-links li:nth-child(5) { --rotation: -1.5deg; }

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

/* ===== MUSIC - Glitch/Shake Effect ===== */
.nav-links li:nth-child(1) a {
    transition: color 0.1s ease;
}

.nav-links li:nth-child(1) a::before,
.nav-links li:nth-child(1) a::after {
    content: 'MUSIC';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.nav-links li:nth-child(1) a::before {
    color: var(--accent-cyan);
    z-index: -1;
}

.nav-links li:nth-child(1) a::after {
    color: var(--accent-pink);
    z-index: -1;
}

.nav-links li:nth-child(1) a:hover {
    color: var(--primary-gold);
    animation: navGlitch 0.3s ease infinite;
}

.nav-links li:nth-child(1) a:hover::before {
    opacity: 0.8;
    animation: navGlitchCyan 0.2s steps(2) infinite;
}

.nav-links li:nth-child(1) a:hover::after {
    opacity: 0.8;
    animation: navGlitchPink 0.2s steps(2) infinite;
}

@keyframes navGlitch {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(-1px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, -1px); }
}

@keyframes navGlitchCyan {
    0%, 100% { transform: translate(-3px, 0); }
    50% { transform: translate(-2px, 1px); }
}

@keyframes navGlitchPink {
    0%, 100% { transform: translate(3px, 0); }
    50% { transform: translate(2px, -1px); }
}

/* ===== SHOWS - Bounce/Pop Effect ===== */
.nav-links li:nth-child(2) a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: var(--transition-medium);
}

.nav-links li:nth-child(2) a:hover {
    color: var(--primary-gold);
    animation: navBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(1.2);
}

.nav-links li:nth-child(2) a:hover::after {
    transform: translateX(-50%) scale(1);
    animation: navDotBounce 0.6s ease infinite;
}

@keyframes navBounce {
    0% { transform: scale(1); }
    40% { transform: scale(1.3); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

@keyframes navDotBounce {
    0%, 100% { transform: translateX(-50%) scale(1) translateY(0); }
    50% { transform: translateX(-50%) scale(1.5) translateY(3px); }
}

/* ===== ABOUT - Skew/Warp Effect ===== */
.nav-links li:nth-child(3) a {
    transition: var(--transition-medium);
}

.nav-links li:nth-child(3) a::after {
    content: '';
    position: absolute;
    inset: -5px -10px;
    border: 1px solid transparent;
    transition: var(--transition-medium);
    transform: skewX(0deg);
}

.nav-links li:nth-child(3) a:hover {
    color: var(--accent-pink);
    transform: skewX(-12deg);
    text-shadow: 2px 2px 0 rgba(199, 125, 255, 0.3);
}

.nav-links li:nth-child(3) a:hover::after {
    border-color: var(--accent-pink);
    transform: skewX(12deg);
}

/* ===== CONTACT - Rainbow/Color Cycle Effect ===== */
.nav-links li:nth-child(4) a {
    transition: var(--transition-fast);
    background: linear-gradient(90deg,
        var(--accent-cyan),
        var(--primary-gold),
        var(--accent-pink),
        var(--accent-cyan)
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--text-primary);
}

.nav-links li:nth-child(4) a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        var(--accent-cyan),
        var(--primary-gold),
        var(--accent-pink),
        var(--accent-cyan)
    );
    background-size: 300% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.nav-links li:nth-child(4) a:hover {
    -webkit-text-fill-color: transparent;
    animation: navRainbow 1s linear infinite;
}

.nav-links li:nth-child(4) a:hover::after {
    transform: scaleX(1);
    animation: navRainbow 1s linear infinite;
}

@keyframes navRainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* ===== MERCH - Flip/Rotate Effect ===== */
.nav-links li:nth-child(5) a {
    transition: var(--transition-medium);
    transform-style: preserve-3d;
    perspective: 500px;
}

.nav-links li:nth-child(5) a::before {
    content: 'MERCH';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--bg-dark);
    background: var(--primary-gold);
    padding: 0.5rem 0.75rem;
    margin: -0.5rem -0.75rem;
    transform: rotateX(90deg);
    transform-origin: bottom;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links li:nth-child(5) a:hover {
    color: transparent;
}

.nav-links li:nth-child(5) a:hover::before {
    transform: rotateX(0deg);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-medium);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* -----------------------------------------------------
   HERO SECTION - MEGA WILD
   ----------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Cosmic gradient background with more intensity */
.cosmic-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 60% at 50% -10%, rgba(199, 125, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 80% 100%, rgba(212, 165, 116, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 10% 50%, rgba(199, 125, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 120% 120% at 50% 50%, rgba(26, 10, 46, 0.9) 0%, transparent 70%),
        var(--bg-gradient);
    animation: cosmicPulse 10s ease-in-out infinite, colorShift 20s ease infinite;
}

@keyframes cosmicPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

/* Film grain noise overlay - more intense */
.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    pointer-events: none;
    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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    animation: noiseMove 0.5s steps(10) infinite;
}

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

/* Scanline effect */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(199, 125, 255, 0.1),
        transparent);
    animation: scanline 8s linear infinite;
    pointer-events: none;
}

/* Floating geometric shapes */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 8%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(212, 165, 116, 0.2);
    animation: drift 15s ease-in-out infinite, warp 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(199, 125, 255, 0.15);
    transform: rotate(45deg);
    animation: drift 20s ease-in-out infinite reverse, pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

/* Chromatic aberration layers for title */
.hero-title::before,
.hero-title::after {
    content: 'THE HEADLESS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 18vw, 12rem);
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
}

.hero-title:hover::before {
    color: var(--accent-cyan);
    animation: glitchText 0.3s ease forwards;
    opacity: 0.7;
    transform: translate(calc(-50% - 4px), calc(-50% + 2px));
}

.hero-title:hover::after {
    color: var(--accent-pink);
    animation: glitchText 0.3s ease 0.05s forwards;
    opacity: 0.7;
    transform: translate(calc(-50% + 4px), calc(-50% - 2px));
}

.title-the {
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: var(--text-muted);
    letter-spacing: 1em;
    transform: translateX(0.5em) rotate(-3deg);
    animation: floatText 6s ease-in-out infinite;
    position: relative;
}

.title-the::before {
    content: '';
    position: absolute;
    left: -20%;
    top: 50%;
    width: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold));
}

.title-the::after {
    content: '';
    position: absolute;
    right: -5%;
    top: 50%;
    width: 15%;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.title-headless {
    font-size: clamp(3.5rem, 18vw, 12rem);
    color: var(--primary-gold);
    text-shadow:
        0 0 80px rgba(212, 165, 116, 0.5),
        0 0 160px rgba(212, 165, 116, 0.3),
        4px 4px 0 rgba(199, 125, 255, 0.3),
        -4px -4px 0 rgba(125, 249, 255, 0.2);
    animation: glowPulse 4s ease-in-out infinite;
    transform: rotate(-3deg) skewX(-2deg);
    transition: var(--transition-medium);
    cursor: default;
}

.title-headless:hover {
    animation: glitchText 0.5s ease infinite;
    transform: rotate(-3deg) skewX(-2deg) scale(1.02);
}

@keyframes floatText {
    0%, 100% { transform: translateX(0.5em) rotate(-3deg) translateY(0); }
    50% { transform: translateX(0.5em) rotate(-3deg) translateY(-10px); }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow:
            0 0 80px rgba(212, 165, 116, 0.5),
            0 0 160px rgba(212, 165, 116, 0.3),
            4px 4px 0 rgba(199, 125, 255, 0.3),
            -4px -4px 0 rgba(125, 249, 255, 0.2);
    }
    50% {
        text-shadow:
            0 0 120px rgba(212, 165, 116, 0.7),
            0 0 200px rgba(212, 165, 116, 0.4),
            6px 6px 0 rgba(199, 125, 255, 0.4),
            -6px -6px 0 rgba(125, 249, 255, 0.3);
    }
}

.hero-tagline {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3rem;
    transform: translateX(40px) rotate(2deg);
    position: relative;
}

.hero-tagline::before {
    content: '///';
    position: absolute;
    left: -3em;
    color: var(--accent-pink);
    opacity: 0.5;
}

.hero-tagline::after {
    content: '///';
    position: absolute;
    right: -3em;
    color: var(--accent-cyan);
    opacity: 0.5;
}

.hero-cta {
    animation: fadeInUp 1s ease 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-arrow {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-gold), var(--accent-pink), transparent);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--primary-gold);
    border-bottom: 1px solid var(--primary-gold);
    transform: translateX(-50%) rotate(45deg);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(15px); }
}

/* -----------------------------------------------------
   SECTION BASE STYLES
   ----------------------------------------------------- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

/* Diagonal section dividers */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent-pink) 20%,
        var(--primary-gold) 50%,
        var(--accent-cyan) 80%,
        transparent 100%
    );
    opacity: 0.6;
    transform: skewY(-1deg);
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 5rem;
    position: relative;
}

.section-header.offset {
    margin-left: -4rem;
    transform: rotate(-2deg);
}

.section-title {
    color: var(--primary-gold);
    display: inline-block;
    position: relative;
    text-shadow:
        3px 3px 0 rgba(199, 125, 255, 0.3),
        -2px -2px 0 rgba(125, 249, 255, 0.2);
    transition: var(--transition-medium);
}

.section-title:hover {
    animation: glitchText 0.3s ease;
}

.section-title.skewed {
    transform: skewX(-8deg) rotate(-2deg);
}

.section-title.skewed-reverse {
    transform: skewX(8deg) rotate(2deg);
}

.section-title.rotated {
    transform: rotate(-5deg);
    transform-origin: left center;
}

/* Big background text */
.section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scale(2);
    font-size: inherit;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 165, 116, 0.1);
    z-index: -1;
    pointer-events: none;
}

.subsection-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
    transform: rotate(-1deg);
}

.subsection-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--primary-gold);
    transform: translateY(-50%) rotate(45deg);
    animation: pulse 2s ease-in-out infinite;
}

/* Section decorations - more visible */
.section-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* -----------------------------------------------------
   MUSIC SECTION
   ----------------------------------------------------- */
.music-section {
    background:
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-accent) 100%);
    position: relative;
}

/* Large decorative text in background */
.music-section::after {
    content: 'LISTEN';
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 15rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 165, 116, 0.05);
    pointer-events: none;
    z-index: 1;
}

.music-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.coming-soon-badge {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(199, 125, 255, 0.15));
    border: 1px solid rgba(212, 165, 116, 0.4);
    margin-bottom: 4rem;
    transform: rotate(-4deg) skewX(-5deg);
    position: relative;
    animation: drift 10s ease-in-out infinite;
}

.coming-soon-badge::before,
.coming-soon-badge::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.coming-soon-badge::before {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
}

.coming-soon-badge::after {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
}

.coming-soon-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-gold);
    display: inline-block;
    transform: skewX(5deg);
}

.streaming-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 165, 116, 0.2);
    min-width: 150px;
    transition: var(--transition-medium);
    position: relative;
    transform: rotate(var(--rotation, 0deg));
}

.platform-btn:nth-child(1) { --rotation: -2deg; }
.platform-btn:nth-child(2) { --rotation: 1deg; }
.platform-btn:nth-child(3) { --rotation: -1deg; }
.platform-btn:nth-child(4) { --rotation: 2deg; }
.platform-btn:nth-child(5) { --rotation: -1.5deg; }

.platform-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-medium);
}

.platform-btn:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: var(--primary-gold);
    transform: rotate(0deg) translateY(-10px) scale(1.05);
    box-shadow:
        0 20px 60px rgba(212, 165, 116, 0.3),
        0 0 0 1px rgba(199, 125, 255, 0.3);
}

.platform-btn:hover::before {
    opacity: 1;
}

.platform-btn.placeholder {
    opacity: 0.4;
}

.platform-btn.placeholder:hover {
    transform: rotate(var(--rotation, 0deg)) translateY(-5px);
    opacity: 0.6;
}

.platform-icon {
    width: 40px;
    height: 40px;
    color: var(--text-primary);
    transition: var(--transition-medium);
}

.platform-btn:hover .platform-icon {
    color: var(--primary-gold);
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
}

.platform-btn span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.platform-btn:hover span {
    color: var(--text-primary);
}

.music-decoration {
    right: -150px;
    top: 30%;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    animation: drift 25s ease-in-out infinite, pulse 6s ease-in-out infinite;
}

/* -----------------------------------------------------
   SHOWS SECTION
   ----------------------------------------------------- */
.shows-section {
    background: var(--bg-accent);
    position: relative;
}

/* Giant background number */
.shows-section::after {
    content: '2025';
    position: absolute;
    bottom: 10%;
    left: -5%;
    font-family: var(--font-display);
    font-size: clamp(10rem, 30vw, 25rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(199, 125, 255, 0.05);
    pointer-events: none;
    z-index: 1;
}

.shows-content {
    display: grid;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.shows-subsection {
    position: relative;
}

/* Offset the subsections */
.shows-subsection.upcoming {
    padding-left: 3rem;
}

.shows-subsection.past {
    padding-right: 3rem;
    margin-left: auto;
    max-width: 80%;
}

.shows-list {
    position: relative;
}

.shows-list.empty-state {
    text-align: center;
    padding: 4rem 3rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px dashed rgba(212, 165, 116, 0.3);
    transform: rotate(-1deg);
    position: relative;
}

.shows-list.empty-state::before {
    content: '?';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 8rem;
    color: rgba(212, 165, 116, 0.05);
    pointer-events: none;
}

.empty-message {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.empty-subtext {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Show list items (for when shows are added) */
.show-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    transition: var(--transition-medium);
    transform: translateX(0);
}

.show-item:hover {
    transform: translateX(10px);
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.05), transparent);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-left: 4px solid var(--primary-gold);
    transform: rotate(-2deg);
}

.show-date .month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
}

.show-date .day {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-primary);
    line-height: 1;
}

.show-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.show-details .venue {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

.show-details .city {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.shows-decoration {
    left: -200px;
    bottom: 15%;
    width: 300px;
    height: 500px;
    border: 1px solid rgba(199, 125, 255, 0.1);
    transform: rotate(-20deg);
    animation: drift 30s ease-in-out infinite reverse;
}

/* -----------------------------------------------------
   ABOUT SECTION
   ----------------------------------------------------- */
.about-section {
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-dark) 100%);
    position: relative;
}

/* Layered background text */
.about-section::after {
    content: 'WHO';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: clamp(15rem, 40vw, 30rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 165, 116, 0.03);
    pointer-events: none;
    z-index: 1;
}

.about-content {
    display: grid;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.about-image-container {
    position: relative;
    max-width: 650px;
    margin-left: -5rem;
    transform: rotate(-3deg);
}

.about-image {
    aspect-ratio: 4/3;
    background:
        linear-gradient(135deg, rgba(26, 10, 46, 0.8), rgba(10, 10, 26, 0.9)),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 165, 116, 0.03) 2px,
            rgba(212, 165, 116, 0.03) 4px
        );
    border: 2px solid rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        transparent 40%,
        rgba(212, 165, 116, 0.1) 50%,
        transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.about-image span {
    color: var(--text-dim);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.image-frame {
    position: absolute;
    inset: -20px 20px 20px -20px;
    border: 2px solid rgba(199, 125, 255, 0.2);
    z-index: -1;
    transform: rotate(2deg);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -30px;
    bottom: -30px;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transform: rotate(-1deg);
}

.about-bio {
    position: relative;
    padding-left: 3rem;
    transform: rotate(1deg);
}

.bio-text {
    max-width: 750px;
}

.bio-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.bio-text .lead {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.4rem;
    position: relative;
}

.bio-text .lead::first-letter {
    font-family: var(--font-display);
    font-size: 4rem;
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    color: var(--primary-gold);
}

.bio-text em {
    color: var(--accent-pink);
    font-style: italic;
}

/* Members Grid */
.members-section {
    margin-top: 4rem;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.member-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: var(--transition-medium);
    position: relative;
    transform: rotate(var(--rotation, 0deg));
}

.member-card:nth-child(1) { --rotation: 2deg; }
.member-card:nth-child(2) { --rotation: -1deg; }
.member-card:nth-child(3) { --rotation: 1.5deg; }
.member-card:nth-child(4) { --rotation: -2deg; }

.member-card::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid transparent;
    transition: var(--transition-medium);
}

.member-card:hover {
    border-color: var(--primary-gold);
    transform: rotate(0deg) translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.15);
}

.member-card:hover::before {
    border-color: rgba(199, 125, 255, 0.3);
    transform: rotate(-2deg);
}

.member-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    background:
        linear-gradient(135deg, rgba(26, 10, 46, 0.6), rgba(10, 10, 26, 0.8)),
        repeating-conic-gradient(
            from 0deg,
            rgba(212, 165, 116, 0.05) 0deg 10deg,
            transparent 10deg 20deg
        );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(212, 165, 116, 0.2);
    transition: var(--transition-medium);
}

.member-card:hover .member-photo {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.member-photo span {
    color: var(--text-dim);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
}

.member-role {
    font-size: 0.8rem;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.about-decoration {
    right: 5%;
    top: 15%;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(212, 165, 116, 0.1);
    transform: rotate(45deg);
    animation: drift 20s ease-in-out infinite, warp 15s ease-in-out infinite;
}

/* -----------------------------------------------------
   CONTACT / EPK SECTION
   ----------------------------------------------------- */
.contact-section {
    background: var(--bg-dark);
    position: relative;
}

.contact-section::after {
    content: '@';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(15rem, 35vw, 25rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(199, 125, 255, 0.04);
    pointer-events: none;
    z-index: 1;
}

.contact-content {
    display: grid;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: var(--transition-medium);
    position: relative;
    transform: rotate(var(--rotation, 0deg));
}

.contact-card:nth-child(1) { --rotation: -1deg; }
.contact-card:nth-child(2) { --rotation: 1deg; }
.contact-card:nth-child(3) { --rotation: -0.5deg; }

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.contact-card:hover {
    border-color: var(--primary-gold);
    transform: rotate(0deg) translateX(10px) scale(1.02);
    box-shadow: -10px 10px 30px rgba(212, 165, 116, 0.1);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.contact-email {
    font-size: 1.1rem;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(212, 165, 116, 0.3);
    padding-bottom: 3px;
    transition: var(--transition-fast);
}

.contact-email:hover {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* EPK Section */
.epk-section {
    padding: 3rem;
    background:
        linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(199, 125, 255, 0.08));
    border: 2px solid rgba(212, 165, 116, 0.3);
    transform: rotate(-2deg) skewX(-1deg);
    position: relative;
}

.epk-section::before {
    content: 'EPK';
    position: absolute;
    top: -30px;
    left: 30px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-gold);
    background: var(--bg-dark);
    padding: 0.25rem 1rem;
    transform: rotate(2deg);
}

.epk-card {
    transform: rotate(2deg) skewX(1deg);
}

.epk-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Industry Contacts */
.industry-contacts {
    transform: rotate(1deg);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.industry-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    border-left: 3px solid rgba(212, 165, 116, 0.3);
    transition: var(--transition-medium);
    transform: translateX(0);
}

.industry-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(10px);
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.05), transparent);
}

.industry-role {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-pink);
}

.industry-value {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.industry-value.placeholder-text {
    color: var(--text-dim);
    font-style: italic;
}

.contact-decoration {
    left: 10%;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(199, 125, 255, 0.1);
    animation: drift 25s ease-in-out infinite reverse, warp 20s ease-in-out infinite;
}

/* -----------------------------------------------------
   MERCH SECTION
   ----------------------------------------------------- */
.merch-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-accent) 100%);
    text-align: center;
    position: relative;
}

.merch-section::after {
    content: '$$$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(10rem, 30vw, 20rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 165, 116, 0.03);
    pointer-events: none;
    z-index: 1;
}

.merch-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.merch-coming-soon {
    padding: 5rem 3rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
    border: 2px dashed rgba(212, 165, 116, 0.4);
    transform: rotate(-1deg);
    position: relative;
}

.merch-coming-soon::before,
.merch-coming-soon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(199, 125, 255, 0.2);
    animation: warp 8s ease-in-out infinite;
}

.merch-coming-soon::before {
    top: -25px;
    left: 20%;
    transform: rotate(45deg);
}

.merch-coming-soon::after {
    bottom: -25px;
    right: 20%;
    transform: rotate(-30deg);
    animation-delay: -4s;
}

.coming-soon-graphic {
    margin-bottom: 2.5rem;
}

.merch-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    color: var(--primary-gold);
    opacity: 0.7;
    animation: spinSlow 15s linear infinite, pulse 3s ease-in-out infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.merch-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.3));
}

.merch-coming-soon h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    transform: rotate(1deg);
}

.merch-coming-soon p {
    color: var(--text-muted);
    max-width: 450px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.merch-decoration {
    right: -150px;
    top: 50%;
    width: 350px;
    height: 350px;
    border: 2px solid rgba(212, 165, 116, 0.1);
    transform: translateY(-50%) rotate(30deg);
    animation: drift 30s ease-in-out infinite, pulse 5s ease-in-out infinite;
}

/* -----------------------------------------------------
   FOOTER
   ----------------------------------------------------- */
.footer {
    background: var(--bg-accent);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--accent-cyan),
        var(--primary-gold),
        var(--accent-pink),
        var(--primary-gold),
        var(--accent-cyan)
    );
    background-size: 200% 100%;
    animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
    margin-bottom: 4rem;
}

.footer-brand {
    text-align: left;
    transform: rotate(-1deg);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.75rem;
    text-shadow:
        3px 3px 0 rgba(199, 125, 255, 0.2),
        -2px -2px 0 rgba(125, 249, 255, 0.1);
    transition: var(--transition-medium);
}

.footer-logo:hover {
    animation: glitchText 0.5s ease;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 165, 116, 0.25);
    color: var(--text-primary);
    transition: var(--transition-medium);
    transform: rotate(var(--rotation, 0deg));
}

.social-link:nth-child(1) { --rotation: -3deg; }
.social-link:nth-child(2) { --rotation: 2deg; }
.social-link:nth-child(3) { --rotation: -1deg; }
.social-link:nth-child(4) { --rotation: 3deg; }
.social-link:nth-child(5) { --rotation: -2deg; }

.social-link:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-dark);
    transform: rotate(0deg) translateY(-8px) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.social-link.placeholder {
    opacity: 0.4;
}

.social-link.placeholder:hover {
    opacity: 0.7;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* Newsletter */
.footer-newsletter {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
    margin-bottom: 2rem;
    transform: rotate(1deg);
}

.footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 165, 116, 0.25);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-medium);
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.2);
}

.newsletter-note {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-style: italic;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-decoration {
    position: absolute;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px solid rgba(212, 165, 116, 0.05);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

/* Extra floating shape in footer */
.footer::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 5%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(199, 125, 255, 0.1);
    transform: rotate(45deg);
    animation: drift 20s ease-in-out infinite;
    pointer-events: none;
}

/* -----------------------------------------------------
   PLACEHOLDER STATES
   ----------------------------------------------------- */
.placeholder-image {
    background:
        linear-gradient(135deg, rgba(26, 10, 46, 0.5), rgba(10, 10, 26, 0.7)),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(212, 165, 116, 0.03) 10px,
            rgba(212, 165, 116, 0.03) 20px
        );
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image span {
    color: var(--text-dim);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1rem;
    border: 1px dashed rgba(212, 165, 116, 0.3);
}

/* -----------------------------------------------------
   RESPONSIVE DESIGN
   ----------------------------------------------------- */
@media (max-width: 1024px) {
    .about-image-container {
        margin-left: 0;
        transform: rotate(-2deg);
    }

    .section-header.offset {
        margin-left: 0;
        transform: rotate(-1deg);
    }

    .shows-subsection.past {
        max-width: 100%;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: var(--transition-medium);
        border-left: 2px solid rgba(212, 165, 116, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        transform: none;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    /* Keep some wild effects on mobile but toned down */
    .hero-tagline {
        transform: rotate(1deg);
    }

    .title-headless {
        transform: rotate(-2deg);
    }

    .section-title.skewed,
    .section-title.skewed-reverse {
        transform: skewX(-3deg);
    }

    .section-title.rotated {
        transform: rotate(-2deg);
    }

    .coming-soon-badge {
        transform: rotate(-2deg);
    }

    .about-image-container {
        transform: rotate(-1deg);
    }

    /* Reduce floating elements on mobile */
    .hero::before,
    .hero::after {
        display: none;
    }

    body::before {
        opacity: 0.5;
    }

    /* Shows */
    .shows-subsection.upcoming {
        padding-left: 0;
    }

    .show-item {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .show-date {
        width: 100%;
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
    }

    .show-details {
        width: 100%;
    }

    /* Footer */
    .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        transform: none;
    }

    .footer-newsletter {
        transform: none;
    }

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

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

    .social-link {
        transform: none;
    }

    .social-link:hover {
        transform: translateY(-5px) scale(1.05);
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 4rem;
    }

    .streaming-platforms {
        gap: 1.25rem;
    }

    .platform-btn {
        min-width: 130px;
        padding: 1.5rem;
        transform: none;
    }

    .platform-btn:hover {
        transform: translateY(-5px);
    }

    .members-grid {
        grid-template-columns: 1fr;
    }

    .member-card {
        transform: none;
    }

    .member-card:hover {
        transform: translateY(-5px);
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-card {
        transform: none;
    }

    .contact-card:hover {
        transform: translateX(5px);
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .epk-section {
        transform: rotate(-1deg);
    }

    .btn {
        transform: none;
    }

    .btn:hover {
        transform: scale(1.02);
    }
}

/* -----------------------------------------------------
   ANIMATION UTILITIES
   ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    body::before {
        display: none;
    }
}

/* -----------------------------------------------------
   EXTRA WILD HOVER STATES
   ----------------------------------------------------- */

/* Glitch effect on section titles */
.section-title {
    position: relative;
}

.section-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-cyan);
    opacity: 0;
    transform: translate(0);
    transition: var(--transition-fast);
}

.section-title:hover::after {
    opacity: 0.5;
    transform: translate(-3px, 2px);
}

/* Psychedelic link hover */
a:not(.btn):not(.nav-logo):not(.social-link):not(.platform-btn):hover {
    text-shadow:
        1px 1px 0 var(--accent-pink),
        -1px -1px 0 var(--accent-cyan);
}

/* Wild cursor trail effect hint */
::selection {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

::-moz-selection {
    background: var(--primary-gold);
    color: var(--bg-dark);
}
