:root {
    --bg: #07070c;
    --ink: #f7f4ef;
    --muted: rgba(247, 244, 239, 0.72);
    --gold: #ffd700;
    --cyan: #00f5ff;
    --magenta: #ff00aa;
    --lime: #22c55e;
    --orange: #f59e0b;
    --violet: #8b5cf6;
    --slot: #1d4ed8;
    --slot-border: #60a5fa;
    --panel: rgba(18, 18, 28, 0.78);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'DM Sans', system-ui, sans-serif;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
}

/* Hide everything until assets are ready */
html.promo-booting {
    background: #050508;
}
html.promo-booting body {
    overflow: hidden;
}
html.promo-booting body > *:not(#promoBoot) {
    visibility: hidden !important;
}
.promo-boot {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    background: #050508;
    visibility: visible !important;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: all;
}
html:not(.promo-booting) .promo-boot {
    opacity: 0;
    pointer-events: none;
    visibility: hidden !important;
}

.promo-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 10% 10%, rgba(255, 0, 170, 0.22), transparent 55%),
        radial-gradient(ellipse 70% 45% at 90% 20%, rgba(0, 245, 255, 0.18), transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 215, 0, 0.14), transparent 55%),
        linear-gradient(180deg, #07070c 0%, #101018 50%, #07070c 100%);
}

.promo-cascade {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.promo-top-parade {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.promo-top-parade.is-on {
    opacity: 1;
}

.promo-exit-confetti {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.promo-exit-confetti-bit {
    position: absolute;
    left: 50%;
    top: 45%;
    width: var(--bit-w, 8px);
    height: var(--bit-h, 10px);
    margin: 0;
    border-radius: var(--bit-r, 2px);
    background: var(--bit-c, #ffd700);
    box-shadow: 0 0 10px var(--bit-c, #ffd700);
    opacity: 0;
    animation: promo-exit-confetti-fly var(--bit-dur, 1.2s) cubic-bezier(0.15, 0.75, 0.25, 1) forwards;
    animation-delay: var(--bit-delay, 0s);
    will-change: transform, opacity;
}

@keyframes promo-exit-confetti-fly {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0deg) scale(0.4);
    }
    18% {
        opacity: 1;
        transform:
            translate(calc(-50% + var(--bit-x) * 0.35), calc(-50% + var(--bit-y) * 0.2))
            rotate(calc(var(--bit-rot) * 0.35))
            scale(1.15);
    }
    100% {
        opacity: 0;
        transform:
            translate(calc(-50% + var(--bit-x)), calc(-50% + var(--bit-y)))
            rotate(var(--bit-rot))
            scale(0.7);
    }
}

.promo-parade-dim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(20, 12, 0, 0.35) 0%, rgba(0, 0, 0, 0.82) 70%),
        rgba(0, 0, 0, 0.78);
    opacity: 0;
    transition: opacity 0.55s ease;
}

.promo-top-parade.is-on .promo-parade-dim {
    opacity: 1;
}

.promo-top-parade.is-exiting .promo-parade-dim {
    opacity: 0;
    /* Keep dark veil until bubbles are mid-exit — avoids white page flash */
    transition-delay: 0.55s;
    transition-duration: 0.75s;
}

.promo-parade-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 3.2vw, 32px);
    width: min(86vw, 720px);
    height: min(88vh, 720px);
    padding: clamp(10px, 2.5vw, 20px);
    box-sizing: border-box;
    place-items: center;
}

