/* =====================================================
   DRAG ME TO THE 80s - ULTIMATE DISCO GLAMOUR
   Synthwave | Neon | Glitter | Rainbow | WOW!
   ===================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Orbitron:wght@400;700;900&family=Poppins:wght@300;400;500;600;700&family=Bungee&display=swap');

:root {
    /* Logo-Inspired Color Palette */
    /* Turquoise/Cyan from "DRAG" text */
    --cyan-bright: #5CE1E6;
    --cyan-light: #7FEFFF;
    --cyan-deep: #00B4D8;

    /* Purple/Magenta from logo shadow */
    --magenta-glow: #9D4EDD;
    --purple-royal: #7B2CBF;
    --purple-deep-accent: #5A189A;

    /* Gold from banner */
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --gold-light: #FFE55C;

    /* Legacy Neon (for accents) */
    --neon-pink: #FF1493;
    --neon-cyan: #5CE1E6;
    --neon-yellow: #FFE55C;
    --neon-purple: #9D4EDD;

    /* Glam Colors */
    --hot-pink: #FF1493;
    --electric-pink: #FF69B4;
    --silver: #C0C0C0;

    /* Background Tones - Deep Purple Theme */
    --purple-deep: #0D0518;
    --purple-mid: #1A0A2E;
    --magenta-dark: #2D1B4E;

    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-accent: 'Russo One', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, var(--purple-deep) 0%, var(--purple-mid) 50%, var(--magenta-dark) 100%);
    background-attachment: fixed;
    color: #fff;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Main Content Wrapper - prevents horizontal overflow on mobile */
.main-content {
    position: relative;
    overflow-x: hidden;
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
}

/* Extra iOS overflow fix */
@supports (-webkit-touch-callout: none) {
    html, body, .main-content {
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
    }
}

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

/* =====================================================
   KEYFRAME ANIMATIONS - The Magic
   ===================================================== */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes disco-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes light-beam {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.7; transform: scaleY(1.1); }
}

@keyframes sparkle-float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

@keyframes border-dance {
    0%, 100% { border-color: var(--neon-pink); box-shadow: 0 0 20px var(--neon-pink); }
    25% { border-color: var(--neon-cyan); box-shadow: 0 0 20px var(--neon-cyan); }
    50% { border-color: var(--neon-yellow); box-shadow: 0 0 20px var(--neon-yellow); }
    75% { border-color: var(--neon-purple); box-shadow: 0 0 20px var(--neon-purple); }
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Realistic Glitter Sparkle Animation */
@keyframes glitter-sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    10% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    20% {
        opacity: 0.8;
        transform: scale(0.8) rotate(45deg);
    }
    30% {
        opacity: 1;
        transform: scale(1.2) rotate(90deg);
    }
    40% {
        opacity: 0.6;
        transform: scale(0.6) rotate(135deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    60% {
        opacity: 0.4;
        transform: scale(0.4) rotate(225deg);
    }
    70% {
        opacity: 0.9;
        transform: scale(0.9) rotate(270deg);
    }
    80% {
        opacity: 0.3;
        transform: scale(0.5) rotate(315deg);
    }
    90% {
        opacity: 0.7;
        transform: scale(0.7) rotate(360deg);
    }
}

@keyframes glitter-shimmer {
    0%, 100% {
        opacity: 0.2;
        filter: brightness(1);
    }
    25% {
        opacity: 1;
        filter: brightness(2);
    }
    50% {
        opacity: 0.4;
        filter: brightness(1.2);
    }
    75% {
        opacity: 0.9;
        filter: brightness(1.8);
    }
}

@keyframes glitter-flash {
    0%, 90%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    45%, 55% {
        opacity: 1;
        transform: scale(1);
    }
}

/* =====================================================
   GLOBAL SPARKLE BACKGROUND - Realistic 4-Point Stars
   ===================================================== */
.global-sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .global-sparkles {
        opacity: 0.22;
    }
}

/* Reuse the sparkle styles from hero */
.global-sparkles .sparkle {
    position: absolute;
    pointer-events: none;
}

.global-sparkles .sparkle::before,
.global-sparkles .sparkle::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, transparent, #fff, transparent);
}

.global-sparkles .sparkle::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.global-sparkles .sparkle::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.global-sparkles .sparkle-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: radial-gradient(ellipse, #fff 0%, rgba(255,255,255,0.8) 30%, transparent 70%);
}

/* Sizes */
.global-sparkles .sparkle-sm { width: 8px; height: 8px; }
.global-sparkles .sparkle-sm .sparkle-core { width: 4px; height: 4px; }
.global-sparkles .sparkle-md { width: 12px; height: 12px; }
.global-sparkles .sparkle-md .sparkle-core { width: 5px; height: 5px; }
.global-sparkles .sparkle-lg { width: 18px; height: 18px; }
.global-sparkles .sparkle-lg .sparkle-core { width: 7px; height: 7px; }

