@media (max-width: 768px) {
    .sponsor-3d+.section-separator.bridge-medium {
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .sponsor-3d+.section-separator.bridge-medium::before,
    .sponsor-3d+.section-separator.bridge-medium::after {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero+.section-separator.bridge-medium {
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero+.section-separator.bridge-medium::before,
    .hero+.section-separator.bridge-medium::after {
        display: none !important;
    }
}

/* =========================================
   VARIABLES & RESETS
   ========================================= */
:root {

    html,
    body {
        height: auto;
    }

    /* Colors - High Contrast */
    --clr-bg: #0b0b0b;
    --clr-text: #ffffff;
    --clr-accent: #fbff00;
    --clr-accent-soft: #d2db5b;
    --clr-footer-gold: #c7b327;
    --clr-footer-gold-bright: #e2d53a;
    /* Vivid Yellow */
    --clr-black: #000000;
    --clr-grey: #333333;
    --halftone-dot-color: rgba(255, 255, 255, 0.14);
    --halftone-dot-size: 1px;
    --halftone-dot-spacing: 10px;

    /* Typography */
    --font-heading: 'Bebas Neue',
    sans-serif;
    --font-lineup: 'Anton',
    sans-serif;
    --font-body: 'Inter',
    sans-serif;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2.5rem;
    --space-lg: 5rem;
    --space-xl: 10rem;

    /* Riot Flow Phase 1 Tokens (Tighter for Mobile) */
    --rhythm-tight: clamp(1.8rem, 4vw, 2.4rem);
    --rhythm-standard: clamp(2.5rem, 6vw, 3.5rem);
    --rhythm-spacious: clamp(3.5rem, 8vw, 4.5rem);
    --bridge-line: rgba(170, 177, 70, 0.45);
    --bridge-glow: rgba(251, 255, 0, 0.18);
    --motif-pulse-line: rgba(251, 255, 0, 0.2);
    --motif-haze-lime: rgba(205, 226, 32, 0.12);
    --motif-haze-forest: rgba(35, 81, 47, 0.1);
    --tone-pressure-overlay: rgba(255, 255, 255, 0.03);
    --tone-release-shadow: rgba(0, 0, 0, 0.14);
    --tone-seal-bg: #060606;

    /* Sticky sponsor strip */
    --sticky-banner-height: clamp(52px, 6vw, 72px);
    --sticky-banner-bg: rgba(8, 8, 8, 0.98);
    --sticky-banner-border: rgba(251, 255, 0, 0.3);
    --sticky-banner-shadow: 0 12px 22px rgba(0, 0, 0, 0.42);
    --hero-sponsor-logo-scale: 1.8;
    --hero-plane-parallax-y: 0;
    --finale-seal-strength: 1;
    --finale-seal-glow-opacity: 0.32;
    --finale-seal-motion-duration: 0.92s;
    --finale-seal-density: 0.88;

    /* Hero -> lineup motion polish */
    --hero-lineup-zone-height: clamp(40px, 5.2vw, 68px);
    --hero-lineup-zone-glow-opacity: 0.1;
    --hero-lineup-zone-beam-opacity: 0.84;
    --heading-reveal-duration: 0.94;
    --lineup-stagger-step: 0.032;
    --reveal-blur-strength: 2.4;
}

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

html {
    scroll-behavior: initial;
    /* Lenis handles this */
    overflow-x: hidden;
    background-color: #030303;
    /* Very dark background outside the mobile frame on desktop */
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* Let body span full screen */
    position: relative;

    main.smooth-scroll-wrapper {
        display: flex;
        flex-direction: column;
        overflow: visible;
        /* Allow hero breakout to bypass clipping */
    }

    footer.site-footer {
        flex-shrink: 0;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    }

    /* Apply strict mobile constraint to all sections EXCEPT hero */
    main.smooth-scroll-wrapper>section:not(.hero) {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    }

    main.smooth-scroll-wrapper>div:not(.hero-bg-parallax) {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        box-shadow: none;
    }

    background-color: var(--clr-bg);
    color: var(--clr-text);
    --tone-accent-current: var(--clr-accent-soft);
    font-family: var(--font-body);
    /* Removed overflow-x: hidden to allow hero section breakout */
    -webkit-font-smoothing: antialiased;
    cursor: none;
    /* Hide default for custom cursor */
}

/* Base Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.massive-text {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 0.9;
    margin: 0;
}

.section-title {
    color: var(--clr-accent);
    text-shadow: 0 0 15px rgba(251, 255, 0, 0.6);
}

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

body.loading .hero-content .btn-primary.gsap-reveal {
    opacity: 0;
    visibility: hidden;
}

#canvas-container.is-loading {
    background:
        radial-gradient(circle at 50% 42%, rgba(251, 255, 0, 0.055) 0%, rgba(20, 15, 10, 0.5) 20%, transparent 48%),
        linear-gradient(180deg, rgba(20, 15, 10, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-padding {
    padding-top: var(--section-space, var(--rhythm-standard));
    padding-bottom: var(--section-space, var(--rhythm-standard));
}

.rhythm-tight {
    --section-space: var(--rhythm-tight);
}

.rhythm-standard {
    --section-space: var(--rhythm-standard);
}

.rhythm-spacious {
    --section-space: var(--rhythm-spacious);
}

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

.text-yellow {
    color: #b4ff00;
    text-shadow: 0 0 15px rgba(180, 255, 0, 0.6), 0 0 30px rgba(180, 255, 0, 0.4);
}

.text-black {
    color: var(--clr-black);
}

.bg-high-contrast {
    background-color: var(--clr-accent);
}

.mb-2 {
    margin-bottom: var(--space-md);
}

.banner-margin {
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.pt-0 {
    padding-top: 0 !important;
}

.border-y {
    border-top: 1px solid var(--clr-grey);
    border-bottom: 1px solid var(--clr-grey);
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-neon-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    padding: 0 2rem;
    height: 54px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    outline: none;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-black);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(251, 255, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-text);
    border: 2px solid var(--clr-text);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.btn-neon-ghost {
    background-color: transparent;
    color: var(--clr-accent);
    border: 2px solid var(--clr-accent);
    font-size: 1.4rem;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(251, 255, 0, 0.4), inset 0 0 15px rgba(251, 255, 0, 0.2);
    text-shadow: 0 0 8px rgba(251, 255, 0, 0.5);
}

.btn-primary:focus-visible {
    background-color: #fff;
    box-shadow: 0 0 30px rgba(251, 255, 0, 0.6);
}

.btn-primary:active {
    box-shadow: 0 0 20px rgba(180, 255, 0, 0.9), inset 0 2px 4px rgba(0, 0, 0, 0.4);
    background-color: #b4ff00;
    transform: scale(0.96);
    transition: all 0.05s ease;
}

.btn-outline:focus-visible {
    background-color: var(--clr-text);
    color: var(--clr-black);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.15);
}

@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        background-color: #fff;
        box-shadow: 0 0 30px rgba(251, 255, 0, 0.6);
    }

    .btn-outline:hover {
        background-color: var(--clr-text);
        color: var(--clr-black);
        box-shadow: 0 8px 16px rgba(255, 255, 255, 0.15);
    }
}

.btn-outline:active {
    box-shadow: 0 0 15px rgba(180, 255, 0, 0.8), inset 0 0 10px rgba(180, 255, 0, 0.4);
    border-color: #b4ff00;
    color: #b4ff00;
    transform: scale(0.96);
    transition: all 0.05s ease;
}

.btn-neon-ghost:hover,
.btn-neon-ghost:focus-visible {
    background-color: var(--clr-accent);
    color: var(--clr-black);
    text-shadow: none;
    box-shadow: 0 0 25px rgba(251, 255, 0, 0.6);
}

.btn-neon-ghost:active {
    transform: scale(0.96);
    box-shadow: 0 0 10px rgba(251, 255, 0, 0.8);
    transition: all 0.05s ease;
}

/* =========================================
   GLOBAL VFX
   ========================================= */
/* Halftone/Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--clr-accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--clr-accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* Sticky sponsor strip */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: var(--sticky-banner-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: var(--sticky-banner-bg);
    border-bottom: 1px solid var(--sticky-banner-border);
    box-shadow: var(--sticky-banner-shadow);
    z-index: 1100;
}

.top-banner-inner {
    width: min(480px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.15rem, 1.5vw, 1.3rem);
    padding: 0 0.5rem;
    color: #f0f0f0;
    text-transform: uppercase;
}

.top-banner-label,
.top-banner-meta {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.9vw, 1.25rem);
    letter-spacing: 0.09em;
    line-height: 1;
    opacity: 0.86;
    white-space: nowrap;
}

.top-banner-label {
    color: var(--clr-accent);
}

.top-banner-logo {
    width: clamp(150px, 18vw, 240px);
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.42));
}

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