.promo-parade-grid img {
    width: min(100%, 22vmin, 150px);
    height: min(100%, 22vmin, 150px);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--neon, #ffd700);
    box-shadow:
        0 0 16px var(--neon, #ffd700),
        0 0 32px rgba(0, 0, 0, 0.45),
        0 0 52px rgba(255, 215, 0, 0.28);
    opacity: 0;
    transform:
        translate(var(--from-x, 0px), var(--from-y, 80px))
        scale(0.2)
        rotate(var(--from-rot, -25deg));
    will-change: transform, opacity, filter;
}

.promo-parade-grid.is-entering img {
    animation: promo-grid-enter var(--enter-dur, 1.15s) cubic-bezier(0.14, 0.9, 0.22, 1.12) forwards;
    animation-delay: var(--delay, 0s);
}

.promo-parade-grid.is-holding img {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
    animation: promo-grid-pulse 2.6s ease-in-out infinite;
    animation-delay: var(--idle-delay, 0s);
}

.promo-parade-grid.is-swapping img {
    opacity: 1;
    animation: none;
    transition: transform 0.32s cubic-bezier(0.2, 0.85, 0.25, 1);
    transform: translate(var(--swap-x, 0px), var(--swap-y, 0px)) scale(1) rotate(0deg);
}

.promo-parade-grid.is-exiting img {
    opacity: 1;
    animation: promo-grid-exit 1.05s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    animation-delay: var(--exit-delay, 0s);
    transition: none;
}

@keyframes promo-grid-enter {
    0% {
        opacity: 0;
        transform:
            translate(var(--from-x, 0px), var(--from-y, 80px))
            scale(0.15)
            rotate(var(--from-rot, -25deg));
        filter: brightness(2.4) blur(4px);
    }
    55% {
        opacity: 1;
        filter: brightness(1.45) blur(0);
    }
    78% {
        transform: translate(0, -10px) scale(1.12) rotate(4deg);
        filter: brightness(1.2);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
        filter: brightness(1);
    }
}

@keyframes promo-grid-pulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        box-shadow:
            0 0 16px var(--neon, #ffd700),
            0 0 32px rgba(0, 0, 0, 0.45),
            0 0 40px rgba(255, 215, 0, 0.22);
    }
    50% {
        transform: scale(1.05) translateY(-5px);
        box-shadow:
            0 0 22px var(--neon, #ffd700),
            0 0 40px rgba(0, 0, 0, 0.35),
            0 0 60px rgba(255, 215, 0, 0.4);
    }
}

@keyframes promo-grid-exit {
    0% {
        opacity: 1;
        transform:
            translate(var(--swap-x, 0px), var(--swap-y, 0px))
            scale(1)
            rotate(0deg);
        filter: brightness(1);
    }
    40% {
        opacity: 1;
        transform:
            translate(var(--swap-x, 0px), var(--swap-y, 0px))
            scale(1.15)
            rotate(var(--exit-spin));
        filter: brightness(1.25) saturate(1.2);
    }
    100% {
        opacity: 0;
        transform:
            translate(
                var(--swap-x, 0px),
                calc(var(--swap-y, 0px) + var(--exit-y, 80px))
            )
            scale(0.15)
            rotate(calc(var(--exit-spin) * 2));
        filter: brightness(1.35);
    }
}

.promo-top-actions {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 100050;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.promo-home-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border-radius: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.promo-home-logo img {
    display: block;
    height: 44px;
    width: auto;
}

.promo-home-logo:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.35);
}

/* Keep Chat beside Sound even if an older chat.css still says bottom:fixed */
.promo-top-actions button.bbg-chat-fab {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: auto !important;
    padding: 10px 16px;
    font-size: 18px;
    letter-spacing: 0.4px;
    margin: 0;
}

.promo-mute {
    position: relative;
    top: auto;
    right: auto;
    z-index: auto;
    border: 2px solid rgba(255, 215, 0, 0.65);
    background: linear-gradient(135deg, #2a2200 0%, #1a1a1a 100%);
    color: var(--gold);
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 18px;
    letter-spacing: 0.4px;
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.promo-mute:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(255, 215, 0, 0.25);
}

.promo-wrap {
    position: relative;
    z-index: 1;
}

/* Version chooser (from Clickandlearn → Class / Individual) */
.bbg-choose-page {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    box-sizing: border-box;
}

.bbg-choose {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    display: grid;
    grid-template-columns: 1fr minmax(180px, 340px) 1fr;
    align-items: center;
    gap: clamp(10px, 2vw, 20px);
    text-align: center;
}

.bbg-choose-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bbg-choose-logo {
    position: relative;
    overflow: hidden;
    width: min(320px, 40vw);
    height: min(320px, 40vw);
    margin: 0 auto;
    border-width: 4px;
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.55),
        0 0 40px rgba(255, 215, 0, 0.25);
}

.bbg-choose-logo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.12);
}

.bbg-choose-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bbg-choose-logo.is-hm video {
    visibility: hidden;
}

.bbg-choose-lead {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(18px, 2.4vw, 28px);
    letter-spacing: 0.04em;
    margin: 0;
    color: #fff;
    text-shadow: 0 0 14px rgba(255, 215, 0, 0.35);
    line-height: 1.15;
}