/* Colors */
.global-sparkles .sparkle-white::before,
.global-sparkles .sparkle-white::after { background: linear-gradient(180deg, transparent, #fff, transparent); }
.global-sparkles .sparkle-white .sparkle-core { background: radial-gradient(ellipse, #fff 0%, rgba(255,255,255,0.9) 40%, transparent 70%); }

.global-sparkles .sparkle-cyan::before,
.global-sparkles .sparkle-cyan::after { background: linear-gradient(180deg, transparent, var(--cyan-bright), transparent); }
.global-sparkles .sparkle-cyan .sparkle-core { background: radial-gradient(ellipse, #fff 0%, var(--cyan-light) 40%, transparent 70%); }

.global-sparkles .sparkle-gold::before,
.global-sparkles .sparkle-gold::after { background: linear-gradient(180deg, transparent, var(--gold), transparent); }
.global-sparkles .sparkle-gold .sparkle-core { background: radial-gradient(ellipse, #fff 0%, var(--gold-light) 40%, transparent 70%); }

.global-sparkles .sparkle-pink::before,
.global-sparkles .sparkle-pink::after { background: linear-gradient(180deg, transparent, var(--hot-pink), transparent); }
.global-sparkles .sparkle-pink .sparkle-core { background: radial-gradient(ellipse, #fff 0%, #ff69b4 40%, transparent 70%); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(26, 10, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 2px solid var(--cyan-bright);
    box-shadow: 0 0 30px rgba(92, 225, 230, 0.4);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(92, 225, 230, 0.5));
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(92, 225, 230, 0.8)) drop-shadow(0 0 40px rgba(157, 78, 221, 0.5));
}

.navbar.scrolled .logo-image {
    height: 45px;
}

/* Fallback text logo if needed */
.logo-text-fallback {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--cyan-bright), var(--magenta-glow), var(--gold), var(--cyan-bright));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 4s ease infinite;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.btn-tickets {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--magenta-glow), var(--purple-royal));
    color: #fff;
    text-decoration: none;
    border: 2px solid var(--magenta-glow);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
}

.btn-tickets:hover {
    background: linear-gradient(135deg, var(--cyan-bright), var(--cyan-deep));
    border-color: var(--cyan-bright);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--cyan-bright);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-bottom: -80px;
    padding-bottom: 15rem;
}

.hero-spacer {
    height: 0;
    margin-bottom: -150px;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 10, 46, 0.4) 0%, rgba(45, 27, 78, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 0, 51, 0.3) 0%, rgba(51, 0, 102, 0.5) 50%, rgba(26, 0, 51, 0.9) 100%);
    z-index: 2;
}

/* Neon Grid */
.hero-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background:
        linear-gradient(90deg, rgba(255, 0, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: bottom;
    z-index: 3;
    mask-image: linear-gradient(to top, rgba(0,0,0,1), transparent);
}

/* Light Beams */
.hero-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    overflow: hidden;
    opacity: 0.4;
}

.beam {
    position: absolute;
    top: -20%;
    width: 100px;
    height: 120%;
    background: linear-gradient(180deg, var(--neon-pink), transparent);
    transform: rotate(15deg);
    animation: light-beam 3s ease-in-out infinite;
}

.beam:nth-child(1) { left: 10%; background: linear-gradient(180deg, rgba(255, 0, 255, 0.3), transparent); animation-delay: 0s; }
.beam:nth-child(2) { left: 30%; background: linear-gradient(180deg, rgba(0, 255, 255, 0.3), transparent); animation-delay: 0.5s; transform: rotate(-10deg); }
.beam:nth-child(3) { left: 50%; background: linear-gradient(180deg, rgba(255, 215, 0, 0.3), transparent); animation-delay: 1s; }
.beam:nth-child(4) { left: 70%; background: linear-gradient(180deg, rgba(255, 0, 255, 0.3), transparent); animation-delay: 1.5s; transform: rotate(-15deg); }
.beam:nth-child(5) { left: 90%; background: linear-gradient(180deg, rgba(0, 255, 255, 0.3), transparent); animation-delay: 2s; transform: rotate(10deg); }

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    margin-top: 5rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--cyan-bright);
    text-shadow: 0 0 20px var(--cyan-bright);
    margin-bottom: 1rem;
}

/* =====================================================
   HERO GLITTER EFFECT - Realistic Sparkles
   ===================================================== */
.hero-glitter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    pointer-events: none;
}

/* 4-point star sparkle shape */
.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, transparent, #fff, transparent);
}

.sparkle::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.sparkle::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

/* Diamond/rhombus center glow */
.sparkle-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: radial-gradient(ellipse, #fff 0%, rgba(255,255,255,0.8) 30%, transparent 70%);
    border-radius: 2px;
}

/* Different sparkle sizes */
.sparkle.sparkle-sm { width: 8px; height: 8px; }
.sparkle.sparkle-sm .sparkle-core { width: 4px; height: 4px; }

.sparkle.sparkle-md { width: 14px; height: 14px; }
.sparkle.sparkle-md .sparkle-core { width: 6px; height: 6px; }

.sparkle.sparkle-lg { width: 20px; height: 20px; }
.sparkle.sparkle-lg .sparkle-core { width: 8px; height: 8px; }

.sparkle.sparkle-xl { width: 28px; height: 28px; }
.sparkle.sparkle-xl .sparkle-core { width: 10px; height: 10px; }