/* Shared halftone treatment for dark sections */
.lineup,
.venue,
.tickets,
.sponsor-3d,
.site-footer {
    background-color: var(--clr-bg);
    background-image: radial-gradient(var(--halftone-dot-color) var(--halftone-dot-size), transparent var(--halftone-dot-size));
    background-size: var(--halftone-dot-spacing) var(--halftone-dot-spacing);
    background-position: top left;
}

.sponsor-lineup-run {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    background-color: var(--clr-bg);
    background-image: radial-gradient(var(--halftone-dot-color) var(--halftone-dot-size), transparent var(--halftone-dot-size));
    background-size: var(--halftone-dot-spacing) var(--halftone-dot-spacing);
    background-position: top left;
}

.tickets {
    padding-top: calc(var(--section-space, var(--rhythm-standard)) - 0.7rem);
}

/* Riot Flow Phase 2 - tone mapping */
[data-tone="pressure"] {
    --tone-accent-current: var(--clr-accent-soft);
    background-image: radial-gradient(var(--halftone-dot-color) var(--halftone-dot-size), transparent var(--halftone-dot-size));
}

[data-tone="release"] {
    --tone-accent-current: var(--clr-accent);
    box-shadow: inset 0 20px 30px var(--tone-release-shadow), inset 0 -18px 24px rgba(255, 255, 255, 0.06);
}

[data-tone="seal"] {
    --tone-accent-current: #ced65a;
    background-color: var(--tone-seal-bg);
}

.accent-impact {
    color: var(--clr-accent) !important;
    text-shadow: 0 0 14px rgba(251, 255, 0, 0.16);
}

.section-motif-pulse,
.section-motif-haze {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    contain: paint;
}

.section-motif-pulse>*,
.section-motif-haze>* {
    position: relative;
    z-index: 1;
}

.section-motif-pulse::after {
    content: '';
    position: absolute;
    left: -20%;
    top: 22%;
    width: 140%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--motif-pulse-line) 50%, transparent 100%);
    opacity: 0.38;
    transform: translateX(-8%);
    animation: motifPulseSweep 14s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-motif-haze::before {
    content: '';
    position: absolute;
    inset: 12% 8%;
    background:
        radial-gradient(55% 50% at 18% 35%, var(--motif-haze-lime) 0%, transparent 70%),
        radial-gradient(48% 42% at 78% 65%, var(--motif-haze-forest) 0%, transparent 72%);
    opacity: 0.38;
    filter: blur(16px);
    transform: translate3d(0, 0, 0);
    animation: motifHazeDrift 16s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* Offset for persistent banner so the logo starts below it */
    padding: calc(var(--sticky-banner-height) + 15vh) 1rem 4rem;
    overflow-x: clip;
    overflow-y: visible;
}

/* Hero -> lineup corridor treatment only on first medium boundary */
.hero+.section-separator.bridge-medium {
    height: var(--hero-lineup-zone-height);
    background:
        radial-gradient(120% 120% at 50% 50%, rgba(251, 255, 0, calc(var(--hero-lineup-zone-glow-opacity) * 0.78)) 0%, transparent 76%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.06) 46%, rgba(255, 255, 255, 0.01) 100%),
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1.4px);
    background-size: 100% 100%, 100% 100%, 12px 12px;
}