.bbg-choose-lead-en {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(18px, 2.4vw, 28px);
    letter-spacing: 0.04em;
    margin: 0;
    color: #ffe9a8;
    font-weight: 400;
    line-height: 1.15;
}

.bbg-choose-lang {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(165deg, rgba(28, 28, 42, 0.92), rgba(10, 10, 18, 0.95));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.bbg-choose-lang.es {
    border-color: rgba(255, 68, 180, 0.55);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 18px rgba(255, 68, 180, 0.16);
}

.bbg-choose-lang.en {
    border-color: rgba(0, 245, 255, 0.55);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 18px rgba(0, 245, 255, 0.16);
}

.bbg-choose-lang-title {
    margin: 0;
    padding: 7px 8px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(13px, 1.7vw, 18px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.28);
}

.bbg-choose-lang.es .bbg-choose-lang-title {
    color: #ff9ad5;
    border-color: rgba(255, 68, 180, 0.45);
}

.bbg-choose-lang.en .bbg-choose-lang-title {
    color: #7ef0ff;
    border-color: rgba(0, 245, 255, 0.45);
}

.bbg-choose-editions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.bbg-choose-edition {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 6px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.28);
}

.bbg-choose-edition-label {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(11px, 1.3vw, 14px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffe9a8;
}

.bbg-choose-btn {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 72%;
    max-width: 110px;
    padding: 4px 3px;
    box-sizing: border-box;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.bbg-choose-btn:hover {
    transform: translateY(-2px) scale(1.03);
}

.bbg-choose-btn-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(14px, 2vw, 22px);
    letter-spacing: 0.03em;
    line-height: 1.05;
    text-transform: uppercase;
}

.bbg-choose-btn-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(10px, 1.3vw, 13px);
    line-height: 1.1;
    opacity: 0.9;
}

.bbg-choose-btn.info {
    color: #ffb3de;
    border-color: rgba(255, 68, 180, 0.65);
    background: linear-gradient(135deg, rgba(55, 10, 40, 0.95), rgba(8, 12, 22, 0.95));
    box-shadow: 0 0 10px rgba(255, 68, 180, 0.18);
}

.bbg-choose-lang.en .bbg-choose-btn.info {
    color: #7ef0ff;
    border-color: rgba(0, 245, 255, 0.65);
    background: linear-gradient(135deg, rgba(0, 40, 55, 0.95), rgba(8, 12, 22, 0.95));
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.18);
}

.bbg-choose-btn.buy {
    color: #ffe9a8;
    border-color: rgba(255, 215, 0, 0.75);
    background: linear-gradient(135deg, rgba(70, 52, 0, 0.95), rgba(18, 14, 6, 0.95));
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.22);
}

.bbg-choose-btn.play {
    color: #b8ffd0;
    border-color: rgba(62, 207, 142, 0.7);
    background: linear-gradient(135deg, rgba(8, 48, 28, 0.95), rgba(8, 12, 22, 0.95));
    box-shadow: 0 0 10px rgba(62, 207, 142, 0.18);
}

.bbg-choose-btn.info:hover,
.bbg-choose-btn.buy:hover,
.bbg-choose-btn.play:hover {
    filter: brightness(1.08);
}

.bbg-choose-back {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 10px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(12px, 1.5vw, 15px);
    letter-spacing: 0.04em;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.28);
    color: rgba(247, 244, 239, 0.9);
    transition: border-color 0.15s ease, color 0.15s ease;
}

.bbg-choose-lang.es .bbg-choose-back:hover {
    border-color: #ff9ad5;
    color: #ff9ad5;
}

.bbg-choose-lang.en .bbg-choose-back:hover {
    border-color: #7ef0ff;
    color: #7ef0ff;
}

@media (max-width: 760px) {
    .bbg-choose-page {
        height: auto;
        min-height: 100vh;
        overflow: auto;
        align-items: flex-start;
        padding: 12px;
    }

    .bbg-choose {
        grid-template-columns: 1fr;
        grid-template-areas:
            "center"
            "es"
            "en";
        gap: 12px;
    }

    .bbg-choose-center { grid-area: center; }
    .bbg-choose-lang.es { grid-area: es; }
    .bbg-choose-lang.en { grid-area: en; }
}

