/* ==========================================================================
   DJ OSI | MAXIMUM MINIMAL & FLOW MINIMAL DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-muted: #888888;
    --border-light: rgba(255, 255, 255, 0.05);
    --border-medium: rgba(255, 255, 255, 0.15);
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Cinzel', serif;
}

/* GPU Hardware Acceleration for Overlays */
.hero-text-overlay,
.hero-videos-overlay,
.hero-credits-overlay,
.hero-player-overlay,
.hero-gallery-overlay,
.hero-contact-overlay,
.hero-socials-overlay {
    will-change: opacity, transform;
}


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


html {
    /* scroll-behavior: smooth entfernt — kollidierte mit dem rAF-Scrolling (goToPhase)
       und dem Lerp-Layer; eine einzige Quelle für weiche Bewegung. */
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-y: scroll;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    overflow-x: hidden;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    /* Height is determined naturally by spacer and player elements to avoid over-scrolling */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Completely Hide Browser Scrollbar for a native immersive app experience */
html,
body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Global Subtle TV Grain Layer */
.tv-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
    opacity: 0.002;
    /* Extremely low opacity to render nearly invisible */
    /* Extremely subtle organic grain texture (microscopic base frequency and 1 octave) */
    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.99' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Floating WhatsApp Badge */
.wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-float:hover {
    border-color: #fff;
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.05);
}

/* Structural Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

/* Editorial Chapter Spacing (Massive Landing Page Flow) */
.editorial-container {
    max-width: 800px;
    /* Slimmer for compact app feel */
    margin: 80vh auto 0 auto;
    /* Start a bit higher so the first card peeks in */
    padding: 0 20px 150px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    /* Scrolls over the fixed hero */
}

/* Entire chapter becomes the Glass Card */
.chapter {
    width: 100%;
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 20px;
    /* Tightly stacked like the mockup */
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.chapter:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Trigger is now just a header row inside the card */
.chapter-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    margin-bottom: 35px;
    /* Spacing below title */
    font-family: var(--font-sans);
}

.chapter-num {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 2px;
    min-width: 60px;
    /* Perfectly aligns with content */
    font-feature-settings: "tnum" on, "lnum" on;
}

.chapter-title {
    font-size: 1.8rem;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
}

/* Content Container */
.chapter-content {
    opacity: 1;
    padding-left: 0;
    /* Flush with the card padding */
}

/* ==========================================================================
   1. HERO SECTION & CONTRAST GLOW
   ========================================================================== */
.hero {
    position: fixed;
    /* Video is now locked in place */
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
    /* Show poster instantly while video buffers - eliminates black flash */
    background-image: url('../assets/xa.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Fade overlay at top - DISABLED */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: transparent;
    z-index: 4;
    pointer-events: none;
}

/* Fade to black at bottom of hero - DISABLED */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: transparent;
    z-index: 3;
    pointer-events: none;
}

/* Pushes all content below the fixed hero so scroll reveals the player section */
.hero-spacer {
    height: 1200px;
    display: block;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: calc(100% + 200px);
    object-fit: cover;
    /* Prevents zoomed-in cropping on portrait layouts */
    object-position: center top;
    /* Keeps the DJ's head aligned nicely if there is vertical space */
    transform: scale(1.0);
    transform-origin: center top;
}
    background: #000;
}

.hero-pixel-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Directly above video, below dark overlay (3) */
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.8) 50%,
            transparent 50%);
    background-size: 100% 4px;
    /* Clean horizontal pixel pattern */
    opacity: 0.8;
    animation: rollScanlines 20s linear infinite;
    transition: opacity 0.8s ease, background-size 0.8s ease;
}

.hero-pixel-filter.at-end {
    opacity: 0.95 !important;
    background-size: 100% 2px !important;
}

.hero-pixel-filter::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.2) 20%,
            rgba(0, 0, 0, 0.35) 25%,
            rgba(0, 0, 0, 0.2) 30%,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0) 100%);
    background-size: 100% 200%;
    /* Vertical height for rolling sync bar */
    animation: tvRoll 8s linear infinite;
    pointer-events: none;
}

@keyframes rollScanlines {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 300px;
    }
}

@keyframes tvRoll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 200%;
    }
}

.end-video {
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    /* Sits directly on top of the base video */
    transition: opacity 0.4s ease;
}

.lastofus-img {
    position: absolute;
    top: -200px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 4;
    /* Sits on top of the darken overlay (3) to show up at the blackout phase */
    transition: opacity 0.5s ease, filter 0.8s ease;
    object-fit: contain !important;
    object-position: center top !important;
    width: 100% !important;
    height: calc(100% + 200px) !important;
    transform: scale(1.30);
    /* Match hero-video scale exactly */
    transform-origin: center top;
}

.lastofus-img.flicker-active {
    animation: glitchLastOfUs 0.9s infinite !important;
}

.hero-video.flicker-active {
    animation: glitchHero 0.9s infinite !important;
}

.lastofus-img.static-active {
    opacity: 1 !important;
    filter: brightness(1.0) !important;
    animation: slowZoomIn 20s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    transition: filter 3s ease !important;
}

.lastofus-img.static-active.at-end {
    filter: brightness(0.5) !important;
    transition: filter 4s ease !important;
}

@keyframes slowZoomIn {
    from {
        transform: scale(1.30);
        transform-origin: center top;
    }

    to {
        transform: scale(1.30);
        /* Keep it static to perfectly match the video */
        transform-origin: center top;
    }
}

@keyframes glitchHero {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

@keyframes glitchLastOfUs {
    0%, 49% {
        opacity: 0;
    }
    50%, 100% {
        opacity: 1;
    }
}

@keyframes imageGlitchFlicker {

    0%,
    9%,
    11%,
    19%,
    21%,
    69%,
    71%,
    100% {
        opacity: 0;
    }

    10% {
        opacity: 0.35;
    }

    20% {
        opacity: 0.45;
    }

    70% {
        opacity: 0.4;
    }
}

.end-video.flicker-active {
    animation: videoFlicker 0.8s infinite;
}

@keyframes videoFlicker {
    0% {
        opacity: 0;
    }

    3% {
        opacity: 0.85;
    }

    6% {
        opacity: 0;
    }

    7% {
        opacity: 0;
    }

    9% {
        opacity: 0.95;
    }

    11% {
        opacity: 0.1;
    }

    15% {
        opacity: 0.8;
    }

    16% {
        opacity: 0;
    }

    22% {
        opacity: 0.9;
    }

    25% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    32% {
        opacity: 0.85;
    }

    34% {
        opacity: 0.15;
    }

    38% {
        opacity: 0;
    }

    45% {
        opacity: 0.9;
    }

    47% {
        opacity: 0.05;
    }

    50% {
        opacity: 0;
    }

    54% {
        opacity: 0.8;
    }

    56% {
        opacity: 0.1;
    }

    60% {
        opacity: 0.95;
    }

    62% {
        opacity: 0;
    }

    70% {
        opacity: 0;
    }

    73% {
        opacity: 0.85;
    }

    75% {
        opacity: 0.05;
    }

    79% {
        opacity: 0.9;
    }

    81% {
        opacity: 0;
    }

    88% {
        opacity: 0;
    }

    91% {
        opacity: 0.85;
    }

    93% {
        opacity: 0.1;
    }

    96% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}

/* Hide default iOS play button on mobile */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

.hero-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Always above blur effect */
    pointer-events: auto;
    filter: none;
    /* No blur effect on logo */
    transition: opacity 0.3s ease;
}