/* Color variations - simulating light refraction */
.sparkle.sparkle-white::before,
.sparkle.sparkle-white::after { background: linear-gradient(180deg, transparent, #fff, transparent); }
.sparkle.sparkle-white .sparkle-core { background: radial-gradient(ellipse, #fff 0%, rgba(255,255,255,0.9) 40%, transparent 70%); }

.sparkle.sparkle-cyan::before,
.sparkle.sparkle-cyan::after { background: linear-gradient(180deg, transparent, var(--cyan-bright), transparent); }
.sparkle.sparkle-cyan .sparkle-core { background: radial-gradient(ellipse, #fff 0%, var(--cyan-light) 40%, transparent 70%); }

.sparkle.sparkle-gold::before,
.sparkle.sparkle-gold::after { background: linear-gradient(180deg, transparent, var(--gold), transparent); }
.sparkle.sparkle-gold .sparkle-core { background: radial-gradient(ellipse, #fff 0%, var(--gold-light) 40%, transparent 70%); }

.sparkle.sparkle-pink::before,
.sparkle.sparkle-pink::after { background: linear-gradient(180deg, transparent, var(--magenta-glow), transparent); }
.sparkle.sparkle-pink .sparkle-core { background: radial-gradient(ellipse, #fff 0%, #e879f9 40%, transparent 70%); }

/* Sparkle animations with different timings */
.sparkle.anim-1 { animation: glitter-sparkle 3s ease-in-out infinite; }
.sparkle.anim-2 { animation: glitter-sparkle 4s ease-in-out infinite; }
.sparkle.anim-3 { animation: glitter-sparkle 2.5s ease-in-out infinite; }
.sparkle.anim-4 { animation: glitter-shimmer 2s ease-in-out infinite; }
.sparkle.anim-5 { animation: glitter-flash 4s ease-in-out infinite; }
.sparkle.anim-6 { animation: glitter-shimmer 3s ease-in-out infinite; }

/* Position each sparkle (set via inline style in HTML) */
/* Delay classes */
.delay-0 { animation-delay: 0s; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }
.delay-5 { animation-delay: 1.5s; }
.delay-6 { animation-delay: 1.8s; }
.delay-7 { animation-delay: 2.1s; }
.delay-8 { animation-delay: 2.4s; }
.delay-9 { animation-delay: 2.7s; }
.delay-10 { animation-delay: 3s; }

/* Hero Logo */
.hero-logo {
    margin-bottom: 0.5rem;
}

.hero-logo-image {
    max-width: 600px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(92, 225, 230, 0.6))
            drop-shadow(0 0 60px rgba(157, 78, 221, 0.4))
            drop-shadow(0 0 100px rgba(255, 215, 0, 0.3));
    animation: hero-logo-glow 3s ease-in-out infinite;
}

@keyframes hero-logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(92, 225, 230, 0.6))
                drop-shadow(0 0 60px rgba(157, 78, 221, 0.4))
                drop-shadow(0 0 100px rgba(255, 215, 0, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(92, 225, 230, 0.8))
                drop-shadow(0 0 80px rgba(157, 78, 221, 0.6))
                drop-shadow(0 0 120px rgba(255, 215, 0, 0.5));
        transform: scale(1.02);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 18vw, 12rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.hero-title .title-accent {
    display: block;
    background: linear-gradient(180deg, var(--cyan-bright) 0%, var(--cyan-light) 30%, #fff 50%, var(--gold) 70%, var(--gold-dark) 100%);
    background-size: 100% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 4s ease infinite;
    filter: drop-shadow(0 0 20px var(--cyan-bright)) drop-shadow(0 0 40px var(--magenta-glow));
    letter-spacing: 0.1em;
}

/* Legacy support for old markup */
.hero-title .line1 {
    display: block;
    color: #fff;
    text-shadow: 0 0 10px #fff, 0 0 20px var(--cyan-bright), 0 0 40px var(--cyan-bright), 0 0 80px var(--magenta-glow);
}

.hero-title .line2 {
    display: block;
    background: linear-gradient(90deg, var(--cyan-bright), var(--magenta-glow), var(--gold), var(--cyan-bright));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s ease infinite;
    filter: drop-shadow(0 0 30px var(--magenta-glow));
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold);
    margin-bottom: 2rem;
}

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

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    font-size: 0.85rem;
    padding: 0.9rem 2rem;
    letter-spacing: 1px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--magenta-glow), var(--purple-royal));
    color: #fff;
    text-decoration: none;
    border: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--cyan-bright), var(--magenta-glow), var(--gold)) 1;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

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

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

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 20px var(--cyan-bright), 0 0 40px var(--magenta-glow), 0 0 60px rgba(92, 225, 230, 0.5);
}

/* =====================================================
   DRAG-STYLE BUTTON - Replicating Logo Text Effect
   ===================================================== */
.btn-drag-style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Bungee', cursive;
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1.25rem 3rem;
    text-decoration: none;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    cursor: pointer;
}

.btn-drag-style .btn-text {
    position: relative;
    display: inline-block;
    /* Base gradient - cyan to teal like DRAG text */
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #b8f4f6 8%,
        #7fefff 20%,
        #5ce1e6 40%,
        #00b4d8 70%,
        #0096c7 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Purple/magenta stroke effect using text-shadow layers */
    filter: drop-shadow(0 0 1px #9d4edd);
    position: relative;
    z-index: 2;
}

/* Purple outline effect using pseudo-element */
.btn-drag-style .btn-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-text-stroke: 4px #9d4edd;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 0px #5a189a) drop-shadow(-1px -1px 0px #c77dff);
}

/* Glossy highlight shine overlay */
.btn-drag-style .btn-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.4) 15%,
        transparent 30%,
        transparent 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
}

/* Button background/container styling */
.btn-drag-style-container {
    display: inline-block;
    position: relative;
    padding: 1rem 2.5rem;
    background: linear-gradient(
        180deg,
        rgba(157, 78, 221, 0.3) 0%,
        rgba(90, 24, 154, 0.5) 100%
    );
    border: 3px solid transparent;
    border-image: linear-gradient(180deg, #c77dff, #9d4edd, #7b2cbf) 1;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    transition: all 0.3s ease;
}

.btn-drag-style-container:hover {
    background: linear-gradient(
        180deg,
        rgba(92, 225, 230, 0.3) 0%,
        rgba(0, 180, 216, 0.5) 100%
    );
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 0 20px rgba(92, 225, 230, 0.6),
        0 0 40px rgba(157, 78, 221, 0.4),
        0 0 60px rgba(92, 225, 230, 0.3);
}

.btn-drag-style-container:hover .btn-text {
    filter: drop-shadow(0 0 10px rgba(92, 225, 230, 0.8));
}

/* Icon styling for drag-style button */
.btn-drag-style i {
    font-size: 1.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #5ce1e6 50%, #00b4d8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1px 1px 0px #9d4edd);
}

/* Alternative simpler version using just shadows */
.btn-drag-simple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'Bungee', cursive;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1.5rem 3rem;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    border: none;
    background: linear-gradient(
        180deg,
        rgba(90, 24, 154, 0.5) 0%,
        rgba(123, 44, 191, 0.7) 50%,
        rgba(90, 24, 154, 0.6) 100%
    );
    border-radius: 0;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    transition: all 0.3s ease;
    box-shadow:
        0 6px 0 #5a189a,
        0 8px 0 #3c096c,
        0 12px 20px rgba(90, 24, 154, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    border: 3px solid #7b2cbf;
    border-bottom: none;
}

.btn-drag-simple span {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #e0feff 5%,
        #b8f4f6 15%,
        #7fefff 30%,
        #5ce1e6 50%,
        #00b4d8 75%,
        #0077b6 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Deep purple stroke effect */
    paint-order: stroke fill;
    -webkit-text-stroke: 4px #7b2cbf;
    /* 3D depth with multiple shadows */
    filter:
        drop-shadow(2px 2px 0px #5a189a)
        drop-shadow(3px 3px 0px #3c096c)
        drop-shadow(4px 4px 0px #240046)
        drop-shadow(0 0 5px rgba(157, 78, 221, 0.8));
}

/* White glossy highlight overlay */
.btn-drag-simple span::before {
    content: 'Book Tickets';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.5) 20%,
        transparent 40%,
        transparent 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0;
    pointer-events: none;
}

.btn-drag-simple i {
    font-size: 1.5rem;
    color: #5ce1e6;
    text-shadow:
        0 0 10px #5ce1e6,
        2px 2px 0px #5a189a,
        3px 3px 0px #3c096c;
    -webkit-text-stroke: 0;
}

.btn-drag-simple:hover {
    transform: translateY(-3px);
    box-shadow:
        0 9px 0 #5a189a,
        0 11px 0 #3c096c,
        0 15px 30px rgba(92, 225, 230, 0.4),
        0 0 40px rgba(92, 225, 230, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    border-color: #9d4edd;
}

.btn-drag-simple:hover span {
    filter:
        drop-shadow(2px 2px 0px #5a189a)
        drop-shadow(3px 3px 0px #3c096c)
        drop-shadow(4px 4px 0px #240046)
        drop-shadow(0 0 15px rgba(92, 225, 230, 0.9));
}

.btn-drag-simple:active {
    transform: translateY(2px);
    box-shadow:
        0 3px 0 #5a189a,
        0 4px 0 #3c096c,
        0 6px 10px rgba(90, 24, 154, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1.25rem 3rem;
    background: transparent;
    color: var(--cyan-bright);
    text-decoration: none;
    border: 3px solid var(--cyan-bright);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(92, 225, 230, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--cyan-bright), var(--cyan-deep));
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--cyan-bright), 0 0 50px rgba(92, 225, 230, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 10rem;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.scroll-indicator .scroll-text-large {
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 600;
    text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

/* Section Transition */
.section-transition {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    animation: float 2s ease-in-out infinite;
}

.section-transition .transition-text {
    display: block;
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.section-transition .transition-arrow {
    font-size: 1.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

/* =====================================================
   SHOW FEATURE SECTION
   ===================================================== */
.show-feature {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    z-index: 5;
}

.show-feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.neon-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(157, 78, 221, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 78, 221, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.disco-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    pointer-events: none;
}

.disco-rays .ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transform-origin: left center;
    opacity: 0.3;
}

.disco-rays .ray:nth-child(1) { transform: rotate(0deg); }
.disco-rays .ray:nth-child(2) { transform: rotate(60deg); }
.disco-rays .ray:nth-child(3) { transform: rotate(120deg); }
.disco-rays .ray:nth-child(4) { transform: rotate(180deg); }
.disco-rays .ray:nth-child(5) { transform: rotate(240deg); }
.disco-rays .ray:nth-child(6) { transform: rotate(300deg); }

/* Show Feature Header */
.show-feature-header {
    text-align: center;
    margin-bottom: 4rem;
}

.show-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-pink), var(--purple-primary));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.5), 0 0 60px rgba(255, 0, 128, 0.3);
}

.show-logo-badge i {
    font-size: 2.5rem;
    color: white;
}

.show-logo-badge i.spinning {
    animation: spin 8s linear infinite;
}

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

.show-feature-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.rainbow-text-animated {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--gold), var(--neon-cyan));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-shift 4s ease infinite;
}

@keyframes rainbow-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.show-feature-tagline {
    font-size: 1.4rem;
    color: var(--gold);
    font-style: italic;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Show Feature Grid */
.show-feature-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Show Poster */
.show-poster {
    position: relative;
}

.poster-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(255, 0, 128, 0.4),
        0 0 80px rgba(157, 78, 221, 0.3),
        0 25px 50px rgba(0, 0, 0, 0.5);
}

.poster-neon-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--gold), var(--neon-cyan));
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    animation: border-glow 3s ease infinite;
}

@keyframes border-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.poster-frame img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.poster-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    animation: poster-shine 4s ease-in-out infinite;
}

@keyframes poster-shine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.poster-reflection {
    height: 80px;
    margin-top: -5px;
    background: linear-gradient(to bottom, rgba(255, 0, 128, 0.2), transparent);
    border-radius: 0 0 15px 15px;
    filter: blur(10px);
    transform: scaleY(-0.3);
    opacity: 0.5;
}

/* Show Feature Content */
.show-feature-content {
    color: white;
}

.show-intro {
    margin-bottom: 2rem;
}

.show-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.highlight-text {
    color: var(--neon-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(92, 225, 230, 0.5);
}

.show-description {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--gold);
    border-radius: 0 10px 10px 0;
}

.show-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.show-description strong {
    color: var(--gold);
}

/* Queens Showcase */
.queens-showcase {
    margin-bottom: 2.5rem;
}

.queens-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.queens-title i {
    color: var(--gold);
    margin: 0 0.5rem;
    font-size: 1rem;
}

.queen-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.queen-card {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, rgba(255, 0, 128, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.queen-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.2);
}

.queen-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-pink), var(--purple-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.queen-icon i {
    font-size: 1.25rem;
    color: white;
}

.queen-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.queen-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Show Features List */
.show-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.feature-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Show CTA */
.show-cta {
    text-align: center;
    padding-top: 1rem;
}

/* =====================================================
   SHOW SPLIT LAYOUT - Two Column Design
   ===================================================== */
.show-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.show-text-column {
    color: white;
}

.show-text-column .show-lead {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.show-description-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--neon-pink);
    border-radius: 0 10px 10px 0;
}