.promo-hero {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(20px, 3vw, 36px);
    padding-top: clamp(96px, 12vh, 130px);
    padding-bottom: clamp(16px, 2.5vw, 28px);
    position: relative;
    isolation: isolate;
    overflow: visible;
}

.promo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 7, 12, 0.82) 0%, rgba(7, 7, 12, 0.35) 48%, rgba(7, 7, 12, 0.75) 100%),
        radial-gradient(circle at 70% 40%, rgba(255, 215, 0, 0.12), transparent 40%);
}

.promo-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: var(--cyan);
    margin: 0 auto 18px;
}

.promo-kicker span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--magenta);
    box-shadow: 0 0 12px var(--magenta);
    animation: promo-pulse 1.6s ease-in-out infinite;
}

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

.promo-brand {
    font-family: 'Henny Penny', cursive;
    font-size: clamp(42px, 9vw, 92px);
    line-height: 1.15;
    margin: 0 auto 0.65rem;
    padding: 0.2em 0.2em 0;
    text-align: center;
    display: inline-block;
    max-width: 100%;
    overflow: visible;
    color: #fff;
    filter:
        drop-shadow(0 0 6px rgba(255, 215, 0, 0.85))
        drop-shadow(0 0 14px rgba(255, 0, 170, 0.55))
        drop-shadow(0 0 22px rgba(0, 245, 255, 0.45))
        drop-shadow(0 0 28px rgba(34, 197, 94, 0.35))
        drop-shadow(0 8px 24px rgba(0, 0, 0, 0.65));
    animation:
        promo-brand-in 1.1s ease both,
        promo-brand-neon 5.5s ease-in-out infinite;
}

.promo-brand-row {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0 0.18em;
}

.promo-brand-part {
    display: inline-block;
    padding: 0.12em 0.12em 0.22em;
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
    animation: none;
}

.promo-brand-part:first-child {
    padding-right: 0.22em;
}

@keyframes promo-brand-fill {
    0%, 100% { background-position: 0% 50%; }
    33% { background-position: 50% 50%; }
    66% { background-position: 100% 50%; }
}

.promo-brand-groovic {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.05;
}

.promo-edition {
    margin: -0.35em 0.05em 0 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 1.8vw, 21px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: right;
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
    filter: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
    white-space: nowrap;
    position: relative;
    top: -6px;
    animation: promo-edition-in 0.85s 0.35s ease both;
}

@keyframes promo-edition-in {
    from {
        opacity: 0;
        transform: translateX(3.2rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes promo-brand-neon {
    0%, 100% {
        filter:
            drop-shadow(0 0 8px rgba(255, 215, 0, 0.9))
            drop-shadow(0 0 16px rgba(255, 0, 170, 0.5))
            drop-shadow(0 0 24px rgba(0, 245, 255, 0.4))
            drop-shadow(0 8px 24px rgba(0, 0, 0, 0.65));
    }
    33% {
        filter:
            drop-shadow(0 0 8px rgba(0, 245, 255, 0.95))
            drop-shadow(0 0 16px rgba(139, 92, 246, 0.55))
            drop-shadow(0 0 24px rgba(34, 197, 94, 0.45))
            drop-shadow(0 8px 24px rgba(0, 0, 0, 0.65));
    }
    66% {
        filter:
            drop-shadow(0 0 8px rgba(255, 0, 170, 0.95))
            drop-shadow(0 0 16px rgba(255, 140, 0, 0.55))
            drop-shadow(0 0 24px rgba(255, 215, 0, 0.45))
            drop-shadow(0 8px 24px rgba(0, 0, 0, 0.65));
    }
}

@keyframes promo-brand-in {
    from { opacity: 0; transform: translateY(24px) scale(0.96); filter: blur(6px); }
    to { opacity: 1; transform: none; }
}

.promo-headline {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 3.2vw, 36px);
    line-height: 1.15;
    width: max-content;
    max-width: 95vw;
    margin: 0 auto 10px;
    text-align: center;
    white-space: nowrap;
    animation: promo-rise 0.9s 0.15s ease both;
}

.promo-lead {
    max-width: 62ch;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.3;
    color: var(--muted);
    margin: 0 auto 18px;
    text-align: center;
    animation: promo-rise 0.9s 0.28s ease both;
}

@keyframes promo-rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

.promo-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    animation: promo-rise 0.9s 0.4s ease both;
}

.promo-cta {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #3a2e00, #1a1a1a);
    color: var(--gold);
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 22px;
    padding: 12px 22px;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(255, 215, 0, 0.35);
}

.promo-cta.ghost {
    border-color: rgba(0, 245, 255, 0.55);
    color: var(--cyan);
    background: rgba(0, 20, 28, 0.65);
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.15);
}

