/* =====================================================
   BPL Stadium Landing — British football club palette
   Liverpool red #c8102e | Chelsea blue #034694
   Arsenal red #ef0107  | Man City sky #6caddf
   Spurs navy #132257   | United red #da291c
   ===================================================== */

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

:root {
    --bg-deep: #04060c;
    --bg-1: #0a0e1a;
    --bg-2: #121728;
    --text: #ecf0f7;
    --text-dim: #8e95a8;
    --liverpool: #c8102e;
    --chelsea: #034694;
    --arsenal: #ef0107;
    --mancity: #6caddf;
    --spurs: #132257;
    --united: #da291c;
    --gold: #fdb913;
    --pitch: #2d7a3a;

    --gradient-britain: linear-gradient(120deg,
        #c8102e 0%, #ef0107 18%, #fdb913 36%,
        #6caddf 56%, #034694 76%, #132257 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.55;
}

img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ==================== Background Canvas ==================== */
.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.three-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s;
}
.three-container.active { opacity: 1; pointer-events: auto; }

/* ==================== Navigation ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 18px 0;
    background: linear-gradient(to bottom, rgba(4,6,12,0.85), rgba(4,6,12,0));
    backdrop-filter: blur(8px);
    transition: padding 0.3s, background 0.3s;
}
.nav.scrolled {
    padding: 10px 0;
    background: rgba(4, 6, 12, 0.92);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
}
.nav-logo em {
    background: var(--gradient-britain);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: normal;
}
.logo-ball {
    display: inline-block;
    animation: ballSpin 8s linear infinite;
}
@keyframes ballSpin {
    to { transform: rotate(360deg); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text-dim);
    position: relative;
    transition: color 0.2s;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-britain);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-britain);
    color: white;
    padding: 10px 18px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    background-size: 200% 200%;
    animation: gradMove 8s ease infinite;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.35);
}
@keyframes gradMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 32px 80px;
    overflow: hidden;
    z-index: 2;
}

.hero-bg-clubs {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.club-stripe {
    position: absolute;
    width: 200%;
    height: 80px;
    left: -50%;
    opacity: 0.08;
    transform: rotate(-25deg);
    animation: stripeMove 18s linear infinite;
    filter: blur(8px);
}
.stripe-liverpool { top: 8%;  background: var(--liverpool); animation-delay: 0s; }
.stripe-chelsea   { top: 22%; background: var(--chelsea);   animation-delay: 3s; }
.stripe-arsenal   { top: 38%; background: var(--arsenal);   animation-delay: 6s; }
.stripe-mancity   { top: 54%; background: var(--mancity);   animation-delay: 9s; }
.stripe-spurs     { top: 70%; background: var(--spurs);     animation-delay: 12s; }
.stripe-united    { top: 86%; background: var(--united);    animation-delay: 15s; }

@keyframes stripeMove {
    0% { transform: rotate(-25deg) translateX(-30%); }
    100% { transform: rotate(-25deg) translateX(30%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    backdrop-filter: blur(8px);
    margin-bottom: 32px;
    animation: fadeUp 0.8s 0.1s backwards ease-out;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: var(--liverpool);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.7);
    animation: pulseLive 1.6s infinite;
}
@keyframes pulseLive {
    0%   { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(200, 16, 46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 12vw, 11rem);
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.title-line {
    display: block;
    overflow: hidden;
}
.title-line span,
.title-line {
    animation: fadeUp 0.9s ease-out backwards;
}
.title-line-1 { animation-delay: 0.2s; }
.title-line-2 { animation-delay: 0.4s; }
.title-line-3 { animation-delay: 0.6s; }

.word-roar {
    background: var(--gradient-britain);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradMove 6s ease infinite, fadeUp 0.9s 0.4s backwards ease-out;
    display: inline-block;
    transform-origin: center;
}
.roar-letter {
    background: var(--gradient-britain);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradMove 6s ease infinite;
    will-change: transform;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    color: var(--text-dim);
    max-width: 580px;
    margin: 0 auto 40px;
    animation: fadeUp 0.9s 0.7s backwards ease-out;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fadeUp 0.9s 0.85s backwards ease-out;
}

.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 38px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--gradient-britain);
    color: white;
    background-size: 200% 200%;
    animation: gradMove 6s ease infinite;
    box-shadow: 0 10px 40px rgba(200, 16, 46, 0.35);
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 60px rgba(200, 16, 46, 0.55);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
.btn-mega {
    padding: 24px 60px;
    font-size: 1.6rem;
    letter-spacing: 4px;
}
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 3s ease infinite;
}
@keyframes shine {
    to { left: 130%; }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeUp 0.9s 1s backwards ease-out;
}
.stat {
    text-align: center;
}
.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    background: var(--gradient-britain);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradMove 6s ease infinite;
}
.stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 6px;
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--text-dim);
    animation: fadeUp 1s 1.5s backwards;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-dim), transparent);
    animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; }
    50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==================== Sections ==================== */
.section {
    position: relative;
    z-index: 2;
    padding: 120px 32px;
}

.section-head {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 4px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding: 0 30px;
}
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gradient-britain);
}
.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: 0;
}
.section-sub {
    color: var(--text-dim);
    margin-top: 12px;
    font-size: 1rem;
}

/* ==================== CLUBS ==================== */
.clubs-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.club-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s, box-shadow 0.4s;
    background: var(--bg-2);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.06);
    perspective: 1000px;
}
.club-card.in-view {
    transform: translateY(0);
    opacity: 1;
}