.glitch-image-wrapper {
    position: relative;
    max-width: 120px;
    width: 20%;
    min-width: 50px;
    display: inline-block;
    flex-shrink: 0;
    cursor: pointer;
}

.hero-logo-base {
    width: 100%;
    height: auto;
    /* Cool neutral white logo */
    filter: brightness(1.1) contrast(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 16px rgba(200, 220, 255, 0.3));
    image-rendering: auto;
    animation: none;
}

.hero-logo-layer {
    display: none;
    /* Deactivate glitch offset layers for clean editorial aesthetic */
}


/* Horizontal Slices for Red */
@keyframes glitch-slice-red {

    0%,
    35% {
        opacity: 0;
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }

    35.1% {
        opacity: 1;
        clip-path: inset(10% 0 60% 0);
        transform: translate(-8px, 0);
    }

    35.5% {
        opacity: 1;
        clip-path: inset(40% 0 20% 0);
        transform: translate(8px, 0);
    }

    36.0% {
        opacity: 1;
        clip-path: inset(80% 0 5% 0);
        transform: translate(-12px, 0);
    }

    36.5% {
        opacity: 1;
        clip-path: inset(20% 0 50% 0);
        transform: translate(12px, 0);
    }

    37.0%,
    100% {
        opacity: 0;
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
}

/* Horizontal Slices for Cyan */
@keyframes glitch-slice-cyan {

    0%,
    35% {
        opacity: 0;
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }

    35.1% {
        opacity: 1;
        clip-path: inset(20% 0 50% 0);
        transform: translate(8px, 0);
    }

    35.5% {
        opacity: 1;
        clip-path: inset(60% 0 10% 0);
        transform: translate(-8px, 0);
    }

    36.0% {
        opacity: 1;
        clip-path: inset(15% 0 70% 0);
        transform: translate(12px, 0);
    }

    36.5% {
        opacity: 1;
        clip-path: inset(50% 0 30% 0);
        transform: translate(-12px, 0);
    }

    37.0%,
    100% {
        opacity: 0;
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
}

.hero-darken-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    z-index: 3;
    /* sits between video (1/2) and overlays */
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Permanent black gradient fade at the bottom of the hero */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    /* Covers the bottom part */
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 4;
    /* Above the video and darken overlay, below the text overlay */
    pointer-events: none;
}

.hero-top-green-fade.flicker-active {
    animation: greenFlicker 1.1s infinite;
}

@keyframes greenFlicker {

    0%,
    18%,
    22%,
    50%,
    54%,
    78%,
    82%,
    100% {
        opacity: 0.85;
    }

    20%,
    52%,
    80% {
        opacity: 0.1;
    }

    19%,
    51%,
    79% {
        opacity: 0.5;
    }
}

.hero-top-green-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: linear-gradient(to bottom,
            rgba(0, 255, 90, 0.78) 0%,
            rgba(0, 255, 90, 0.48) 45%,
            rgba(0, 255, 90, 0.22) 75%,
            transparent 100%);
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-bright-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 240, 0.6) 60%, transparent 100%);
    z-index: 6;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-overlay-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.35) 20%,
            rgba(0, 0, 0, 0) 45%,
            rgba(0, 0, 0, 0) 55%,
            rgba(0, 0, 0, 0.4) 80%,
            rgba(0, 0, 0, 1.0) 100%);
}


/* ==========================================================================
   2. EVENTS LIST (FLOW MINIMAL)
   ========================================================================== */
.events-container {
    width: 100%;
}

.events-grid {
    display: flex;
    flex-direction: column;
}

.event-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 10px;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.event-row:hover {
    transform: translateX(15px);
    /* Flow minimal subtle horizontal slide */
    border-bottom-color: var(--border-medium);
}

.event-date {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-muted);
    min-width: 120px;
}

.event-loc {
    flex-grow: 1;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: lowercase;
    color: #fff;
}

.event-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: lowercase;
    padding: 4px 10px;
    border: 1px solid var(--border-light);
    border-radius: 2px;
    color: #fff;
    transition: border-color 0.5s ease;
}

.event-row:hover .event-tag {
    border-color: #fff;
}

.event-arrow {
    font-size: 1.1rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-12px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-row:hover .event-arrow {
    opacity: 1;
    color: #fff;
    transform: translateX(0);
}

/* ==========================================================================
   3. VISUALS GALLERY (EDITORIAL MINIMAL)
   ========================================================================== */
.uniform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    /* Generous print-editorial gaps */
}

.gallery-item {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.15) brightness(0.95);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: grayscale(100%) contrast(1.2) brightness(1.05);
}

/* ==========================================================================
   4. BESPOKE NATIVE AUDIO DECK (STRIPPED OF ALL CARDS)
   ========================================================================== */