.promo-hero-stage {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    overflow: visible;
}

.promo-hero-copy {
    padding-bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

.promo-section {
    padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 48px);
    position: relative;
}

.promo-section-head {
    max-width: 720px;
    margin-bottom: 16px;
}

.promo-section-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.1;
    margin: 0 0 6px;
    letter-spacing: 0.02em;
}

.promo-section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.3;
    max-width: 48ch;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.promo-feature {
    grid-column: span 4;
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
    transition: border-color 0.25s;
}

/* Scroll entrance — 3 patterns for rows of 3 cards */
.promo-reveal {
    opacity: 0;
    will-change: transform, opacity;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s ease;
}

.promo-reveal.is-in {
    opacity: 1;
    transform: none !important;
}

/* Pattern A: left ← | center ↑ | right → */
.promo-reveal.pat-a.pos-0 { transform: translateX(-56px); }
.promo-reveal.pat-a.pos-1 { transform: translateY(52px); }
.promo-reveal.pat-a.pos-2 { transform: translateX(56px); }

/* Pattern B: left ↓ | center scale | right ↓ */
.promo-reveal.pat-b.pos-0 { transform: translateY(-48px); }
.promo-reveal.pat-b.pos-1 { transform: scale(0.88); }
.promo-reveal.pat-b.pos-2 { transform: translateY(-48px); }

/* Pattern C: corners + drop from top */
.promo-reveal.pat-c.pos-0 { transform: translate(-40px, 40px); }
.promo-reveal.pat-c.pos-1 { transform: translateY(-56px); }
.promo-reveal.pat-c.pos-2 { transform: translate(40px, 40px); }

.promo-feature:nth-child(1) { border-top: 3px solid var(--magenta); }
.promo-feature:nth-child(2) { border-top: 3px solid var(--cyan); }
.promo-feature:nth-child(3) { border-top: 3px solid var(--gold); }
.promo-feature:nth-child(4) { border-top: 3px solid var(--lime); }
.promo-feature:nth-child(5) { border-top: 3px solid var(--orange); }
.promo-feature:nth-child(6) { border-top: 3px solid var(--violet); }

.promo-feature h3 {
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 28px;
    margin: 8px 0 4px;
    color: #fff;
    line-height: 1.1;
}

.promo-feature p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.3;
}

.promo-img-slot {
    width: 100%;
    aspect-ratio: auto;
    border-radius: 14px;
    background:
        linear-gradient(145deg, #12121a 0%, #1a1a28 100%);
    border: 2px solid rgba(96, 165, 250, 0.55);
    display: block;
    text-align: center;
    color: #dbeafe;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow:
        0 0 24px rgba(37, 99, 235, 0.35);
    position: relative;
    overflow: hidden;
}

.promo-img-slot img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    vertical-align: top;
}

.promo-img-slot::after {
    content: none;
}

@keyframes promo-sheen {
    0% { transform: translateX(-30%) rotate(8deg); }
    100% { transform: translateX(30%) rotate(8deg); }
}

.promo-img-slot span {
    position: relative;
    z-index: 1;
    padding: 8px 12px;
    background: rgba(15, 23, 42, 0.35);
    border-radius: 8px;
}

.promo-img-slot.tall {
    aspect-ratio: auto;
}

.promo-img-slot.wide {
    aspect-ratio: auto;
}

.promo-spotlight {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: center;
}

#experience {
    padding-bottom: clamp(12px, 2vw, 24px);
}

.promo-stage {
    padding-top: clamp(4px, 1vw, 12px);
    padding-bottom: clamp(24px, 3.5vw, 40px);
}

.promo-stage-copy .promo-section-head {
    max-width: none;
    margin-bottom: 0;
}

.promo-stage-copy .promo-section-head p {
    max-width: none;
    font-size: 16px;
    line-height: 1.3;
}

.promo-stage-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 14px;
}

.promo-img-slot--empty {
    aspect-ratio: 16 / 10;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-img-slot--empty span {
    opacity: 0.55;
}

.promo-games {
    margin-top: 22px;
}

.promo-games-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(22px, 3.5vw, 34px);
    margin: 0 0 4px;
    letter-spacing: 0.03em;
    color: #fff;
}