.hero+.section-separator.bridge-medium::before {
    left: -55%;
    width: 210%;
    height: 3px;
    opacity: 0.1;
    transform: translate(-26%, -50%);
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(251, 255, 0, 0.08) 26%,
            rgba(251, 255, 0, var(--hero-lineup-zone-beam-opacity)) 50%,
            rgba(251, 255, 0, 0.08) 74%,
            transparent 100%);
    box-shadow: 0 0 18px rgba(210, 219, 91, 0.32);
    animation: none;
}

.hero+.section-separator.bridge-medium::after {
    display: none;
}

.hero+.section-separator.bridge-medium.is-active::before {
    animation: heroLineupCorridorSweep 1.02s cubic-bezier(0.2, 0.66, 0.25, 1);
}

.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    /* New user-provided crowd background */
    background-image: url('../assets/backgrounds/2048px X 1537px crowd pic.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: -1;
}

/* CAUTION TAPE SEPARATOR */
/* Visual Separator: Manifesto Ticker */
.manifesto-ticker-separator {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
    margin-top: -2.5rem;
    /* Pulled UP closer to the hero button */
    background-color: var(--clr-black);
    border-top: 2px solid var(--clr-accent);
    border-bottom: 2px solid var(--clr-accent);
    box-shadow: 0 0 15px rgba(251, 255, 0, 0.2), inset 0 0 10px rgba(251, 255, 0, 0.1);
}

.tape-track {
    display: flex;
    white-space: nowrap;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--clr-accent);
    text-shadow: 0 0 8px rgba(251, 255, 0, 0.6);
    animation: tapeScroll 8s linear infinite;
    /* Faster scroll */
    width: max-content;
    will-change: transform;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    /* Reduced gap for tighter hashtag spacing */
    padding-right: 0.6rem;
    /* Mirrors the gap to transition smoothly into the next group */
}

@keyframes tapeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.manifesto-ticker-separator .ticker-dot {
    margin: 0;
    /* Override global ticker-dot margin */
    font-size: 1.2rem;
    color: var(--clr-accent);
    /* Force explicit neon yellow, overriding global white */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    /* Center horizontally */
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 0 !important;
}

.hero-content .btn-primary {
    margin-bottom: 1.5rem;
}

.hero-content .btn-primary,
.ticket-buttons .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-lineup);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
}

.hero-content .btn-primary {
    width: max-content;
    min-width: unset;
    height: auto;
    margin-inline: auto;
    padding: 0.83em 1.7rem 0.52em;
    font-size: clamp(1.7rem, 4.2vw, 2.15rem);
    letter-spacing: 0.035em;
}

.sponsor-logo {
    width: calc(160px * var(--hero-sponsor-logo-scale));
    max-width: clamp(270px, 31vw, 440px);
    height: auto;
    display: inline-block;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.44));
}

.hero-logo {
    width: 95vw;
    margin-top: 0;
    max-width: 1100px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    animation: heroLogoFadeIn 0.38s ease-out both;
}

.hero-presented-logo {
    width: 65px;
    margin-top: -2.0rem;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

@keyframes heroLogoFadeIn {
    from {
        opacity: 0.08;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 98vw;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 100vw;
    }
}

.hero-content .btn-primary {
    /* Reverted Negative Margin */
    margin-bottom: 3.5rem;
}

/* Lineup */
.sponsor-3d {
    padding-top: clamp(1.2rem, 3vw, 1.9rem);
    padding-bottom: clamp(1.85rem, 4.8vw, 3.05rem);
}

.sponsor-lineup-run > .sponsor-3d,
.sponsor-lineup-run > .lineup,
.sponsor-lineup-run > .sponsor-3d[data-tone="pressure"],
.sponsor-lineup-run > .lineup[data-tone="pressure"] {
    background: transparent;
    background-image: none;
}

main.smooth-scroll-wrapper>section.sponsor-3d,
main.smooth-scroll-wrapper>section.lineup,
main.smooth-scroll-wrapper>section.gallery,
main.smooth-scroll-wrapper>section.schedule {
    box-shadow: none;
}

.sponsor-3d .banner-margin {
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}

.lineup {
    padding-top: clamp(1.35rem, 3.6vw, 2.1rem);
    margin-top: 0;
}

.sponsor-lineup-run > .lineup {
    margin-top: -1px;
}

.lineup .section-title {
    font-size: clamp(4rem, 10vw, 8rem);
    margin-bottom: 2rem;
}

#lineup .roster-title,
#lineup .special-guests-grid,
#lineup .lineup-dense .artist-item,
#lineup .lineup-dense .ticker-dot {
    will-change: transform, opacity;
}

.lineup-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lineup-dense {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.lineup-dense .ticker-dot {
    margin: 0 0.5rem;
    font-size: clamp(1rem, 4vw, 2.5rem);
}

.guest-subtitle {
    font-family: var(--font-body);
    font-size: 0.55em;
    letter-spacing: 4px;
    color: #bbb;
}

.tier-1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    color: var(--clr-text);
    text-shadow: 2px 2px 0px var(--clr-grey);
}

.tier-2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    color: #ccc;
}

.tier-3 {
    font-family: var(--font-body);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #999;
}

.dot {
    color: var(--clr-accent);
    margin: 0 1rem;
}

/* Schedule */
.schedule .massive-text {
    font-size: clamp(2rem, 8vw, 6rem);
    margin-top: 0;
}

.schedule-tight {
    padding: 10px 0 !important;
}

.schedule {
    background: linear-gradient(rgba(251, 255, 0, 1), rgba(251, 255, 0, 1));
    box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.schedule .hero-content {
    position: relative;
    z-index: 2;
}

.schedule .container {
    position: relative;
    z-index: 1;
}

.schedule::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(-18deg,
            rgba(0, 0, 0, 0.1) 0px,
            rgba(0, 0, 0, 0.1) 2px,
            transparent 2px,
            transparent 10px),
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.08) 14%,
            transparent 34%,
            transparent 64%,
            rgba(255, 255, 255, 0.1) 86%,
            rgba(255, 255, 255, 0.1) 100%);
    opacity: 0.34;
    animation: scheduleTextureDrift 16s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.schedule.section-motif-pulse::after {
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    opacity: 0.12;
}