.audio-player-deck {
    background: transparent !important;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    padding: 45px 10px;
    display: flex;
    align-items: center;
    gap: 35px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.player-btn-play {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.player-btn-play i {
    font-size: 0.95rem;
    margin-left: 3px;
    /* visual center for play arrow */
}

.player-btn-play:hover {
    border-color: #fff;
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.05);
}

.player-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.player-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-title {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.time-stamp {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.player-progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    cursor: pointer;
    transition: height 0.2s ease;
}

.player-progress-bar:hover {
    height: 3px;
}

.player-progress-fill {
    height: 100%;
    background: #fff;
    width: 0;
    position: relative;
}

/* Hide responsive knob for clean minimal look */
.player-progress-knob {
    display: none !important;
}

audio {
    display: none !important;
}

/* ==========================================================================
   5. BIO & TRUSTED REFEREENCES
   ========================================================================== */
.bio-text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 2.0;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
}

.references-container {
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid var(--border-light);
    padding-top: 60px;
}

.references-title {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: lowercase;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.reference-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   6. CONTACT, BOOKING & OUTLINED BUTTONS
   ========================================================================== */
.booking-section {
    text-align: center;
}

.booking-minimal-deck {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.booking-link-large {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding-bottom: 5px;
}

.booking-link-large::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-link-large:hover {
    color: rgba(255, 255, 255, 0.85);
}

.booking-link-large:hover::after {
    width: 100%;
}

.booking-divider {
    font-size: 1.3rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.15);
}

.epk-minimal-wrapper {
    margin-bottom: 75px;
}

.epk-minimal-btn {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.epk-minimal-btn:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.social-links-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
}

.social-links-minimal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links-minimal a:hover {
    color: #fff;
    transform: translateY(-1px);
}

/* ==========================================================================
   CINEMATIC FADE IN
   ========================================================================== */
.black-fade-in {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    pointer-events: none;
    animation: fadeToTransparent 0.4s ease-out forwards;
}

/* Smooth Gaussian blur gradient on scroll transitions */
.scroll-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 8888;
    pointer-events: none;
    opacity: 0;
    animation: smoothBlurGradient 0.8s ease-in-out forwards;
}

@keyframes smoothBlurGradient {
    0% {
        opacity: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    30% {
        opacity: 1;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    70% {
        opacity: 1;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    100% {
        opacity: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

@keyframes fadeToTransparent {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* ==========================================================================
   SCROLL SNAP POINTS
   ========================================================================== */
.scroll-snap-point {
    /* Snap deaktiviert — harte Stopps standen dem freien Scroll-Flow entgegen */
    height: 0;
    pointer-events: none;
}

/* ==========================================================================
   7. FOOTER - EXTREME BLACKOUT FADE
   ========================================================================== */
.footer-blackout {
    position: relative;
    width: 100%;
    padding: 140px 40px 180px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 55%, transparent 100%);
    text-align: center;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.footer-content {
    max-width: 400px;
    opacity: 0;
}

.footer-links {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.footer-copyright {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ==========================================================================
   7b. SCROLL REVEAL BIOGRAPHY SECTION
   ========================================================================== */
.hero-text-overlay {
    position: absolute;
    top: calc(45% + 50px);
    /* Lower third of screen */
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    /* Starts offset for gorgeous LERP entrance */
    width: 90%;
    max-width: 540px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;
    pointer-events: none;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.teleprompter-window {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bio-container {
    width: 100%;
    text-align: center;
    position: relative;
    height: auto;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(0);
}

.bio-container::before {
    display: none;
}

.bio-line {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    letter-spacing: 1.8px;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    white-space: normal;
    position: relative;
    width: 100%;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(0);
    display: none;
}

@keyframes textFlicker {

    0%,
    15%,
    19%,
    21%,
    63%,
    67%,
    100% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }

    17%,
    20%,
    65% {
        opacity: 0.2;
        text-shadow: none;
    }

    66% {
        opacity: 0.8;
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.15);
    }

    68% {
        opacity: 0.3;
        text-shadow: none;
    }
}

.bio-line:first-child {
    font-weight: 700;
    font-size: 1rem;
    display: block;
    opacity: 1;
    line-height: 1.3;
    white-space: nowrap;
    margin-top: 100px;
    animation: textFlicker 3.5s infinite ease-in-out;
}

.bio-line.prev {
    opacity: 0;
    transform: translateY(-15px);
}

.bio-line.next {
    opacity: 0;
    transform: translateY(15px);
}

/* ==========================================================================
   8. FLUID SCROLL REVEAL (FLOW MINIMAL EFFECT)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   8b. MUSIC PLAYER OVERLAY (INSIDE FIXED HERO)
   ========================================================================== */
.hero-player-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
}


/* Keyframes for the beautiful white bloom flash on activation */
@keyframes whiteFlashGlow {
    0% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0);
        border-color: rgba(255, 255, 255, 0.08);
        background: rgba(0, 0, 0, 0.25);
    }

    20% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.95);
        background: rgba(255, 255, 255, 0.12);
    }

    100% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0);
        border-color: rgba(255, 255, 255, 0.08);
        background: rgba(0, 0, 0, 0.25);
    }
}

/* The row: play button + song info */
.player-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    background: transparent;
    padding: 16px 36px;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    transition: border-color 0.4s ease, background 0.4s ease;
}

.player-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 30px;
}

.player-prev-btn,
.player-next-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.player-prev-btn:hover,
.player-next-btn:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.player-prev-btn svg,
.player-next-btn svg {
    width: 60%;
    height: 60%;
    fill: currentColor;
}

/* Flash in white when the player becomes active */
.hero-player-overlay.active .player-inner {
    animation: whiteFlashGlow 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Minimal circular play/pause button */
.player-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.player-play-btn:hover {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.95);
}

.player-play-btn svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.95);
    stroke: none;
}

/* Song info: title + artist stacked */
.player-song-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
    align-items: center;
}

.player-song-title {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
}

.player-song-artist {
    display: none;
}

.player-spotify-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    align-self: center;
}

.player-spotify-link:hover {
    color: #1DB954;
    transform: translateX(3px);
}

.player-spotify-link i {
    font-size: 0.85rem;
}

/* Tracklist for player */
.player-tracklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding: 0 36px;
    max-height: 150px;
    overflow-y: auto;
    opacity: 0.7;
    scrollbar-width: none;
    -ms-overflow-style: none;
    pointer-events: none;
    user-select: none;
}

.player-tracklist::-webkit-scrollbar {
    display: none;
}

.tracklist-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    padding: 6px 0;
    min-height: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tracklist-item:last-child {
    border-bottom: none;
}

/* Pulsing animation */
@keyframes playerPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.player-play-btn {
    animation: playerPulse 2s infinite;
}

/* ==========================================================================
   8c. CONTACT OVERLAY (INSIDE FIXED HERO)
   ========================================================================== */
.hero-contact-overlay {
    position: absolute;
    top: calc(45% + 50px);
    /* Centered vertically + 50px down */
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    /* Starts offset for gorgeous LERP entrance */
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
}


.contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: transparent;
    padding: 28px 44px;
    border-radius: 50px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
}

.contact-header {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.contact-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    text-align: center;
    margin: 12px auto 0 auto;
    max-width: 200px;
    line-height: 1.45;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.contact-subtitle:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Contact buttons container with carousel */
.contact-buttons {
    position: relative !important;
    height: auto !important;
    width: 100%;
    display: flex;
    flex-direction: column !important;
    align-items: center;
    gap: 15px;
}

.contact-buttons::-webkit-scrollbar {
    display: none;
}

/* Individual contact buttons - all visible, equal width */
.contact-btn {
    position: relative !important;
    top: auto !important;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: block;
    opacity: 1;
    flex-shrink: 0;
    pointer-events: auto !important;
    z-index: 100 !important;
    transition: all 0.3s ease;
    width: 160px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    text-transform: lowercase;
    animation: bookingBtnPulse 2s ease-in-out infinite;
}

@keyframes bookingBtnPulse {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        transform: scale(1.05);
        border-color: rgba(255, 255, 255, 0.85);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }
}

.contact-friendly-text {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.6;
    max-width: 320px;
    margin-top: 15px;
    letter-spacing: 0.5px;
}