.show-description-text strong {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.show-tagline {
    font-family: var(--font-display);
    font-size: 1.3rem;
    text-align: center;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(92, 225, 230, 0.5);
}

.show-tagline i {
    color: var(--gold);
    margin: 0 0.5rem;
}

/* Image Collage */
.show-collage-column {
    position: relative;
}

.image-collage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.collage-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.collage-item:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 10;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 0, 128, 0.3);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-large {
    grid-column: span 2;
    grid-row: span 1;
}

.collage-small {
    grid-column: span 1;
    grid-row: span 1;
}

.collage-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.collage-top-right {
    border: 3px solid var(--neon-pink);
}

.collage-bottom-left {
    border: 3px solid var(--neon-cyan);
}

.collage-bottom-right {
    border: 3px solid var(--gold);
}

.collage-large {
    border: 3px solid var(--magenta-glow);
}

.collage-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: collage-shine 4s ease-in-out infinite;
}

.collage-item:nth-child(2) .collage-shine { animation-delay: 0.5s; }
.collage-item:nth-child(3) .collage-shine { animation-delay: 1s; }
.collage-item:nth-child(4) .collage-shine { animation-delay: 1.5s; }

@keyframes collage-shine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Full Width Features */
.show-features-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.feature-item-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, rgba(255, 0, 128, 0.15) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item-large:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #DAA520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.feature-icon i {
    font-size: 1.75rem;
    color: #1a0a2e;
}