/* Venue */
.venue-block {
    text-align: center;
}

.venue.section-motif-haze::before {
    inset: 14% 12%;
    background:
        radial-gradient(44% 38% at 32% 42%, rgba(180, 196, 62, 0.16) 0%, transparent 74%),
        radial-gradient(42% 36% at 68% 58%, rgba(41, 84, 53, 0.18) 0%, transparent 74%);
    opacity: 0.26;
    filter: blur(12px);
}

.venue .section-title {
    font-size: clamp(4rem, 12vw, 8rem);
}

.venue-status {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin: 1rem 0;
    letter-spacing: 0.03em;
}

.venue-desc {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: #aaa;
}

/* Tickets */
.tickets .section-title {
    font-size: clamp(3rem, 8vw, 6rem);
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem auto 1.5rem;
    flex-wrap: wrap;
    max-width: 400px;
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    flex: 1 1 140px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.presale-glow {
    border-color: rgba(251, 255, 0, 0.4);
    box-shadow: 0 0 15px rgba(251, 255, 0, 0.1), inset 0 0 20px rgba(251, 255, 0, 0.05);
}

.door-price {
    border-color: rgba(251, 255, 0, 0.4);
    box-shadow: 0 0 15px rgba(251, 255, 0, 0.1), inset 0 0 20px rgba(251, 255, 0, 0.05);
}

.price-label {
    font-family: var(--font-lineup);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    color: #bcbcbc;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(251, 255, 0, 0.5), 0 0 20px rgba(251, 255, 0, 0.18), 0 0 32px rgba(251, 255, 0, 0.08);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
}

.ticket-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

.ticket-buttons .btn-primary {
    width: max-content;
    min-width: 236px;
    max-width: 100%;
    margin-inline: auto;
    height: 68px;
    padding: 0 2rem;
    font-size: clamp(1.55rem, 4.6vw, 2rem);
    letter-spacing: 0.03em;
}

/* 3D Sponsor Area */
.sponsor-intro {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-top: 1.6rem;
    margin-bottom: 0.35rem;
    color: var(--clr-accent);
    text-shadow: 0 0 15px rgba(251, 255, 0, 0.6), 0 0 30px rgba(251, 255, 0, 0.22);
}

.canvas-wrapper {
    width: 100%;
    height: 37vh;
    min-height: 350px;
    background-color: #111;
    border: 1px solid var(--clr-grey);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    will-change: auto;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    z-index: 10;
}

.canvas-wrapper canvas {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.canvas-wrapper .sponsor-bg-canvas,
.canvas-wrapper .sponsor-webgl-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.canvas-wrapper .sponsor-bg-canvas {
    z-index: 0;
    pointer-events: none;
}

.canvas-wrapper .sponsor-webgl-canvas {
    z-index: 2;
}

/* Subtle radial spotlight behind the 3D canvas to help metallic can pop */
.canvas-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 140%;
    background: radial-gradient(circle at 50% 40%, rgba(251, 255, 0, 0.045) 0%, rgba(20, 15, 10, 0.16) 22%, transparent 42%);
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

/* Riot Flow Phase 2 - typography cadence */
.cadence-shout .section-title {
    letter-spacing: 0.028em;
    line-height: 0.84;
}

.cadence-brief .section-title {
    font-size: clamp(2.4rem, 5.6vw, 4.6rem);
    letter-spacing: 0.04em;
    line-height: 0.93;
    margin-bottom: 0.8rem;
}

.cadence-brief p {
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
}

.tickets.cadence-shout .section-title,
.lineup.cadence-shout .section-title {
    font-size: clamp(4rem, 10vw, 8rem);
}

.sponsor-3d.cadence-brief .sponsor-intro {
    font-size: clamp(1.6rem, 3.6vw, 2.6rem);
    letter-spacing: 0.12em;
}

/* The new Roster Panel Container */
.roster-panel {
    background-color: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--clr-accent);
    padding: 1.72rem 0.78rem 1.54rem;
    position: relative;
    border-radius: 4px;
    margin-top: 1rem;
    box-shadow: 0 0 26px rgba(251, 255, 0, 0.12), inset 0 0 14px rgba(251, 255, 0, 0.035);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.roster-title {
    font-family: var(--font-lineup);
    font-size: clamp(3rem, 7.4vw, 5.1rem);
    color: var(--clr-accent);
    text-shadow:
        0 0 10px rgba(251, 255, 0, 0.52),
        0 0 22px rgba(251, 255, 0, 0.2),
        0 0 34px rgba(251, 255, 0, 0.08);
    margin-bottom: 1.32rem;
    letter-spacing: 0.06em;
    position: relative;
    display: inline-block;
}

.lineup-dense {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    justify-content: center;
    align-items: center;
    font-family: var(--font-lineup);
    font-size: clamp(1.72rem, 5vw, 3.28rem);
    line-height: 1;
    letter-spacing: 0.02em;
}

.lineup-roster .diamond-separator {
    margin: 0 0.05em;
    /* Tightened spacing around the diamond */
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--clr-accent);
    text-shadow: 0 0 6px rgba(251, 255, 0, 0.6), 0 0 12px rgba(251, 255, 0, 0.3);
    vertical-align: middle;
    display: inline-block;
    transform: translateY(-2px);
    /* Optically center the diamond */
}

/* Guest Grid Layout Container */
.special-guests-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.15rem 2rem;
    margin-top: 1.6rem;
    padding-top: 0.95rem;
}

.guest-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

/* Downscale the guest fonts so they fit nicely */
.guest-glow {
    font-family: var(--font-lineup);
    font-size: clamp(2.22rem, 5.6vw, 3.58rem);
    display: block;
    margin-bottom: 0.2rem;
    letter-spacing: 0.02em;
    text-shadow:
        0 0 10px rgba(251, 255, 0, 0.52),
        0 0 22px rgba(251, 255, 0, 0.2),
        0 0 34px rgba(251, 255, 0, 0.08);
}