.promo-games-lead {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.3;
    max-width: none;
}

.promo-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.promo-game {
    border-left: 3px solid var(--cyan);
    padding: 10px 14px 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border-radius: 0 14px 14px 0;
}

.promo-game:nth-child(1) { border-left-color: var(--magenta); }
.promo-game:nth-child(2) { border-left-color: var(--cyan); }
.promo-game:nth-child(3) { border-left-color: var(--gold); }
.promo-game:nth-child(4) { border-left-color: var(--lime); }
.promo-game:nth-child(5) { border-left-color: var(--orange); }
.promo-game:nth-child(6) { border-left-color: var(--violet); }

.promo-game-num {
    display: inline;
    font-family: 'Oswald', sans-serif;
    font-size: 0.72em;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 0.35em;
    vertical-align: 0.05em;
}

.promo-game h4 {
    margin: 0 0 2px;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    line-height: 1.1;
}

.promo-game p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.3;
}

.promo-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.promo-pill {
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

.promo-pill.gold { color: var(--gold); border-color: rgba(255, 215, 0, 0.4); }
.promo-pill.cyan { color: var(--cyan); border-color: rgba(0, 245, 255, 0.4); }
.promo-pill.pink { color: #ff7ad9; border-color: rgba(255, 0, 170, 0.4); }

.promo-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.promo-meta-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 14px 16px;
    min-height: 0;
}

.promo-meta-card h4 {
    margin: 0 0 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--gold);
    line-height: 1.15;
}

.promo-meta-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-style: normal;
    line-height: 1.3;
}

.promo-price-amount {
    display: inline-block;
    margin: 0 0.15em;
    padding: 0.05em 0.28em;
    font-size: 1.55em;
    font-weight: 800;
    font-style: normal;
    line-height: 1.1;
    color: var(--gold);
    letter-spacing: 0.02em;
    text-shadow: 0 0 18px rgba(255, 200, 80, 0.35);
    border-bottom: 2px solid rgba(255, 200, 80, 0.55);
    vertical-align: baseline;
}

.promo-finale {
    text-align: center;
    padding-bottom: 72px;
    position: relative;
    z-index: 1;
}

.promo-finale-logo {
    display: flex;
    justify-content: center;
    margin: -48px auto 18px;
}

.promo-logo-bubble {
    /* 55% of previous size (220px / 52vw) */
    width: min(99px, 23.4vw);
    height: min(99px, 23.4vw);
    border-radius: 50%;
    overflow: hidden;
    clip-path: circle(50%);
    -webkit-clip-path: circle(50%);
    border: 3px solid rgba(255, 215, 0, 0.75);
    box-shadow:
        0 0 14px rgba(255, 215, 0, 0.55),
        0 0 28px rgba(0, 0, 0, 0.45);
}

.promo-logo-bubble video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Mild zoom — enough to hide black corners, not crop the logo */
    transform: scale(1.12);
    transform-origin: center center;
}

.promo-finale h2 {
    font-family: 'Henny Penny', cursive;
    font-size: clamp(34px, 7vw, 64px);
    color: var(--gold);
    line-height: 1.15;
    margin: 0 0 10px;
}

.promo-finale p {
    color: var(--muted);
    max-width: 42ch;
    line-height: 1.3;
    margin: 0 auto 16px;
}

.promo-marquee {
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
    margin: 12px 0;
}

.promo-marquee-track {
    display: flex;
    gap: 36px;
    width: max-content;
    animation: promo-marquee 55s linear infinite;
    padding: 8px 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes promo-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .promo-spotlight {
        grid-template-columns: 1fr;
    }

    .promo-stage-slots {
        grid-template-columns: 1fr;
    }

    .promo-games-grid {
        grid-template-columns: 1fr;
    }
    .promo-feature { grid-column: span 6; }
    .promo-meta { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .promo-feature { grid-column: span 12; }
    .promo-top-actions { top: 12px; right: 12px; gap: 8px; }
    .promo-home-logo img { height: 38px; }
    .promo-mute { font-size: 16px; padding: 8px 12px; }
    .promo-headline {
        font-size: clamp(12px, 3.5vw, 16px);
        letter-spacing: 0.01em;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .promo-top-parade,
    .promo-parade-grid img {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    .promo-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