.feature-item-large span {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Show CTA Section */
.show-cta-section {
    text-align: center;
    padding: 2rem 0;
}

/* Responsive for Split Layout */
@media (max-width: 992px) {
    .show-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .show-features-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-collage {
        grid-template-rows: repeat(2, 180px);
    }
}

@media (max-width: 768px) {
    .show-features-full {
        grid-template-columns: 1fr;
    }

    .image-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 150px);
    }

    .collage-large,
    .collage-medium {
        grid-column: span 2;
    }

    .show-text-column .show-lead {
        font-size: 1.2rem;
    }

    .show-tagline {
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .show-feature-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .show-poster {
        max-width: 400px;
        margin: 0 auto;
    }

    .show-feature-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .queen-cards {
        grid-template-columns: 1fr;
    }

    .show-features-list {
        grid-template-columns: 1fr;
    }

    .show-feature-title {
        font-size: 2rem;
    }
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
    position: relative;
    padding: 8rem 0;
    z-index: 5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    padding: 0.75rem 2rem;
    border: 2px solid var(--neon-cyan);
    margin-bottom: 1.5rem;
    animation: border-dance 4s linear infinite;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, var(--cyan-bright), var(--magenta-glow), var(--gold), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-divider .line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
}

.section-divider i {
    color: var(--gold);
    font-size: 1.25rem;
    text-shadow: 0 0 20px var(--gold);
    animation: disco-spin 4s linear infinite;
}

.section-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   ARTIST FEATURE SECTION
   ===================================================== */
.artist-feature {
    position: relative;
}

.artist-feature:first-of-type {
    padding-top: 12rem;
}

.artist-feature:first-of-type .artist-banner {
    margin-top: 10rem;
}

/* Artist Banner Header */
.artist-banner {
    position: relative;
    height: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
}

.artist-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.artist-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.artist-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.9) 0%, rgba(123, 44, 191, 0.85) 50%, rgba(90, 24, 154, 0.9) 100%);
    z-index: 2;
}

/* Tilted Show Banner */
.show-banner-tilted {
    transform: rotate(5deg);
    margin: 3rem -50px;
    width: calc(100% + 100px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Show Banner with Poster Image */
.show-banner-tall {
    height: auto !important;
    min-height: auto;
    padding: 3rem 0;
}

.banner-poster-image {
    position: relative;
    z-index: 3;
    width: 80%;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 50px rgba(255, 255, 255, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.banner-poster-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.banner-poster-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: banner-shine 3s ease-in-out infinite;
}

@keyframes banner-shine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

@media (max-width: 768px) {
    .show-banner-tall {
        height: auto !important;
        min-height: auto;
        padding: 2rem 0;
    }

    .banner-poster-image {
        width: 75%;
        max-width: none;
    }
}

/* Show Feature Full Width */
.show-feature-full {
    max-width: 900px;
    margin: 0 auto;
}

/* Alternating Bio Banner Rotations */
.artist-feature:nth-of-type(odd) .artist-banner {
    transform: rotate(-4deg);
    margin: 1rem -50px;
    width: calc(100% + 100px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.artist-feature:nth-of-type(even) .artist-banner {
    transform: rotate(4deg);
    margin: 1rem -50px;
    width: calc(100% + 100px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Producer Banner - Gold Tilted */
.producer-banner-tilted {
    transform: rotate(-4deg);
    margin: 3rem -50px;
    width: calc(100% + 100px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3), 0 10px 40px rgba(0, 0, 0, 0.4);
}

.banner-overlay-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.85) 0%, rgba(218, 165, 32, 0.9) 50%, rgba(184, 134, 11, 0.85) 100%);
}

/* =====================================================
   PRODUCER FEATURE SECTION - Super Special
   ===================================================== */
.producer-feature {
    position: relative;
    padding: 6rem 0;
    padding-top: 10rem;
    margin-top: -6rem;
    overflow: hidden;
}

.producer-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.spotlight-beam {
    position: absolute;
    width: 300px;
    height: 200%;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.15), transparent 70%);
    transform-origin: top center;
}

.spotlight-beam-1 {
    left: 20%;
    top: -50%;
    transform: rotate(-20deg);
    animation: spotlight-sway 10s ease-in-out infinite;
}

.spotlight-beam-2 {
    left: 50%;
    top: -50%;
    transform: rotate(0deg) translateX(-50%);
    animation: spotlight-sway 8s ease-in-out infinite reverse;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.2), transparent 60%);
}