.host-block {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--font-lineup);
    margin-top: 0.3rem;
    /* Force host to new line on very tight mobile, or sit inline on wide */
    flex-basis: 100%;
    justify-content: center;
}

.guest-subtitle-tiny {
    font-family: var(--font-lineup);
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    line-height: 1.02;
    color: #bcbcbc;
    text-transform: uppercase;
    text-shadow: none;
}

.guest-block .guest-subtitle-tiny+.guest-subtitle-tiny {
    margin-top: 0.12rem;
}

.lineup-dense .artist-item {
    transition: opacity 180ms ease, transform 180ms ease;
    opacity: 1;
    white-space: nowrap;
    text-shadow:
        0 0 10px rgba(251, 255, 0, 0.5),
        0 0 20px rgba(251, 255, 0, 0.18),
        0 0 32px rgba(251, 255, 0, 0.08);
}

/* Roster replacement for huge lineups */
.lineup-roster {
    font-family: var(--font-lineup);
    font-size: clamp(1.58rem, 4.55vw, 2.45rem);
    line-height: 1.12;
    color: var(--clr-text);
}

.lineup-roster small {
    font-family: var(--font-body);
    font-size: 0.55em;
    letter-spacing: 1px;
    color: #bbb;
}

.lineup-roster .artist-item {
    display: inline-block;
}

.lineup-roster .artist-row {
    margin-bottom: 0.5rem;
}




/* Group hover: dim all, but highlight hovered artist (desktop only) */
.lineup-dense:hover .artist-item {
    opacity: 0.3;
}

.lineup-dense .artist-item:hover {
    opacity: 1;
    text-shadow: 0 0 12px rgba(251, 255, 0, 0.35);
    transform: translateY(-2px);
}

/* Mobile lineup: keep a stable glow and avoid sticky hover/active state toggles */
@media (hover: none), (pointer: coarse) {

    .lineup-dense:hover .artist-item,
    .lineup-dense .artist-item:hover,
    .lineup-dense .artist-item:active {
        opacity: 1;
        text-shadow: 0 0 10px rgba(251, 255, 0, 0.38);
        transform: none;
        background: transparent;
        border-radius: 0;
        transition: none;
    }
}

/* Special Guest Styling */
.glow-green-text {
    color: #cbff65;
    /* Neon green-yellow characteristic of 'ALITOS LOKOS' */
    text-shadow: 0 0 15px rgba(203, 255, 101, 0.6), 0 0 30px rgba(203, 255, 101, 0.3);
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 2px;
}

.lineup .glow-yellow-text {
    text-shadow:
        0 0 10px rgba(251, 255, 0, 0.5),
        0 0 20px rgba(251, 255, 0, 0.18),
        0 0 32px rgba(251, 255, 0, 0.08);
}

.glow-yellow-text {
    color: #fbff00;
    /* Neon yellow for 'DJ COMBO + DJ FENDER' */
    text-shadow: 0 0 15px rgba(251, 255, 0, 0.6), 0 0 30px rgba(251, 255, 0, 0.3);
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 1px;
}

/* Footer */
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.9rem;
    padding-top: clamp(1.25rem, 3.5vw, 1.75rem);
    padding-bottom: clamp(1rem, 3vw, 1.45rem);
}

.site-footer .container.flex-footer {
    flex: 1 1 520px;
    max-width: none;
    margin: 0;
}

.flex-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 0;
    width: 100%;
}

.footer-brand p {
    font-size: 0.98rem;
    color: var(--clr-footer-gold);
    max-width: none;
    margin: 0;
    line-height: 1.15;
}


.footer-socials {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    transition: background 0.18s, color 0.18s, filter 0.18s;
    padding: 0;
}

.footer-socials a.neon-icon {
    color: var(--clr-footer-gold);
    filter: drop-shadow(0 0 6px rgba(199, 179, 39, 0.28));
}

.footer-socials a.neon-icon:hover,
.footer-socials a.neon-icon:active {
    color: var(--clr-footer-gold-bright);
    filter: drop-shadow(0 0 10px rgba(226, 213, 58, 0.38));
    background: rgba(199, 179, 39, 0.12);
}

.footer-socials a:active {
    background: rgba(199, 179, 39, 0.12);
}

.footer-socials svg {
    width: 26px;
    height: 26px;
    display: block;
}

.footer-icon-badge {
    width: 26px;
    height: 26px;
    filter: invert(72%) sepia(35%) saturate(609%) hue-rotate(10deg) brightness(93%) contrast(92%);
    object-fit: contain;
    transition: filter 0.18s;
}

.footer-socials a.neon-icon:hover .footer-icon-badge,
.footer-socials a.neon-icon:active .footer-icon-badge {
    filter: invert(82%) sepia(40%) saturate(934%) hue-rotate(9deg) brightness(101%) contrast(96%) drop-shadow(0 0 10px rgba(226, 213, 58, 0.35));
}

/* Riot Flow Phase 3 - Finale Seal */
.wow-finale {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.site-footer.wow-finale.section-motif-pulse::after {
    display: none;
}

.wow-finale>* {
    position: relative;
    z-index: 1;
}

.wow-finale::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.14) 28%, transparent 78%),
        radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1.5px);
    background-size: 100% 100%, 12px 12px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.wow-finale::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    top: 0;
    height: calc(3px + (var(--finale-seal-strength) * 0.8));
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(251, 255, 0, calc(0.7 + (var(--finale-seal-strength) * 0.22))) 50%,
            transparent 100%);
    opacity: 0.18;
    box-shadow:
        0 0 14px rgba(210, 219, 91, 0.34),
        0 0 26px rgba(210, 219, 91, 0.18);
    pointer-events: none;
    z-index: 0;
}

.wow-finale.is-finale-active {
    box-shadow: inset 0 22px 28px rgba(0, 0, 0, 0.32);
}