@keyframes subtle-pulse {

    0%,
    100% {
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3), inset 0 0 40px rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.5), inset 0 0 50px rgba(255, 255, 255, 0.25);
    }
}

@keyframes whitePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.25), inset 0 0 10px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.45);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.6), 0 0 12px rgba(255, 255, 255, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.95);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.25), inset 0 0 10px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.45);
    }
}

.contact-btn:last-child {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.25), inset 0 0 10px rgba(255, 255, 255, 0.1);
    animation: whitePulse 2.2s infinite ease-in-out;
}

.contact-btn:last-child:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    transform: scale(1.06) !important;
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.75), inset 0 0 15px rgba(255, 255, 255, 0.3) !important;
    animation-play-state: paused;
}

.contact-btn:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Elegant cohesive fade in directly under the header when card is active */
.hero-contact-overlay.active .contact-subtitle {
    opacity: 1;
    color: rgba(255, 255, 255, 0.4);
    transform: translateY(0);
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 280px;
    gap: 8px;
    /* Tighter gap */
    margin: 0;
}

.contact-input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 8px 0;
    /* Compact padding */
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    /* Sleek compact text size */
    font-weight: 300;
    color: #ffffff;
    resize: none;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    text-align: center;
    height: 28px;
    /* Perfectly single line height */
    min-height: 28px;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.contact-input:focus {
    background: transparent;
    border: none;
    box-shadow: none;
}

.contact-send-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    border: none;
    border-radius: 20px;
    padding: 8px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    align-self: center;
}

.contact-send-btn:hover {
    background: #ffffff;
    transform: scale(1.04);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.contact-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.contact-link:hover {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.contact-separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    font-weight: 300;
}

/* ==========================================================================
   8d. CENTERED BLURRED BOOKING BUTTON
   ========================================================================== */
.fixed-centered-booking {
    position: fixed;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fixed-centered-booking.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 15px);
}

.fixed-centered-booking.at-center {
    transform: translate(-50%, calc(-50vh + 68px)) !important;
}

.booking-btn-blurred {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: none;
    /* Reduced to 30% intensity (6px instead of 20px) for a crystal-clear look */
    -webkit-backdrop-filter: none;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 35px;
    padding: 7px 16px;
    /* Highly compact and sleek */
    /* Wraps perfectly and tightly around the word 'anfragen' */
    text-decoration: none;
    text-transform: lowercase;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    /* Extremely refined and tight */
    font-weight: 400;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    white-space: nowrap;
}

.booking-btn-blurred:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Subtle orange pulse animation for booking button when centered */
@keyframes orangeButtonPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 100, 30, 0.6), inset 0 0 15px rgba(255, 150, 80, 0.4);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 35px rgba(255, 100, 30, 0.95), 0 0 15px rgba(255, 100, 30, 0.4), inset 0 0 22px rgba(255, 150, 80, 0.65);
    }
}

.fixed-centered-booking.pulsing .booking-btn-blurred {
    background: rgba(255, 110, 0, 0.3) !important;
    border: 2px solid rgba(255, 110, 0, 0.8) !important;
    color: #ffffff !important;
    padding: 14px 36px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
    box-shadow: 0 0 25px rgba(255, 110, 0, 0.6), inset 0 0 10px rgba(255, 110, 0, 0.3) !important;
    text-shadow: 0 0 6px rgba(255, 110, 0, 0.8) !important;
    animation: orangeShimmer 2.2s infinite alternate ease-in-out !important;
    transition: all 0.4s ease;
}

/* ==========================================================================
   9. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 768px) {
    .hero-header {
        padding: 25px 15px;
    }

    .glitch-image-wrapper {
        max-width: 100px;
    }

    .credit-name {
        margin: 8px 0;
    }

    .wa-float {
        bottom: 115px;
        /* Shifted higher so it does not collide with centered booking button */
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .fixed-centered-booking {
        bottom: 85px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .fixed-centered-booking.at-center {
        transform: translate(-50%, calc(-50vh + 53px)) !important;
    }

    .booking-btn-blurred {
        padding: 9px 20px;
        /* Keep it perfectly tight and elegant on mobile as well */
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   8e. NEW DYNAMIC MOMENTS GALLERY OVERLAY
   ========================================================================== */
.hero-gallery-overlay {
    position: absolute;
    top: calc(45% + 50px);
    /* Centered vertically + 50px down */
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    /* Starts offset for gorgeous LERP entrance */
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 90%;
    max-width: 650px;
    /* Increased for larger items */
    box-sizing: border-box;
    overflow: hidden;
    /* Critical: locks all horizontal scroll local to the filmstrip track! */
    display: flex;
    justify-content: center;
}

.gallery-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Red fade from bottom viewport during gallery section */
.gallery-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(235, 10, 35, 0.6) 0%,
            rgba(235, 10, 35, 0.25) 45%,
            rgba(235, 10, 35, 0) 100%);
    pointer-events: none;
    z-index: 6;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-header {
    display: none;
    /* Hide header completely */
}

.gallery-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
    align-items: center;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: auto;
    cursor: grab;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 240px;
    width: 90%;
    max-width: 380px;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    opacity: 1;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.gallery-item:hover {
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .gallery-track {
        flex-direction: row;
        overflow-y: hidden;
        overflow-x: auto;
        height: 280px;
        scroll-snap-type: x mandatory;
        padding: 0 5%;
        gap: 10px;
    }
    
    .gallery-item {
        scroll-snap-align: center;
        flex: 0 0 75%;
        height: 100%;
        max-width: 300px;
    }
}

.gallery-item:hover img {
    filter: grayscale(0%) brightness(1.2) !important;
}

/* Gallery indicators (3 dots) */
.gallery-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    justify-content: center;
}

.gallery-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicator.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
}

/* ==========================================================================
   8f. VIDEOS PLAYLIST OVERLAY
   ========================================================================== */
.hero-videos-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    transform: none !important;
    z-index: 4;
    /* Behind menu/logo (9999) but in front of background elements */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.videos-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    pointer-events: auto;
    overflow: hidden;
}

.video-slider-track {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    gap: 0;
    padding: 0;
    box-sizing: border-box;
    /* Vertikale Touch-Gesten gehen immer an die Seite — der Slider
       kann sie nicht mehr schlucken (Navigation über Pfeile/Dots/deltaX). */
    touch-action: pan-y;
    overscroll-behavior-x: contain;
}
.video-slider-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.video-slide {
    flex: 0 0 100vw;
    width: 100vw;
    height: 100%;
    border-radius: 0;
    border: none;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    align-self: center;
}

@media (min-width: 769px) {
    .video-slide {
        flex: 0 0 100vw;
        width: 100vw;
    }
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.video-custom-controls {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    z-index: 10;
    pointer-events: auto;
}

.video-control-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.video-control-btn:hover {
    color: #ff641e;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.video-indicators {
    /* Wieder sichtbar: dienen jetzt als klickbare Navigation des Video-Sliders */
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 6;
    pointer-events: auto;
}

.video-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-dot.active {
    background: rgba(255, 100, 30, 0.9);
    transform: scale(1.2);
}

/* Prev/Next-Pfeile des Video-Sliders */
.video-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 3px;
    cursor: pointer;
    z-index: 6;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.video-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ff641e;
    transform: translateY(-50%) scale(1.06);
}