.spotlight-beam-3 {
    right: 20%;
    left: auto;
    top: -50%;
    transform: rotate(20deg);
    animation: spotlight-sway 12s ease-in-out infinite;
}

@keyframes spotlight-sway {
    0%, 100% { opacity: 0.5; transform: rotate(-20deg); }
    50% { opacity: 0.8; transform: rotate(-15deg); }
}

/* Producer Content Layout */
.producer-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Producer Portrait with Glow Rings */
.producer-portrait-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.producer-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: ring-pulse 3s ease-in-out infinite;
}

.producer-glow-ring.ring-2 {
    width: 380px;
    height: 380px;
    border-color: rgba(255, 215, 0, 0.15);
    animation-delay: 1.5s;
}

@keyframes ring-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

.producer-portrait {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3),
        0 0 90px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.producer-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    transform: skewX(-25deg);
    animation: portrait-shimmer 4s ease-in-out infinite;
}

@keyframes portrait-shimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.producer-title-badge {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--gold), #DAA520);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.producer-title-badge i {
    color: #1a0a2e;
    font-size: 0.9rem;
    animation: star-twinkle 1.5s ease-in-out infinite;
}

.producer-title-badge span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a0a2e;
}

@keyframes star-twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Producer Bio Content */
.producer-bio {
    color: white;
}

.producer-headline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.headline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #DAA520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    flex-shrink: 0;
}

.headline-icon i {
    font-size: 2rem;
    color: #1a0a2e;
}

.producer-headline h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    background: linear-gradient(90deg, var(--gold), #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.headline-tagline {
    font-size: 1.1rem;
    color: var(--gold);
    font-style: italic;
    margin: 0;
}

.producer-intro {
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.gold-highlight {
    color: var(--gold);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.producer-story {
    margin-bottom: 2rem;
}

.producer-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.producer-story strong {
    color: var(--gold);
}

/* Mission Quote */
.producer-mission {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #DAA520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: heart-beat 2s ease-in-out infinite;
}

.mission-icon i {
    font-size: 1.5rem;
    color: #1a0a2e;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

.producer-mission blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Producer Credits */
.producer-credits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.credit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.credit-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.credit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold), #DAA520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credit-icon i {
    font-size: 1.1rem;
    color: #1a0a2e;
}

.credit-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* Producer Responsive */
@media (max-width: 992px) {
    .producer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .producer-portrait-wrapper {
        margin-bottom: 2rem;
    }

    .producer-headline {
        flex-direction: column;
        text-align: center;
    }

    .producer-credits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .producer-portrait {
        width: 220px;
        height: 220px;
    }

    .producer-glow-ring {
        width: 260px;
        height: 260px;
    }

    .producer-glow-ring.ring-2 {
        width: 310px;
        height: 310px;
    }

    .producer-headline h3 {
        font-size: 1.5rem;
    }

    .producer-mission {
        flex-direction: column;
        text-align: center;
    }
}

.banner-overlay-pink {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.9) 0%, rgba(255, 0, 128, 0.85) 50%, rgba(200, 0, 100, 0.9) 100%);
}

.artist-banner-title {
    position: relative;
    z-index: 3;
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(157, 78, 221, 0.6),
        0 0 60px rgba(157, 78, 221, 0.4),
        0 0 80px rgba(157, 78, 221, 0.3),
        4px 4px 0 rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0 1rem;
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(157, 78, 221, 0.6), 0 0 60px rgba(157, 78, 221, 0.4), 4px 4px 0 rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 60px rgba(157, 78, 221, 0.8), 0 0 90px rgba(157, 78, 221, 0.6), 0 0 120px rgba(157, 78, 221, 0.4), 4px 4px 0 rgba(0, 0, 0, 0.3); }
}

.banner-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.banner-subtitle {
    position: relative;
    z-index: 3;
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold);
    margin-top: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Artist Bio Section */
.artist-bio-section {
    padding: 5rem 0;
    position: relative;
}

/* Light Beam Effects */
.bio-light-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bio-beam {
    position: absolute;
    width: 200px;
    height: 150%;
    background: linear-gradient(180deg, rgba(255, 20, 147, 0.08), transparent);
    transform-origin: top center;
    animation: beam-sway 8s ease-in-out infinite;
}

.bio-beam-1 {
    left: 15%;
    top: -20%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.bio-beam-2 {
    right: 10%;
    left: auto;
    top: -20%;
    transform: rotate(15deg);
    animation-delay: 4s;
    background: linear-gradient(180deg, rgba(92, 225, 230, 0.06), transparent);
}

@keyframes beam-sway {
    0%, 100% { transform: rotate(-15deg); opacity: 0.4; }
    50% { transform: rotate(-10deg); opacity: 0.6; }
}

/* Bio Section Sparkles */
.bio-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.artist-bio-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Reversed layout - portrait on right */
.artist-bio-grid-reversed {
    grid-template-columns: 1fr 400px;
}

.artist-bio-grid-reversed .artist-bio-content {
    text-align: right;
}

.artist-bio-grid-reversed .bio-divider,
.artist-bio-grid-reversed .bio-tags {
    justify-content: flex-end;
}

.artist-bio-grid-reversed .bio-quote {
    border-left: none;
    border-right: 4px solid var(--gold);
    border-radius: 15px 0 0 15px;
}

.artist-bio-grid-reversed .bio-highlights {
    align-items: flex-end;
}

.artist-bio-grid-reversed .bio-highlight {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

/* Portrait */
.artist-portrait {
    position: relative;
    padding: 20px;
}

/* Spotlight Effect Behind Portrait */
.portrait-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255, 20, 147, 0.3) 0%, rgba(157, 78, 221, 0.15) 40%, transparent 70%);
    animation: spotlight-pulse 4s ease-in-out infinite;
    z-index: 0;
}

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