.wow-finale.is-finale-active::after {
    animation: finaleSealLine calc(var(--finale-seal-motion-duration) * 1.8) ease-out 1;
    opacity: 0.96;
}

/* Interactive 3D Glow / Phase 2 Preparations */
.sponsor-3d.active-glow {
    box-shadow: 0 0 30px rgba(210, 219, 91, 0.4);
}

/* Schedule Ticker */
.ticker-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    background: #000000;
    padding: 0.55rem 0;
    margin: 0;
    border-top: 3px solid var(--clr-accent);
    border-bottom: 3px solid var(--clr-accent);
    display: flex;
    box-shadow: none;
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 8s linear infinite;
    will-change: transform;
    text-shadow: 0 0 8px rgba(251, 255, 0, 0.6);
}

.ticker-track .massive-text {
    color: var(--clr-accent);
    margin: 0;
    line-height: 1;
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.ticker-dot {
    color: var(--clr-accent);
    margin: 0 0.6rem;
    font-size: clamp(1rem, 3vw, 2rem);
    opacity: 0.95;
    display: inline-block;
}

.schedule .ticker-dot {
    color: var(--clr-accent);
}

.schedule {
    box-shadow: none;
}

.schedule::before,
.schedule.section-motif-pulse::after {
    display: none;
}

@keyframes ticker-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }

    /* Assuming content is duplicated to be exactly 200% width */
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.wow-finale.is-finale-active .footer-socials a {
    color: var(--clr-footer-gold-bright);
    text-shadow: none;
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .section-motif-pulse::after,
    .section-motif-haze::before {
        animation: none !important;
        transform: none !important;
    }

    .bridge-light::before,
    .bridge-light::after,
    .bridge-medium::before,
    .bridge-medium::after,
    .bridge-bold::before,
    .bridge-bold::after,
    .wow-finale::before,
    .wow-finale::after {
        animation: none !important;
    }

    .top-banner {
        transition: none !important;
    }

    .wow-finale.is-finale-active {
        box-shadow: inset 0 16px 22px rgba(0, 0, 0, 0.28);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .noise-overlay {
        display: none;
    }

    :root {
        --hero-sponsor-logo-scale: 1.45;
        --sticky-banner-height: 44px;
        --finale-seal-strength: 0.82;
        --finale-seal-glow-opacity: 0.2;
        --finale-seal-motion-duration: 0.76s;
        --finale-seal-density: 0.72;
        --hero-lineup-zone-height: clamp(18px, 2vw, 24px);
        --hero-lineup-zone-glow-opacity: 0.08;
        --hero-lineup-zone-beam-opacity: 0.62;
        --lineup-stagger-step: 0.026;
        --reveal-blur-strength: 0;
    }

    /* Disable custom cursor on mobile */
    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .rhythm-tight {
        --section-space: calc(var(--rhythm-tight) * 0.6);
    }

    .rhythm-standard {
        --section-space: calc(var(--rhythm-standard) * 0.5);
    }

    .rhythm-spacious {
        --section-space: calc(var(--rhythm-spacious) * 0.45);
    }

    /* Reduce hero padding to pull the logo block higher on mobile */
    .hero {
        padding-top: 100px;
    }

    .sponsor-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-presented-logo {
        width: 65px;
        margin-top: -2.0rem;
        margin-bottom: 0.5rem;
    }

    .btn-primary.gsap-reveal.magnetic-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-top: 0.1rem;
        margin-bottom: 0.1rem;
    }

    .tape-track {
        text-shadow: none;
    }

    .btn-primary,
    .btn-outline,
    .btn-neon-ghost {
        transition: background-color 0.18s ease, color 0.18s ease;
    }

    .btn-primary:active {
        background-color: #dfe800;
        box-shadow: 0 0 16px rgba(180, 255, 0, 0.45);
        transform: none;
        transition: none;
    }

    /* Removed destructive rhythm constraints */

    /* Reduce section separator height for mobile */
    .section-separator {
        height: 4px;
        margin: 0;
    }

    /* Reduce top margin for section titles */
    .section-title {
        margin-top: 0.1rem !important;
    }

    /* Remove extra margin from sponsor-3d section */
    .sponsor-3d {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0.7rem;
        padding-bottom: 0.8rem;
    }

    .sponsor-3d .banner-margin {
        margin-top: 0.8rem;
        margin-bottom: 0.45rem;
    }

    .lineup {
        padding-top: 0.95rem;
    }

    #lineup .roster-title,
    #lineup .special-guests-grid,
    #lineup .lineup-dense .artist-item,
    #lineup .lineup-dense .ticker-dot,
    .gallery-photo {
        will-change: auto;
    }

    .roster-panel {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background-color: rgba(10, 10, 10, 0.94);
    }

    .schedule::before,
    .section-motif-pulse::after,
    .section-motif-haze::before {
        animation: none;
    }

    .schedule.section-motif-pulse::after,
    .tickets.section-motif-pulse::after {
        display: none;
    }

    .section-motif-haze::before {
        filter: none;
        transform: none;
        opacity: 0.2;
    }



    .sponsor-logo {
        max-width: 85vw;
        width: 85vw;
        margin-bottom: 0.2rem;
    }

    .hero-content .btn-primary.gsap-reveal.magnetic-btn {
        font-family: var(--font-lineup);
        font-size: 1.45rem;
        line-height: 1;
        height: auto;
        padding: 0.83em 1.45rem 0.52em;
        width: max-content;
        max-width: 90vw;
        margin-left: auto;
        margin-right: auto;
        margin-top: -35px;
        /* Pull the button up aggressively */
        margin-bottom: 1.2rem;
    }

    .top-banner {
        padding: 0.32rem 0.45rem;
    }

    .top-banner-label,
    .top-banner-meta {
        font-size: 0.82rem;
        /* Reduced slightly to prevent clipping */
    }

    .top-banner-meta {
        display: block;
        margin-top: 0.2rem;
        color: var(--clr-accent);
    }

    .top-banner-logo {
        width: clamp(140px, 45vw, 220px);
        /* Shrunk logo slightly to give text room */
    }

    .hero-logo {
        transform: translateX(-3.5px) scale(0.95);
        /* perfectly center misaligned graphic */
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .flex-footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
    }

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

    .footer-socials {
        align-self: center;
        justify-content: center;
        gap: 0.7rem;
    }

    .footer-socials a,
    .footer-icon-badge {
        transition: background 0.18s, color 0.18s;
    }

    .site-footer {
        flex-direction: column;
        align-items: center;
        gap: 0.55rem;
        padding-top: 0.95rem;
        padding-bottom: 0.85rem;
    }

    .site-footer .container.flex-footer {
        flex: 0 1 auto;
    }

    .wow-finale::before,
    .wow-finale::after {
        animation: none;
    }

    .wow-finale.is-finale-active {
        box-shadow: inset 0 12px 18px rgba(0, 0, 0, 0.22);
    }

    .ticket-buttons {
        flex-direction: column;
    }

    .ticket-buttons .btn-primary {
        font-size: 1.42rem;
        height: 64px;
        width: max-content;
        min-width: 220px;
        max-width: calc(100vw - 2.5rem);
        padding: 0 1.6rem;
        letter-spacing: 0.03em;
    }

    .canvas-wrapper {
        height: 36vh;
        min-height: 280px;
    }

}