.club-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
    opacity: 0.18;
    transition: opacity 0.4s, transform 0.4s;
}
.club-card:hover .club-card-bg {
    opacity: 0.45;
    transform: scale(1.1);
}
.club-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px var(--c1);
}

.club-card > * { position: relative; z-index: 1; }

.club-crest {
    font-size: 4rem;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    transition: transform 0.4s;
}
.club-card:hover .club-crest {
    transform: scale(1.15) rotate(-8deg);
}

.club-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    line-height: 1;
    margin-top: 16px;
}
.club-motto {
    color: var(--text-dim);
    font-size: 0.78rem;
    letter-spacing: 1px;
    margin-top: 6px;
    text-transform: uppercase;
    font-style: italic;
}

.club-stats {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 14px;
    font-family: 'Bebas Neue', sans-serif;
}
.club-stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.club-stats span {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--text-dim);
}
.club-stats b {
    font-size: 1.4rem;
    color: var(--c1);
}

/* ==================== FEATURES ==================== */
.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.3s;
    transform: translateY(40px);
    opacity: 0;
}
.feature-card.in-view {
    transform: translateY(0);
    opacity: 1;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent, var(--liverpool));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}
.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.3s;
}
.feature-card:hover .feature-icon {
    transform: rotate(-8deg) scale(1.1);
}
.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.feature-card p {
    color: var(--text-dim);
    font-size: 0.92rem;
}

/* ==================== STADIUM ==================== */
.section-stadium {
    padding-bottom: 60px;
}

.stadium-frame {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 360px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
@media (max-width: 980px) {
    .stadium-frame { min-height: 420px; aspect-ratio: auto; }
}
#stadium-canvas-mount {
    position: absolute;
    inset: 0;
}
#stadium-canvas-mount canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.stadium-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 4;
    pointer-events: none;
    color: white;
}
.overlay-meta {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 18px;
    border-radius: 10px;
    min-width: 200px;
}
.meta-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}
.meta-row + .meta-row {
    border-top: 1px solid rgba(255,255,255,0.08);
}
.meta-key { color: var(--text-dim); font-size: 0.78rem; }
.meta-val { color: var(--gold); font-size: 0.92rem; }

/* ==================== BETTING SECTION ==================== */
.bet-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.bet-text .section-eyebrow { text-align: left; padding-left: 0; }
.bet-text .section-eyebrow::before { display: none; }
.bet-text .section-title {
    text-align: left;
    margin: 12px 0 24px;
    background: var(--gradient-britain);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradMove 6s ease infinite;
}
.bet-text p {
    color: var(--text-dim);
    margin-bottom: 32px;
    max-width: 480px;
}

.bet-mock {
    perspective: 1500px;
}

.bet-ticket {
    background: linear-gradient(145deg, #1a2034, #0e1320);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: rotateY(-12deg) rotateX(6deg);
    animation: floatTicket 5s ease-in-out infinite;
    max-width: 380px;
    margin-left: auto;
}
@keyframes floatTicket {
    0%, 100% { transform: rotateY(-12deg) rotateX(6deg) translateY(0); }
    50%      { transform: rotateY(-8deg) rotateX(4deg) translateY(-12px); }
}

.ticket-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(255,255,255,0.12);
    margin-bottom: 18px;
}
.live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--liverpool);
    box-shadow: 0 0 10px var(--liverpool);
    animation: pulseLive 1.6s infinite;
}

.ticket-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}
.ticket-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}
.team-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px color-mix(in srgb, var(--c) 35%, transparent);
}
.ticket-vs {
    color: var(--text-dim);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
}

.ticket-odds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}
.odd {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 10px 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.odd:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
}
.odd b {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
}
.odd span {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 1px;
}
.odd-active {
    background: var(--gradient-britain);
    border-color: transparent;
}
.odd-active b { color: white; }
.odd-active span { color: rgba(255,255,255,0.9); }

.ticket-place {
    width: 100%;
    background: var(--gold);
    color: #111;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: filter 0.2s, transform 0.2s;
}
.ticket-place:hover {
    filter: brightness(1.15);
    transform: scale(1.02);
}

/* ==================== FINAL CTA ==================== */
.section-final {
    padding: 160px 32px;
    text-align: center;
    position: relative;
}
.section-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(200,16,46,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.final-inner {
    position: relative;
    z-index: 2;
}
.final-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 14vw, 12rem);
    line-height: 0.85;
    margin-bottom: 30px;
    background: var(--gradient-britain);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradMove 4s ease infinite;
}
.rotate-word {
    display: inline-block;
    animation: wordRotate 8s ease infinite;
}
@keyframes wordRotate {
    0%, 100% { transform: rotate(-2deg) scale(1); }
    50%      { transform: rotate(2deg) scale(1.05); }
}

.final-note {
    color: var(--text-dim);
    margin-top: 28px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 40px 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
}
.footer-disclaimer {
    color: var(--text-dim);
    font-size: 0.78rem;
    max-width: 480px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 980px) {
    .nav-links { display: none; }
    .clubs-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .bet-grid { grid-template-columns: 1fr; }
    .three-container { width: 100%; opacity: 0.4; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stadium-overlay { bottom: 10px; left: 10px; }
    .overlay-meta { padding: 10px 14px; }
}

/* Reveal classes used by JS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s, transform 0.8s; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