.artist-portrait-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(255, 20, 147, 0.5),
        0 0 80px rgba(157, 78, 221, 0.4),
        0 0 120px rgba(255, 20, 147, 0.2),
        0 25px 80px rgba(0, 0, 0, 0.6);
    border: 4px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.artist-portrait-frame::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--hot-pink), var(--cyan-bright), var(--gold), var(--magenta-glow), var(--hot-pink));
    border-radius: 24px;
    z-index: -1;
    animation: gradient-flow 4s ease infinite;
    background-size: 400% 400%;
}

.artist-portrait-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.artist-portrait-frame:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.portrait-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 30%, transparent 60%, rgba(255, 20, 147, 0.4) 100%);
    pointer-events: none;
}

/* Shine Effect on Portrait */
.portrait-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine-sweep 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine-sweep {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Corner Flourishes */
.portrait-flourish {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--gold);
    z-index: 2;
    opacity: 0.8;
}

.portrait-flourish.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 10px;
}

.portrait-flourish.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 10px;
}

.portrait-flourish.bottom-left {
    bottom: 60px;
    left: 0;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 10px;
}

.portrait-flourish.bottom-right {
    bottom: 60px;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 10px;
}

.artist-name-plate {
    margin-top: 1.5rem;
    text-align: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(157, 78, 221, 0.3));
    border-radius: 50px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.name-plate-crown {
    color: var(--gold);
    font-size: 1.2rem;
    animation: crown-bounce 2s ease-in-out infinite;
}

.name-plate-crown:last-child {
    animation-delay: 0.3s;
}

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

.name-plate-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hot-pink);
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

/* Bio Content */
.artist-bio-content {
    padding: 1rem 0;
}

/* Bio Quote */
.bio-quote {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 20, 147, 0.1));
    border-left: 4px solid var(--gold);
    border-radius: 0 15px 15px 0;
}

.bio-quote span {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    font-style: italic;
}

.quote-icon {
    color: var(--magenta-glow);
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

.bio-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bio-divider {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.divider-star {
    color: var(--gold);
    font-size: 1rem;
    animation: twinkle 2s ease-in-out infinite;
}

.divider-star:nth-child(2) { animation-delay: 0.2s; }
.divider-star:nth-child(3) { animation-delay: 0.4s; }
.divider-star:nth-child(4) { animation-delay: 0.6s; }
.divider-star:nth-child(5) { animation-delay: 0.8s; }

.bio-intro {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--cyan-bright);
    text-shadow: 0 0 20px rgba(92, 225, 230, 0.5);
    margin-bottom: 1.5rem;
}

/* Bio Highlights */
.bio-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(92, 225, 230, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bio-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.bio-highlight i {
    font-size: 1.5rem;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    width: 40px;
    text-align: center;
}

.bio-highlight span {
    font-weight: 500;
}

.bio-paragraph {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.bio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.bio-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(157, 78, 221, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #fff;
    transition: all 0.3s ease;
}

.bio-tag:hover {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.4), rgba(157, 78, 221, 0.4));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.3);
}

.bio-tag i {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 992px) {
    .artist-bio-grid,
    .artist-bio-grid-reversed {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .artist-portrait {
        max-width: 90%;
        width: 90%;
        margin: 0 auto;
        order: 1;
    }

    .artist-name-plate {
        width: 90%;
        max-width: 90%;
        padding: 1rem 1.5rem;
    }

    .artist-bio-content,
    .artist-bio-grid-reversed .artist-bio-content {
        text-align: center;
        order: 2;
    }

    .bio-divider,
    .bio-tags,
    .artist-bio-grid-reversed .bio-divider,
    .artist-bio-grid-reversed .bio-tags {
        justify-content: center;
    }

    .bio-quote,
    .artist-bio-grid-reversed .bio-quote {
        justify-content: center;
        text-align: center;
        border-left: none;
        border-right: none;
        border-top: 4px solid var(--gold);
        border-radius: 0 0 15px 15px;
    }

    .bio-highlights,
    .artist-bio-grid-reversed .bio-highlights {
        text-align: left;
        align-items: flex-start;
    }

    .bio-highlight,
    .artist-bio-grid-reversed .bio-highlight {
        justify-content: flex-start;
        flex-direction: row;
    }

    .portrait-flourish {
        display: none;
    }
}

@media (max-width: 576px) {
    .artist-banner {
        height: 180px;
    }

    .artist-banner.show-banner-tall {
        height: auto !important;
        padding: 1.5rem 0;
    }

    .show-banner-tall .banner-poster-image {
        width: 70%;
    }

    .artist-banner-title {
        font-size: clamp(1.8rem, 7vw, 3rem);
        letter-spacing: 0.08em;
    }

    .banner-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }

    .artist-bio-section {
        padding: 3rem 0;
    }

    .artist-portrait {
        max-width: 95%;
        width: 95%;
        padding: 10px;
    }

    .artist-name-plate {
        width: 95%;
        max-width: 95%;
    }

    .bio-quote {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .bio-quote span {
        font-size: 1.1rem;
    }

    .bio-highlights {
        padding: 1rem;
    }

    .bio-highlight {
        font-size: 1rem;
    }

    .bio-highlight i {
        font-size: 1.2rem;
        width: 30px;
    }
}

/* =====================================================
   SHOWS SECTION
   ===================================================== */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.show-card {
    position: relative;
    background: rgba(26, 0, 51, 0.8);
    border: 2px solid var(--neon-pink);
    overflow: hidden;
    transition: all 0.5s ease;
}

.show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-yellow), var(--neon-pink));
    background-size: 300% 100%;
    animation: gradient-flow 3s linear infinite;
}

.show-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px var(--neon-pink), 0 0 60px rgba(255, 0, 255, 0.3), inset 0 0 30px rgba(255, 0, 255, 0.1);
}