/* Extra small screens */
@media (max-width: 480px) {

    .btn-primary,
    .btn-outline {
        font-size: 1.25rem;
        padding: 0.875rem 1.5rem;
    }

    #tickets .section-title {
        margin-top: 2rem !important;
    }

    .gallery-grid {
        padding-bottom: 0.9rem;
    }

    .hero-content .btn-primary {
        font-size: 1.4rem;
        height: auto;
        padding: 0.83em 1.45rem 0.52em;
    }

    .ticket-buttons .btn-primary {
        font-size: 1.36rem;
        height: 62px;
        min-width: 220px;
        max-width: calc(100vw - 2rem);
        padding-inline: 1.4rem;
    }
}

.guest-label {
    font-family: var(--font-lineup);
    font-weight: 400;
    color: #bcbcbc;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.guest-artist {
    font-family: var(--font-lineup);
    font-weight: 400;
    color: var(--clr-accent);
    text-shadow: 0 0 10px rgba(251, 255, 0, 0.4);
    letter-spacing: 0.02em;
}

.gallery {
    margin-top: 0;
    padding-bottom: calc(var(--section-space, var(--rhythm-standard)) - 1rem);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 0.8rem;
}

.gallery-grid picture {
    display: block;
}

.gallery-photo {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    transition: transform 0.18s, box-shadow 0.18s;
    will-change: transform, opacity;
}

.gallery-photo:active {
    transform: scale(0.97) rotate(-1deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .gallery-photo {
        aspect-ratio: auto;
        height: auto;
        object-fit: contain;
    }
}

.footer-credit {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #555;
    text-align: center;
    margin-top: 0.25rem;
}

.footer-credit a {
    color: var(--clr-footer-gold);
    text-decoration: none;
    text-shadow: 0 0 6px rgba(199, 179, 39, 0.28);
}

.footer-credit a:hover,
.footer-credit a:active {
    color: var(--clr-footer-gold-bright);
    text-shadow: 0 0 10px rgba(226, 213, 58, 0.38);
}

/* Thin out ITINERARIO GENERAL banner */
.schedule.bg-high-contrast {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.schedule .container {
    padding: 0;
}

.schedule .section-title,
.schedule .massive-text {
    padding: 0.5rem 0;
}

.schedule {
    min-height: unset;
}

.schedule .venue-status {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-top: 1rem;
}

/* Section separators */
.section-separator {
    width: 100%;
    height: clamp(18px, 2.4vw, 30px);
    margin: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.03) 48%, transparent 100%);
}

.bridge-light::before {
    content: '';
    position: absolute;
    left: -25%;
    top: 50%;
    width: 150%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent 0%, var(--bridge-line) 50%, transparent 100%);
    opacity: 0.3;
}

.bridge-light::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 70% at 50% 50%, var(--bridge-glow) 0%, transparent 75%);
    opacity: 0.22;
}

.bridge-medium {
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
}

.bridge-medium::before {
    content: '';
    position: absolute;
    left: -30%;
    top: 50%;
    width: 160%;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent 0%, rgba(251, 255, 0, 0.62) 52%, transparent 100%);
    opacity: 0.44;
}

.bridge-medium::after {
    content: '';
    position: absolute;
    inset: 2px 0;
    background:
        radial-gradient(120% 100% at 50% 50%, rgba(251, 255, 0, 0.15) 0%, transparent 74%),
        radial-gradient(circle, rgba(251, 255, 0, 0.22) 1px, transparent 1.5px);
    background-size: 100% 100%, 14px 14px;
    opacity: 0.22;
}

.bridge-bold {
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 255, 255, calc(0.05 + 0.09 * var(--finale-seal-strength))) 52%,
            transparent 100%);
}

.bridge-bold::before {
    content: '';
    position: absolute;
    left: -34%;
    top: 50%;
    width: 168%;
    height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(251, 255, 0, calc(0.56 + 0.3 * var(--finale-seal-strength))) 50%,
            transparent 100%);
    opacity: 0.66;
    filter: drop-shadow(0 0 18px rgba(210, 219, 91, 0.36));
}

.bridge-bold::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 120% at 50% 50%, rgba(251, 255, 0, calc(var(--finale-seal-glow-opacity) * 0.95)) 0%, transparent 72%),
        radial-gradient(circle, rgba(251, 255, 0, 0.24) 1px, transparent 1.8px);
    background-size: 100% 100%, calc(10px / var(--finale-seal-density)) calc(10px / var(--finale-seal-density));
    opacity: 0.32;
}

.bridge-light.is-active::before {
    animation: bridgeLightSweep 0.7s ease-out;
}

.bridge-light.is-active::after {
    animation: bridgeLightBloom 0.7s ease-out;
}