.video-arrow-prev { left: 1.2rem; }
.video-arrow-next { right: 1.2rem; }

@media (max-width: 768px) {
    .video-arrow-prev { left: 0.6rem; }
    .video-arrow-next { right: 0.6rem; }
}

/* Fullscreen Immersive Lightbox Overlay */
.gallery-lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80vw;
    height: 80vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transform: translateX(0);
    transition: transform 0.3s ease;
    user-select: none;
}

.gallery-lightbox.active .lightbox-content {
    transform: translateX(0);
}

/* Swipe indicators */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: #fff;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Hide arrow buttons on mobile - use swipe instead */
@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 40px;
    font-weight: 200;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover {
    color: #ffffff;
}

/* ==========================================================================
   Socials Overlay (Email, Phone, Soundcloud, Instagram)
   ========================================================================== */
.hero-socials-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    /* Starts offset for gorgeous LERP entrance */
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.socials-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: transparent;
    padding: 24px 36px;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    width: 90%;
    box-sizing: border-box;
}

.socials-contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.socials-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

.socials-contact-item i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.press-kit-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: lowercase;
    font-weight: 400;
}

.press-kit-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.press-kit-btn i {
    font-size: 0.85rem;
}

/* Very slow pulse for press button */
@keyframes verySlowPulse {

    0%,
    100% {
        opacity: 0.7;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 8px 4px rgba(255, 255, 255, 0.2);
    }
}

.press-kit-btn {
    animation: verySlowPulse 3s ease-in-out infinite;
}

.socials-contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.socials-contact-item a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.socials-links-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 5px;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    color: #ffffff;
    font-size: 2.3rem;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.08);
}

/* 1. Zwingt alle Overlays auf denselben Ankerpunkt, ohne dass sie sich gegenseitig verschieben */
.hero-text-overlay,
.hero-player-overlay,
.hero-gallery-overlay,
.hero-contact-overlay,
.hero-socials-overlay {
    position: absolute !important;
    left: 50% !important;
    top: 55% !important;
    width: 100%;
    margin: 0 !important;
}


/* 3. Footer komplett weg */
.footer-blackout {
    display: flex !important;
}

.hero-video-container {
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* Player Cover Art & Row Wrapper Styling */
.player-song-info-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.player-cover-container {
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.player-cover-container:hover {
    transform: scale(1.06);
}

.player-cover-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flicker-word {
    display: inline-block;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    transition: text-shadow 0.3s ease;
}

.flicker-word.flicker-active {
    animation: textFlicker 1.5s infinite alternate;
}

@keyframes textFlicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
    }

    19%,
    24%,
    55% {
        opacity: 0.3;
        text-shadow: none;
    }
}

/* ==========================================================================
   Socials Background Image (replaces video during socials phase)
   ========================================================================== */
.hero-sunglasses-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
}

.hero-sunglasses-img.flicker-active {
    animation: glitchLastOfUs 0.9s infinite !important;
}

.hero-socials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

/* ==========================================================================
   Anfragen Standalone Overlay
   ========================================================================== */
.hero-anfragen-overlay {
    position: absolute !important;
    left: 50% !important;
    top: 55% !important;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    text-align: center;
}

.anfragen-overlay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 110, 0, 0.3);
    color: #ffffff;
    border: 2px solid rgba(255, 110, 0, 0.8);
    border-radius: 35px;
    padding: 14px 36px;
    text-decoration: none;
    text-transform: lowercase;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    box-shadow: 0 0 25px rgba(255, 110, 0, 0.6), inset 0 0 10px rgba(255, 110, 0, 0.3);
    animation: orangeShimmer 2.2s infinite alternate ease-in-out;
    transition: all 0.4s ease;
    white-space: nowrap;
    cursor: pointer;
    pointer-events: auto;
    text-shadow: 0 0 6px rgba(255, 110, 0, 0.8);
}

.anfragen-overlay-btn:hover {
    background: rgba(255, 110, 0, 0.45);
    border-color: rgba(255, 110, 0, 1);
    box-shadow: 0 0 40px rgba(255, 110, 0, 0.9), inset 0 0 14px rgba(255, 110, 0, 0.5);
    transform: scale(1.05);
}

/* ==========================================================================
   Press Kit Standalone Orange Shimmer
   ========================================================================== */
.hero-presskit-overlay {
    position: absolute !important;
    left: 50% !important;
    top: 55% !important;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    text-align: center;
}

.presskit-btn-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 110, 0, 0.3);
    color: #ffffff;
    border: 2px solid rgba(255, 110, 0, 0.8);
    border-radius: 35px;
    padding: 12px 28px;
    text-decoration: none;
    text-transform: lowercase;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 2px;
    box-shadow: 0 0 25px rgba(255, 110, 0, 0.6), inset 0 0 10px rgba(255, 110, 0, 0.3);
    animation: orangeShimmer 2.2s infinite alternate ease-in-out;
    transition: all 0.4s ease;
    white-space: nowrap;
    cursor: pointer;
    pointer-events: auto;
    text-shadow: 0 0 6px rgba(255, 110, 0, 0.8);
}

.presskit-btn-orange:hover {
    background: rgba(255, 110, 0, 0.45);
    border-color: rgba(255, 110, 0, 1);
    box-shadow: 0 0 35px rgba(255, 110, 0, 0.9), inset 0 0 12px rgba(255, 110, 0, 0.5);
    transform: scale(1.05);
}

.presskit-btn-orange i {
    font-size: 0.9rem;
    color: #ffffff;
    filter: drop-shadow(0 0 3px rgba(255, 110, 0, 0.8));
}

@keyframes orangeShimmer {
    0% {
        box-shadow: 0 0 15px rgba(255, 110, 0, 0.4), inset 0 0 6px rgba(255, 110, 0, 0.2);
        border-color: rgba(255, 110, 0, 0.6);
    }

    100% {
        box-shadow: 0 0 32px rgba(255, 110, 0, 0.9), inset 0 0 14px rgba(255, 110, 0, 0.4);
        border-color: rgba(255, 110, 0, 1);
    }
}

/* Glowing Social Icons - clean white only */
@keyframes pulse-social {
    0%, 100% {
        box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.25);
    }
    50% {
        box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
    }
}

.social-ig {
    background: rgba(0, 0, 0, 0.4);
    animation: pulse-social 3s infinite ease-in-out;
}

.social-ig:hover {
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
    animation-play-state: paused;
}

.social-ig i {
    color: rgba(255, 255, 255, 0.9);
    background: none;
    -webkit-text-fill-color: initial;
    filter: none;
}