.show-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.show-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.show-card:hover .show-card-image img {
    transform: scale(1.1);
    filter: saturate(1.3) brightness(1.1);
}

.show-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(26, 0, 51, 1), transparent);
}

.show-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: #fff;
    z-index: 5;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    box-shadow: 0 0 20px var(--neon-pink);
}

.show-card-content {
    padding: 2.5rem;
}

.show-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 30px var(--neon-pink);
}

.show-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.show-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.show-cast {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 0, 255, 0.3);
}

.show-cast-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.show-cast-names {
    color: var(--gold);
    font-style: italic;
}

.show-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--neon-pink);
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.show-link:hover {
    color: var(--neon-cyan);
    gap: 1rem;
    text-shadow: 0 0 20px var(--neon-cyan);
}

/* =====================================================
   GLITTER STATS BANNER
   ===================================================== */
.glitter-banner {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan), var(--neon-pink));
    background-size: 400% 400%;
    animation: gradient-flow 8s ease infinite;
    overflow: hidden;
}

.glitter-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
}

.glitter-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: disco-spin 60s linear infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 20px #fff, 0 0 40px #fff, 0 0 60px rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* =====================================================
   TOUR SECTION
   ===================================================== */
.tour-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.tour-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(26, 0, 51, 0.8);
    border: 2px solid var(--neon-purple);
    padding: 1.5rem 2rem;
    transition: all 0.4s ease;
}

.tour-card:hover {
    border-color: var(--neon-cyan);
    transform: translateX(10px);
    box-shadow: -10px 0 30px var(--neon-pink), 0 0 30px rgba(0, 255, 255, 0.2);
}

.tour-date {
    text-align: center;
    min-width: 100px;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.tour-date .day {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 20px #fff;
}

.tour-date .month {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.tour-info {
    flex: 1;
}

.tour-venue {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.tour-location {
    color: var(--neon-cyan);
    font-size: 0.95rem;
}

.tour-show {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--gold);
}

.tour-card .btn-primary {
    padding: 1rem 2rem;
    font-size: 0.85rem;
}

/* =====================================================
   CAST SECTION
   ===================================================== */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cast-card {
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(rgba(26, 0, 51, 0.95), rgba(26, 0, 51, 0.95)) padding-box,
                linear-gradient(135deg, var(--neon-pink), var(--neon-cyan), var(--neon-yellow), var(--neon-purple)) border-box;
    transition: all 0.5s ease;
}

.cast-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 0 40px var(--neon-pink), 0 0 80px rgba(255, 0, 255, 0.3);
}

.cast-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.cast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.cast-card:hover .cast-image img {
    transform: scale(1.1);
    filter: saturate(1.3);
}

.cast-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(26, 0, 51, 1), transparent);
}

.cast-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 5;
}

.cast-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--neon-pink);
    margin-bottom: 0.25rem;
}

.cast-role {
    font-size: 0.9rem;
    color: var(--neon-cyan);
    font-style: italic;
}

.cast-shows {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.cast-shows span {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 0, 255, 0.3);
    border: 1px solid var(--neon-pink);
    color: #fff;
}

/* =====================================================
   QUOTE SECTION
   ===================================================== */
.quote-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.2) 0%, transparent 70%);
    animation: glow-pulse 4s ease-in-out infinite;
}

.quote-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.quote-icon {
    font-size: 4rem;
    color: var(--neon-pink);
    text-shadow: 0 0 30px var(--neon-pink);
    margin-bottom: 2rem;
}

.quote-text {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quote-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.quote-stars i {
    color: var(--gold);
    font-size: 1.5rem;
    text-shadow: 0 0 20px var(--gold);
    animation: twinkle 1s ease-in-out infinite;
}

.quote-stars i:nth-child(2) { animation-delay: 0.2s; }
.quote-stars i:nth-child(3) { animation-delay: 0.4s; }
.quote-stars i:nth-child(4) { animation-delay: 0.6s; }
.quote-stars i:nth-child(5) { animation-delay: 0.8s; }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.8), rgba(0, 255, 255, 0.6), rgba(255, 0, 255, 0.8));
    background-size: 400% 400%;
    animation: gradient-flow 6s ease infinite;
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 20px #fff, 0 0 40px #fff, 0 0 80px var(--neon-pink);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--neon-pink);
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 40px var(--gold);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: linear-gradient(180deg, var(--purple-deep), #000);
    padding: 5rem 0 2rem;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-yellow), var(--neon-pink)) 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--cyan-bright), var(--magenta-glow), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(92, 225, 230, 0.5));
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 20px var(--neon-pink);
    transform: translateY(-5px);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-pink);
    padding-left: 10px;
    text-shadow: 0 0 10px var(--neon-pink);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: var(--neon-pink);
    width: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* =====================================================
   PAGE HEADER
   ===================================================== */
.page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.7), rgba(0, 255, 255, 0.5), rgba(255, 0, 255, 0.7));
    background-size: 400% 400%;
    animation: gradient-flow 6s ease infinite;
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 20px #fff, 0 0 40px var(--neon-pink), 0 0 80px var(--neon-pink);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(26, 0, 51, 0.8);
    border: 2px solid var(--neon-purple);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* =====================================================
   UTILITIES
   ===================================================== */
.text-center { text-align: center; }
.mt-5 { margin-top: 5rem; }
.mb-5 { margin-bottom: 5rem; }

/* =====================================================
   MOBILE MENU
   ===================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--purple-deep), var(--purple-mid));
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--neon-pink);
    font-size: 2.5rem;
    cursor: pointer;
    text-shadow: 0 0 20px var(--neon-pink);
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
}

.mobile-menu-links li {
    margin: 1.5rem 0;
}

.mobile-menu-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 30px var(--neon-cyan);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
    .cast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .shows-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tour-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 5rem 0;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .cast-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
    .stat-number {
        font-size: 3rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