.bridge-medium.is-active::before {
    animation: bridgeMediumSweep 0.95s ease-out;
}

.bridge-medium.is-active::after {
    animation: bridgeMediumDissolve 0.95s ease-out;
}

.bridge-bold.is-active::before {
    animation: bridgeBoldStamp var(--finale-seal-motion-duration) cubic-bezier(0.22, 0.72, 0.27, 1);
}

.bridge-bold.is-active::after {
    animation: bridgeBoldField var(--finale-seal-motion-duration) cubic-bezier(0.22, 0.72, 0.27, 1);
}

@keyframes heroLineupCorridorSweep {
    0% {
        transform: translate(-36%, -50%);
        opacity: 0;
    }

    44% {
        opacity: var(--hero-lineup-zone-beam-opacity);
    }

    100% {
        transform: translate(24%, -50%);
        opacity: 0.12;
    }
}

@keyframes bridgeLightSweep {
    0% {
        transform: translate(-18%, -50%);
        opacity: 0;
    }

    45% {
        opacity: 0.6;
    }

    100% {
        transform: translate(18%, -50%);
        opacity: 0.18;
    }
}

@keyframes bridgeLightBloom {
    0% {
        opacity: 0.06;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.14;
    }
}

@keyframes bridgeMediumSweep {
    0% {
        transform: translate(-24%, -50%);
        opacity: 0;
    }

    45% {
        opacity: 0.8;
    }

    100% {
        transform: translate(20%, -50%);
        opacity: 0.24;
    }
}

@keyframes bridgeMediumDissolve {
    0% {
        opacity: 0.08;
        background-size: 100% 100%, 14px 14px;
    }

    55% {
        opacity: 0.34;
        background-size: 100% 100%, 11px 11px;
    }

    100% {
        opacity: 0.16;
        background-size: 100% 100%, 14px 14px;
    }
}

@keyframes bridgeBoldStamp {
    0% {
        transform: translate(-28%, -50%) scaleX(0.88);
        opacity: 0;
    }

    52% {
        opacity: 0.92;
    }

    100% {
        transform: translate(24%, -50%) scaleX(1);
        opacity: 0.3;
    }
}

@keyframes bridgeBoldField {
    0% {
        opacity: 0.08;
        background-size: 100% 100%, calc(12px / var(--finale-seal-density)) calc(12px / var(--finale-seal-density));
    }

    56% {
        opacity: 0.44;
        background-size: 100% 100%, calc(8px / var(--finale-seal-density)) calc(8px / var(--finale-seal-density));
    }

    100% {
        opacity: 0.2;
        background-size: 100% 100%, calc(10px / var(--finale-seal-density)) calc(10px / var(--finale-seal-density));
    }
}

@keyframes scheduleTextureDrift {
    0% {
        background-position: 0 0, -24% 0;
    }

    100% {
        background-position: 180px 0, 124% 0;
    }
}

@keyframes motifPulseSweep {
    0% {
        transform: translateX(-12%);
        opacity: 0.2;
    }

    50% {
        transform: translateX(6%);
        opacity: 0.42;
    }

    100% {
        transform: translateX(-12%);
        opacity: 0.2;
    }
}

@keyframes motifHazeDrift {
    0% {
        transform: translate3d(-1%, -1.5%, 0);
        opacity: 0.45;
    }

    50% {
        transform: translate3d(1.8%, 1%, 0);
        opacity: 0.58;
    }

    100% {
        transform: translate3d(-1%, -1.5%, 0);
        opacity: 0.45;
    }
}

@keyframes finaleSealBreath {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: calc(0.12 + (var(--finale-seal-glow-opacity) * 0.48));
    }

    50% {
        transform: translate3d(0, 0.6%, 0);
        opacity: calc(0.2 + (var(--finale-seal-glow-opacity) * 0.68));
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: calc(0.12 + (var(--finale-seal-glow-opacity) * 0.48));
    }
}

@keyframes finaleSealLine {
    0% {
        transform: translateX(-1.2%);
        opacity: 0.2;
    }

    50% {
        transform: translateX(1.2%);
        opacity: 0.42;
    }

    100% {
        transform: translateX(-1.2%);
        opacity: 0.2;
    }
}

@media (min-width: 769px) {
    main.smooth-scroll-wrapper>section.hero {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    }

    .section-separator.bridge-bold {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--sticky-banner-height) + 4rem);
        padding-bottom: 2rem !important;
    }

    .hero-content {
        width: 100%;
        gap: 1rem;
    }

    .hero-content .btn-primary {
        margin-bottom: 1.5rem;
    }

    .hero-logo {
        width: 100%;
        max-width: 100%;
    }

    .hero-bg-parallax {
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
    }

    .roster-panel {
        overflow: hidden;
    }

    .roster-title {
        font-size: clamp(2.6rem, 3vw, 4rem);
    }

    .lineup-dense {
        font-size: clamp(1.45rem, 2.4vw, 2.25rem);
        text-align: center;
        align-items: center;
    }

    .lineup-dense .artist-item.glow-yellow-text {
        font-size: clamp(1.45rem, 2.4vw, 2.25rem);
        letter-spacing: 0.02em;
    }

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

    .gallery-photo {
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .guest-glow {
        font-size: clamp(1.8rem, 2.8vw, 2.7rem);
    }

    .site-footer {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .site-footer .container.flex-footer {
        max-width: 480px;
        margin: 0 auto;
        flex: 0 1 auto;
    }

    .flex-footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.45rem;
    }

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

    .footer-socials {
        justify-content: center;
        align-self: center;
    }
}

/* Desktop behavior by input capability (covers narrow desktop windows) */
@media (hover: hover) and (pointer: fine) {
    .section-separator.bridge-bold {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .lineup-dense {
        text-align: center;
        align-items: center;
    }

    .lineup-dense .artist-item.glow-yellow-text {
        font-size: clamp(1.45rem, 2.4vw, 2.25rem);
        letter-spacing: 0.02em;
    }

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

    .gallery-photo {
        aspect-ratio: auto;
        height: auto;
        object-fit: contain;
    }
}