.social-tiktok {
    background: rgba(0, 0, 0, 0.4);
    animation: pulse-social 3.5s infinite ease-in-out 0.5s;
}

.social-tiktok:hover {
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
    animation-play-state: paused;
}

.social-tiktok i {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
    filter: none;
}

.social-spotify {
    background: rgba(0, 0, 0, 0.4);
    animation: pulse-social 3.2s infinite ease-in-out 1s;
}

.social-spotify:hover {
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
    animation-play-state: paused;
}

.social-spotify i {
    color: rgba(255, 255, 255, 0.9);
    filter: none;
}

/* ==========================================================================
   VERTICAL CREDITS SCROLL & OVERLAY
   ========================================================================== */
.hero-credits-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) translateY(20px);
    width: 90%;
    max-width: 750px;
    height: auto;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;
    pointer-events: auto;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.sticker-grid-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 25px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
    max-height: 80vh;
    overflow-y: auto;
}

.sticker-grid-container::-webkit-scrollbar {
    width: 4px;
}
.sticker-grid-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
.sticker-grid-container::-webkit-scrollbar-thumb {
    background: #ff641e;
    border-radius: 2px;
}

.sticker-grid-title {
    font-family: sans-serif;
    font-weight: bold;
    font-size: 2.2rem;
    color: #ff641e;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 100, 30, 0.5);
    margin: 0;
}

.sticker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    justify-items: center;
    align-items: center;
}

.sticker-item {
    width: 100%;
    max-width: 170px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sticker-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.55;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sticker-item:hover {
    transform: scale(1.15) rotate(-3deg);
    z-index: 10;
}

.sticker-item:hover img {
    opacity: 1;
    filter: drop-shadow(0 15px 30px rgba(255, 100, 30, 0.65));
}

@media (max-width: 768px) {
    .sticker-grid-container {
        padding: 20px 15px;
        gap: 15px;
    }

    .sticker-grid-title {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    .sticker-grid {
        gap: 12px;
    }

    .sticker-item {
        max-width: 110px;
    }
}

/* ==========================================================================
   STATIC & MODAL CONTACT DECKS STYLE
   ========================================================================== */
.static-contact-container {
    width: 100%;
    background: transparent;
    padding: 100px 20px 140px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.static-contact-container * {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

.static-contact-container .booking-modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
}

.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal.active {
    display: flex;
    opacity: 1;
}

.booking-modal-content {
    background: rgba(12, 12, 12, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    width: 100%;
    max-width: 580px;
    padding: 45px 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 100, 30, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

/* Modal-specific overrides for scrollability */
.booking-modal .booking-modal-content {
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 100, 30, 0.3) transparent;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(20px);
}

.booking-modal.active .booking-modal-content {
    transform: translateY(0);
}

.booking-modal .booking-modal-content::-webkit-scrollbar {
    width: 6px;
}

.booking-modal .booking-modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 100, 30, 0.3);
    border-radius: 3px;
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.booking-modal-close:hover {
    color: #ff641e;
    transform: scale(1.1);
}

.booking-modal-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.booking-modal-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form-element .form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.booking-form-element label {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: left;
}

.booking-form-element input[type="text"],
.booking-form-element input[type="number"],
.booking-form-element input[type="tel"],
.booking-form-element select,
.booking-form-element textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    color-scheme: dark;
}

.booking-form-element input::placeholder,
.booking-form-element textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.booking-form-element input:hover,
.booking-form-element select:hover,
.booking-form-element textarea:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.booking-form-element input:focus,
.booking-form-element select:focus,
.booking-form-element textarea:focus {
    outline: none;
    border-color: #ff641e;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(255, 100, 30, 0.15);
}

/* Custom Select Arrow Styling */
.booking-form-element select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 18px) center;
    padding-right: 45px;
    cursor: pointer;
}

.booking-form-element select option {
    background: #121212;
    color: #fff;
    padding: 10px;
}

/* Webkit Autofill Style Override (Anti-ugly browser override) */
.booking-form-element input:-webkit-autofill,
.booking-form-element input:-webkit-autofill:hover,
.booking-form-element input:-webkit-autofill:focus,
.booking-form-element textarea:-webkit-autofill,
.booking-form-element textarea:-webkit-autofill:hover,
.booking-form-element textarea:-webkit-autofill:focus,
.booking-form-element select:-webkit-autofill,
.booking-form-element select:-webkit-autofill:hover,
.booking-form-element select:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px #151515 inset !important;
    box-shadow: 0 0 0px 1000px #151515 inset !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.checkbox-group label {
    font-weight: 300;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Custom premium checkboxes */
.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    display: inline-grid;
    place-content: center;
    transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.checkbox-group input[type="checkbox"]:checked {
    background: #ff641e;
    border-color: #ff641e;
}

.checkbox-group input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 120ms transform cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 1em 1em #ffffff;
    background-color: CanvasText;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.checkbox-group input[type="checkbox"]:checked::before {
    transform: scale(1);
}

/* Premium Submit Button styling */
.booking-submit-btn {
    background: linear-gradient(135deg, #ff641e, #ff4c00);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 15px;
    box-shadow: 0 5px 20px rgba(255, 100, 30, 0.25);
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 100, 30, 0.45);
    background: linear-gradient(135deg, #ff783c, #ff5e1e);
}

.booking-submit-btn:active {
    transform: translateY(-1px);
}

.booking-submit-btn:disabled {
    background: rgba(255, 100, 30, 0.35);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    animation: pulseBtn 1.5s infinite;
}

/* Multi-step Booking Wizard Styling */
.booking-progress-container {
    margin-bottom: 25px;
    width: 100%;
}

.booking-progress-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    text-align: center;
}

.booking-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.booking-progress-fill {
    height: 100%;
    width: 20%;
    background: #ff641e;
    box-shadow: 0 0 10px rgba(255, 100, 30, 0.6);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-step {
    display: none;
    animation: fadeInStep 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-navigation-row {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
}

.booking-nav-btn {
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.booking-nav-btn.prev-btn {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-nav-btn.prev-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.booking-nav-btn.next-btn {
    background: linear-gradient(135deg, #ff641e, #ff4c00);
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 100, 30, 0.25);
}

.booking-nav-btn.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 100, 30, 0.4);
    background: linear-gradient(135deg, #ff783c, #ff5e1e);
}

.form-navigation-row .booking-submit-btn {
    width: auto;
    margin-top: 0;
}

@keyframes pulseBtn {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.45;
    }

    100% {
        opacity: 0.7;
    }
}

@media (max-width: 580px) {
    .booking-modal-content {
        padding: 30px 20px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Success State inside modal */
.booking-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 10px;
    animation: formFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.booking-success-state.active {
    display: flex;
}

.success-icon-wrapper {
    font-size: 4.5rem;
    color: #ff641e;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(255, 100, 30, 0.4));
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.success-message {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 360px;
}

.success-close-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 30px;
    padding: 14px 40px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    border-color: #ff641e;
    color: #ff641e;
    background: rgba(255, 100, 30, 0.05);
    transform: translateY(-1px);
}

@keyframes formFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Transition Glitch Effect (Videos Phase)
   ========================================================================== */
.transition-glitch {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(1px) contrast(1.1);
    -webkit-backdrop-filter: blur(1px) contrast(1.1);
    z-index: 99999;
    pointer-events: none;
    animation: subtleGlitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes subtleGlitch {
    0% {
        transform: translate(2px, 1px);
        opacity: 0.8;
    }

    15% {
        transform: translate(-2px, -1px);
        background: rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(3px) contrast(1.25);
        -webkit-backdrop-filter: blur(3px) contrast(1.25);
    }

    30% {
        transform: translate(-1px, 2px);
        opacity: 0.7;
    }

    45% {
        transform: translate(1px, -1px);
        backdrop-filter: blur(0px) contrast(1);
        -webkit-backdrop-filter: blur(0px) contrast(1);
    }

    60% {
        transform: translate(-2px, 1px);
        opacity: 0.5;
    }

    75% {
        transform: translate(1px, 1px);
    }

    90% {
        transform: translate(-1px, -1px);
        opacity: 0.2;
    }

    100% {
        transform: translate(0, 0);
        opacity: 0;
    }
}

/* ==========================================================================
   Scroll Strobe Effect
   ========================================================================== */
body.is-scrolling::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.015);
    z-index: 99999;
    pointer-events: none;
    animation: scrollStrobe 0.08s infinite alternate;
}

@keyframes scrollStrobe {
    0% {
        opacity: 0.12;
        background: rgba(0, 0, 0, 0.12);
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0.18;
        background: rgba(255, 255, 255, 0.025);
    }
}

/* Show/hide responsive videos and make lastofus-img (xa.jpeg) responsive on mobile */
@media (min-width: 769px) {
    .hero-video.mobile-video {
        display: none !important;
    }
    .hero-video.desktop-video {
        width: 100vw !important;
        height: 100vh !important;
        object-fit: cover !important;
        object-position: center center !important;
        transform: none !important;
        filter: brightness(0.7) !important; /* Darken by 30% only on desktop */
    }
    /* Make gallery 50% larger on desktop */
    .hero-gallery-overlay {
        max-width: 975px !important;
    }
    .gallery-track {
        height: 720px !important;
    }
    .gallery-item {
        flex: 0 0 360px !important;
        max-width: 570px !important;
    }
    /* Display menu horizontally in the header on desktop */
    .menu-toggle {
        display: none !important;
    }
    .top-menu {
        top: 2rem !important;
        right: 2rem !important;
        width: auto !important;
    }
    .menu-list, .menu-list.hidden {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        background: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        margin-top: 0 !important;
        width: auto !important;
        gap: 30px !important;
        overflow: visible !important;
    }
    .menu-list li {
        border-bottom: none !important;
    }
    .menu-list li a {
        padding: 5px 0 !important;
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        color: rgba(255, 255, 255, 0.7) !important;
        transition: color 0.3s ease !important;
    }
    .menu-list li a:hover {
        background: none !important;
        color: #ff641e !important; /* DJ Osi orange theme */
    }
    /* Make playlist video fullframe on desktop */
    .video-container-wrapper video {
        object-fit: cover !important;
    }
}
@media (max-width: 768px) {
    .lastofus-img {
        object-fit: cover !important;
        object-position: center center !important;
        transform: scale(1.30) !important;
    }
    /* Hide the video control bar on mobile */
    .video-custom-controls {
        display: none !important;
    }
    /* Style and animate the gallery next phase button on mobile */
    .gallery-next-phase-btn {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        margin-top: 15px;
        cursor: pointer;
        outline: none;
        transition: all 0.3s ease;
        animation: pulseArrow 1.8s infinite ease-in-out;
    }
    .gallery-next-phase-btn:active {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
    }
    .editorial-container {
        margin: 60vh auto 0 auto;
        padding: 0 12px 100px 12px;
    }
    .chapter {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .chapter-trigger {
        margin-bottom: 20px;
    }
    .chapter-title {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }
    .chapter-num {
        min-width: 45px;
        font-size: 0.8rem;
    }
}

/* Base style: hide the gallery next button on desktop */
.gallery-next-phase-btn {
    display: none;
}

@keyframes pulseArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}
/* ==========================================================================
   MOBILE-FIRST PERFORMANCE OPTIMIZATIONS (v13)
   ========================================================================== */

/* Disable expensive paint-heavy effects on mobile */
@media (max-width: 768px) {

    /* Disable noise & grain animations - huge GPU savings */
    .noise-overlay,
    .tv-noise {
        display: none !important;
    }

    /* Reduce blur intensity on mobile (backdrop-filter is GPU-heavy) */
    .menu-toggle,
    .header-audio-btn {
        backdrop-filter: blur(3px) !important;
        -webkit-backdrop-filter: blur(3px) !important;
    }

    /* Use will-change sparingly - only on actively animated elements */
    .hero-video {
        will-change: opacity;
    }

    /* Promote fixed overlays to their own GPU layer */
    .hero-text-overlay,
    .hero-videos-overlay,
    .hero-credits-overlay,
    .hero-player-overlay,
    .hero-gallery-overlay {
        will-change: opacity, transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    /* Smaller font sizes for cramped screens */
    .bio-line {
        font-size: clamp(1.1rem, 4vw, 1.6rem) !important;
        line-height: 1.5 !important;
    }

    /* Removed conflicting credit-name font size override */

    /* Tighter padding on player for mobile */
    .music-player-wrapper {
        padding: 20px 16px !important;
        width: 90vw !important;
    }

    /* Faster transitions on mobile (lower perceived lag) */
    .hero-text-overlay,
    .hero-videos-overlay,
    .hero-credits-overlay {
        transition: opacity 0.2s ease !important;
    }

    /* Fix tap highlight flicker on iOS */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Prevent overscroll bounce messing with scroll positions */
    html {
        overscroll-behavior: none;
    }

    /* Touch target sizes - minimum 44px per Apple HIG */
    button,
    .menu-link,
    .video-control-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Reduce motion for users who prefer it (accessibility + battery) */
@media (prefers-reduced-motion: reduce) {
    .noise-overlay,
    .tv-noise,
    .transition-glitch,
    .scroll-flash {
        display: none !important;
    }
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   SCROLL DOWN HINT ARROW
   ========================================================================== */
.scroll-down-hint {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 1;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.scroll-down-hint.hidden {
    opacity: 0;
}

.scroll-down-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    animation: scrollLabelPulse 2.5s ease-in-out infinite;
}

.scroll-arrow {
    animation: scrollArrowBounce 1.8s ease-in-out infinite;
    opacity: 0.7;
}

.scroll-arrow svg {
    display: block;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.3));
}

@keyframes scrollArrowBounce {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

@keyframes scrollLabelPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* ==========================================================================
   BOTTOM PILL NAVIGATION
   ========================================================================== */
.bottom-pill-nav {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    pointer-events: auto;
}

.pill-nav-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: transparent;
    border: none;
    padding: 0;
    pointer-events: none;
}

.pill-item {
    display: none;
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    cursor: default;
    white-space: nowrap;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.pill-item.active {
    display: block;
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    animation: pillFadeIn 0.4s ease forwards;
}

@keyframes pillFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hide scroll-down arrow when bottom nav visible */
.bottom-pill-nav ~ .scroll-down-hint {
    bottom: 5rem;
}

@media (max-width: 480px) {
    .pill-item {
        font-size: 0.58rem;
        padding: 5px 9px;
        letter-spacing: 1px;
    }
    .bottom-pill-nav {
        bottom: 1rem;
    }
}

/* ── Scroll Down Indicator ── */
.scroll-down-indicator {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.scroll-down-indicator.hidden {
    opacity: 0;
}

.scroll-down-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.scroll-down-arrow i {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    animation: arrowFloat 2s ease-in-out infinite;
    filter: none;
    text-shadow: none;
}

.scroll-down-arrow i:nth-child(1) { animation-delay: 0s;    opacity: 0.35; }
.scroll-down-arrow i:nth-child(2) { animation-delay: 0.2s;  opacity: 0.65; }
.scroll-down-arrow i:nth-child(3) { animation-delay: 0.4s;  opacity: 1.0; }

@keyframes arrowFloat {
    0%, 100% { transform: translateY(0);   opacity: inherit; }
    50%       { transform: translateY(5px); opacity: 0.2; }
}

/* ============================================================
   v16 — performance tweaks only, layout unchanged
   ============================================================ */

/* footer always visible */
.footer-content {
    opacity: 1 !important;
}

/* ── DARK. DEEP. O.Si. — Glitch Headline ─────────────────────────────── */
.hero-glitch-headline {
    position: absolute;
    bottom: calc(6rem + 50px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    text-align: center;
    pointer-events: none;
    animation: glitch-idle 6s infinite, headline-pulse 3.5s ease-in-out infinite;
    user-select: none;
}

.hero-glitch-headline::before,
.hero-glitch-headline::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-weight: inherit;
    letter-spacing: inherit;
    font-size: inherit;
    font-family: inherit;
    white-space: nowrap;
}

.hero-glitch-headline::before {
    color: #ffffff;
    animation: glitch-top 6s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
}

.hero-glitch-headline::after {
    color: #ffffff;
    animation: glitch-bottom 6s infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}

@keyframes headline-pulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255,255,255,0.1), 0 0 25px rgba(255,255,255,0.05);
        opacity: 0.7;
    }
    50% {
        text-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 50px rgba(255,255,255,0.2);
        opacity: 1.0;
    }
}

@keyframes glitch-idle {
    0%, 87%, 100% { transform: translateX(-50%); }
    88%            { transform: translateX(calc(-50% - 1px)); }
    89%            { transform: translateX(calc(-50% + 1px)); }
    90%            { transform: translateX(-50%); }
    94%            { transform: translateX(calc(-50% - 1px)); }
    95%            { transform: translateX(-50%); }
}

@keyframes glitch-top {
    0%, 87%, 100% { transform: translate(0); opacity: 0; }
    88%            { transform: translate(-2px, -1px); opacity: 0.7; }
    89%            { transform: translate(2px, 0);     opacity: 0.5; }
    90%            { transform: translate(0);           opacity: 0; }
    94%            { transform: translate(2px, -1px);  opacity: 0.6; }
    95%            { transform: translate(0);           opacity: 0; }
}

@keyframes glitch-bottom {
    0%, 87%, 100% { transform: translate(0); opacity: 0; }
    88%            { transform: translate(2px, 1px);  opacity: 0.6; }
    89%            { transform: translate(-2px, 0);   opacity: 0.5; }
    90%            { transform: translate(0);          opacity: 0; }
    94%            { transform: translate(-2px, 1px); opacity: 0.5; }
    95%            { transform: translate(0);          opacity: 0; }
}
/* ─────────────────────────────────────────────────────────────────────── */

/* ── Section 2 Quote Overlay ─────────────────────────────────────────── */
.hero-quote-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) translateY(20px);
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
    width: 90%;
    max-width: 700px;
}

.hero-quote-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    line-height: 1.35;
    letter-spacing: 0.05em;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35em;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.q-word {
    display: inline-block;
    opacity: 0.12;
    transform: translateY(12px) scale(0.95);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease, text-shadow 0.35s ease, filter 0.35s ease;
    filter: blur(5px);
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

.q-word.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    color: #ffffff;
    font-weight: 300;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.q-word.q-hype.active {
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.95), 0 0 80px rgba(255, 255, 255, 0.5);
    transform: translateY(0) scale(1.12);
/* ── Hype Red Flash Overlay (Flashes red when HYPE. appears) ───────────── */
.hype-red-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(230, 20, 20, 0.88) 0%, rgba(160, 10, 10, 0.65) 55%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

.hype-red-flash.flash-active {
    opacity: 1;
}

/* ── Blue Overlay for Section 2 (Quote) ────────────────────────────────── */
.hero-blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgba(5, 18, 48, 0.88);
    mix-blend-mode: normal;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
/* ─────────────────────────────────────────────────────────────────────── */

/* ── Purple Multiply Overlay & Vertical Artist List (4th Point) ────────── */
.hero-purple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgba(0, 0, 0, 0.85);
    mix-blend-mode: normal;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.hero-artists-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artists-static-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px 28px;
    width: 95vw;
    max-width: 1150px;
    padding: 10px;
    box-sizing: border-box;
}

.static-sticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 6px;
    box-sizing: border-box;
}

.static-sticker-item img {
    max-height: 75px;
    max-width: 190px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 0.92;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.static-sticker-item img:hover {
    opacity: 1;
    transform: scale(1.08);
}

@media (max-width: 900px) {
    .artists-static-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px 20px;
    }
}

@media (max-width: 600px) {
    .artists-static-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px 14px;
    }
    .static-sticker-item {
        height: 70px;
    }
    .static-sticker-item img {
        max-height: 55px;
        max-width: 140px;
    }
}
/* ─────────────────────────────────────────────────────────────────────── */

/* ── Video Gallery Overlay (5th Point) ────────────────────────────────── */
.hero-video-gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    width: 95%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.video-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    aspect-ratio: 9 / 16;
    max-height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.video-card-caption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .video-card {
        max-height: 320px;
        aspect-ratio: 16 / 9;
    }
}
/* ─────────────────────────────────────────────────────────────────────── */
