/* ========== SPORTS PAGE — "NINETY SECONDS TO BEDLAM" ==========
   One TV timeout told as a broadcast rundown. The hero and the
   broadcast chrome (scorebug strip, camera bugs, sticky clock) are
   deliberately dark in BOTH themes — arena at night, TV-graphics
   identity — so their whites are explicit. Everything else runs on
   theme tokens and must survive light mode. */

/* ---- Shared broadcast bits ---- */
.sports-tally {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--red, #C8102E);
    animation: sportsTallyPulse 1.6s ease-out infinite;
}
@keyframes sportsTallyPulse {
    0%   { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.55); }
    70%  { box-shadow: 0 0 0 9px rgba(200, 16, 46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
}

/* ============================================================
   COLD OPEN — full-bleed dark arena, three elements only
   ============================================================ */
.sports-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    padding: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(200,16,46,0.14), transparent 55%),
        linear-gradient(135deg, #050505 0%, #1a0408 60%, #240509 100%);
    color: #fff;
}
.sports-hero-photo {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.sports-hero-photo .photo-placeholder { border-radius: 0; }
/* z-index 3 keeps the vignette above a CMS-filled .slot-img (z-index: 2) */
.sports-hero-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        radial-gradient(ellipse at 50% 28%, transparent 0%, rgba(5,5,5,0.5) 75%),
        linear-gradient(0deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.3) 45%, rgba(5,5,5,0.55) 100%);
    pointer-events: none;
}
.sports-hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 26px;
    max-width: 980px;
    padding: clamp(130px, 18vh, 200px) clamp(24px, 6vw, 96px) clamp(120px, 16vh, 170px);
}
.sports-hero-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--font-serif, 'Bitter', serif);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0;
}
.sports-hero-title span {
    display: block;
    font-size: clamp(3rem, 11vw, 8.5rem);
    color: #fff;
}
.sports-hero-title .text-accent {
    color: var(--red-light, #E8344E);
}
.sports-hero-title span.sports-hero-title-stroke {
    -webkit-text-stroke: 2px rgba(255,255,255,0.92);
    color: transparent;
    letter-spacing: -0.01em;
}
.sports-hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.55;
    max-width: 42ch;
    opacity: 0.85;
    margin: 0;
}
.sports-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 28px;
    margin-top: 6px;
}
/* "Watch the Eruption" — demoted from button to underlined anchor */
.sports-hero-watch {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.85;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: var(--red, #C8102E);
    text-decoration-thickness: 2px;
    transition: opacity 0.3s;
}
.sports-hero-watch:hover { opacity: 1; }

/* Frozen scorebug strip — the premise stated as a graphic */
.sports-scorebug-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px clamp(20px, 6vw, 96px);
    background: rgba(8,8,8,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,0.12);
    font-family: var(--font-sans);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    overflow: hidden;
}
.sports-scorebug-strip .scorebug-num {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    color: #fff;
}
.scorebug-sep {
    width: 1px;
    height: 14px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.25);
}

/* ============================================================
   CLEARED FOR — league strip just under the fold (theme-tokened)
   ============================================================ */
.sports-clearance {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 28px;
    padding: 20px clamp(20px, 4vw, 48px);
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}
.sports-clearance-kicker {
    font-family: var(--font-sans);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--red);
}
.sports-clearance-leagues {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    color: var(--text-muted);
}
.sports-clearance-leagues span {
    white-space: nowrap;
    position: relative;
    transition: color 0.3s;
}
.sports-clearance-leagues span:hover { color: var(--text); }
.sports-clearance-leagues span:not(:first-child)::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-radius: 50%;
    background: var(--red);
}

/* ============================================================
   THE RUNDOWN — CHTimeline skin (frenzy, sharpened)
   ============================================================ */
.sports-rundown {
    padding-top: clamp(48px, 7vw, 96px);
    padding-bottom: clamp(24px, 4vw, 56px);
}
.sports-rundown.ch-mode-frenzy {
    --ch-beat-dur: 190ms; /* sharper than stock frenzy */
}
/* Broadcast cut, not a fade-up drift */
.sports-rundown.ch-timeline-init .ch-beat {
    transform: translateY(36px);
}
/* Keep past beats readable — the rundown is one continuous show */
.sports-rundown .ch-beat.ch-beat-past { opacity: 0.88; }

.sports-beat {
    margin-bottom: 0;
    padding: clamp(56px, 8vw, 120px) 0;
}
.sports-rundown .ch-stamp {
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.2em;
    background: rgba(200, 16, 46, 0.08);
    border-color: rgba(200, 16, 46, 0.35);
    margin-bottom: clamp(20px, 3vw, 36px);
}

/* ---- Beat :90 — The Lull (the quiet before). Opens on a photo + a
   scoreboard bug so the scroll out of the hero never falls into a black
   void before the first camera cut (owner feedback). ---- */
.sports-beat-lull {
    position: relative;
    overflow: hidden;
    padding-top: clamp(28px, 4.5vw, 64px);
}
/* Faint arena texture — the first beat never reads as an empty black screen */
.sports-beat-lull::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(120% 90% at 12% 0%, rgba(200,16,46,0.10), transparent 55%),
        repeating-linear-gradient(118deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 10px);
    pointer-events: none;
}
[data-theme="light"] .sports-beat-lull::before {
    background: radial-gradient(120% 90% at 12% 0%, rgba(200,16,46,0.06), transparent 55%);
}
.sports-beat-lull > .container { position: relative; z-index: 1; }
.sports-lull {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    padding: clamp(8px, 2vw, 28px) 0 clamp(24px, 4vw, 56px);
}
.sports-lull-media {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}
.sports-lull-media .photo-placeholder { border-radius: 0; }
.sports-lull-head .section-title {
    font-size: clamp(1.75rem, 3.4vw, 2.6rem);
    max-width: 20ch;
}
.sports-lull-body { max-width: 52ch; }
.sports-lead {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}
.sports-body {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 18px;
}
.sports-lull-body p:last-child { margin-bottom: 0; }

/* On-photo scorebug board — LED game-clock bug. Introduces the scoreboard
   motif over the "flat" photo; the sticky board continues it down-page. */
.sports-scorebug-board {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 13px;
    background: linear-gradient(180deg, rgba(18,4,10,0.82), rgba(5,4,9,0.82));
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(200,16,46,0.28), 0 8px 22px rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.sports-scorebug-board-time {
    font-family: var(--font-condensed, 'Oswald', sans-serif);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: #FFB627;
    text-shadow: 0 0 10px rgba(255,182,39,0.55), 0 0 2px rgba(255,182,39,0.9);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}
.sports-scorebug-board-meta { display: grid; gap: 3px; }
.sports-scorebug-board-label {
    font-family: var(--font-condensed, 'Oswald', sans-serif);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.sports-scorebug-board-state {
    font-family: var(--font-condensed, 'Oswald', sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red-light, #E8344E);
}

/* ---- Beat :74 — The Ignition (density steps up) ---- */
.sports-beat-ignition { overflow-x: clip; }
.sports-ignition {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
.sports-ignition-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 18px;
}
.sports-ignition-copy .sports-body {
    font-size: 1.02rem;
    margin-bottom: 0;
}
/* Oversized courtside photo bleeding off-grid to the right */
.sports-ignition-photo {
    position: relative;
    margin: 0;
    width: calc(100% + clamp(0px, 7vw, 140px));
    aspect-ratio: 3 / 2;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.sports-ignition-photo .photo-placeholder { border-radius: 0; }
/* z-index 4 keeps the bug above a CMS-filled .slot-img (z-index: 2) */
.sports-cam-bug-photo {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
}

/* Camera bug chip — TV graphics, explicit dark glass over photos */
.sports-cam-bug {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(8,8,8,0.66);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 4px;
    padding: 7px 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    white-space: nowrap;
}
.sports-cam-bug::before {
    content: '';
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--red, #C8102E);
    animation: sportsTallyPulse 1.6s ease-out infinite;
}

/* ---- Beat :45 — The Spread (rundown ticker + camera cuts) ---- */
.sports-spread-head { text-align: center; }
.sports-spread-head .section-subtitle { margin: 0 auto; }

/* Single marquee, recut as a rundown ticker */
.sports-ticker {
    margin: clamp(28px, 4vw, 48px) 0 clamp(24px, 3vw, 40px);
    padding: 12px 0;
    background: var(--bg-elevated);
}
.sports-ticker .marquee-track {
    gap: 28px;
    animation-duration: 22s;
}
.sports-ticker .marquee-item {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    color: var(--text-secondary);
    -webkit-text-stroke: 0;
    font-variant-numeric: tabular-nums;
}
.sports-ticker .marquee-dot {
    font-size: 0.55rem;
    color: var(--red);
}
.sports-ticker:hover .marquee-item { color: var(--red); }

/* Gallery grid — camera-cut sequence */
.sports-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.sports-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border);
}
.sports-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.06);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
}
.sports-gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.1) contrast(1.02);
}
/* z-index 3 keeps the cam bug above CMS-filled .slot-img (z-index: 2) */
.sports-gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, transparent 35%, transparent 70%, rgba(10,10,10,0.45) 100%);
    display: flex;
    align-items: flex-start;
    padding: 14px;
    pointer-events: none;
}
.sports-gallery-overlay .sports-cam-bug {
    transform: translateY(-2px);
    opacity: 0.92;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}
.sports-gallery-item:hover .sports-cam-bug {
    transform: translateY(0);
    opacity: 1;
}

/* ---- Beat :12 — The Eruption (the payoff) ---- */
.sports-crescendo {
    display: grid;
    gap: 12px;
    text-align: center;
    padding: clamp(16px, 4vw, 48px) 0 clamp(32px, 5vw, 56px);
}
.sports-crescendo-line {
    font-family: var(--font-serif);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1;
    font-size: clamp(1.1rem, 2.6vw, 1.7rem);
    color: var(--text-muted);
}
.sports-crescendo-line:nth-child(2) {
    font-size: clamp(1.7rem, 4.5vw, 2.9rem);
    color: var(--text-secondary);
}
.sports-crescendo-max {
    font-size: clamp(2.6rem, 8.5vw, 6rem) !important;
    color: var(--red) !important;
}
.sports-eruption-video {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.reel-frame {
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,16,46,0.12);
}
[data-theme="light"] .reel-frame {
    box-shadow: 0 18px 44px rgba(0,0,0,0.14), 0 0 0 1px rgba(200,16,46,0.1);
}
.reel-frame iframe { border-radius: 16px; }
.reel-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* The Box Score — single consolidated stat block, broadcast table */
.sports-boxscore {
    max-width: 680px;
    margin: clamp(48px, 7vw, 88px) auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.sports-boxscore-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    background: var(--red);
}
.sports-boxscore-bar .section-tag {
    color: #fff;
    font-weight: 800;
    margin-bottom: 0;
    padding-left: 0;
}
.sports-boxscore-bar .section-tag::before { display: none; }
.sports-boxscore-note {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
}
.sports-boxscore-table { margin: 0; }
.sports-boxscore-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 20px;
    font-family: var(--font-sans);
}
.sports-boxscore-row + .sports-boxscore-row { border-top: 1px solid var(--border); }
.sports-boxscore-row dt {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.sports-boxscore-row dd {
    margin: 0;
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}
.sports-boxscore-suffix {
    color: var(--red);
    font-size: 0.95rem;
    font-weight: 800;
    margin-left: 2px;
}
.sports-boxscore-text {
    font-size: 0.8rem !important;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red) !important;
}

/* ---- Beat :00 — The Replay (commentary transcript) ---- */
.sports-replay-head { text-align: center; }
.sports-captions {
    max-width: 820px;
    margin: clamp(32px, 5vw, 56px) auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sports-caption {
    margin: 0;
    display: grid;
    gap: 8px;
    padding: 22px 26px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: 8px;
}
.sports-caption-src {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
}
.sports-caption-src::before {
    content: '';
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--red);
}
.sports-caption-quote {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
    border: 0;
    padding: 0;
}
.sports-caption-feature .sports-caption-quote {
    font-size: clamp(1.35rem, 2.6vw, 1.8rem);
    line-height: 1.35;
}
.sports-caption-author {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* ============================================================
   THE RUN SHEET — booking close
   ============================================================ */
.sports-runsheet {
    padding: clamp(72px, 10vw, 130px) 0 clamp(64px, 9vw, 110px);
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}
.sports-runsheet .section-header { margin-bottom: 40px; }
.sports-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto;
}
.sports-chip {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
    border: 1px solid var(--border);
    background: var(--bg-card);
    padding: 11px 20px;
    border-radius: 6px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
}
.sports-chip:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(200, 16, 46, 0.06);
    transform: translateY(-3px);
}

/* ---- Final CTA (full-bleed NFL crowd) ---- */
.sports-cta { padding: 140px 0; position: relative; overflow: hidden; text-align: center; }
.sports-cta-bg { position: absolute; inset: 0; }
.sports-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.sports-cta-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.9) 100%); }
[data-theme="light"] .sports-cta-overlay { background: linear-gradient(180deg, rgba(250,250,250,0.85) 0%, rgba(250,250,250,0.92) 100%); }
.sports-cta-content { position: relative; z-index: 2; padding: 0 24px; }
.sports-cta-content h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; color: var(--text); margin-bottom: 20px; }
.sports-cta-content p { font-family: var(--font-sans); font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   SIGNATURE — sticky SCOREBOARD (arena LED game clock, always dark)
   Right-side anchor. Appears past the hero, counts down :90 → :00
   through the beats, flips to "YOUR BUILDING NEXT" and becomes a
   contact link at :00. Legible static too (reduced motion).
   ============================================================ */
.scorebug-clock {
    position: fixed;
    right: 24px;
    bottom: 92px; /* clears the back-to-top button (bottom:32 + 48px) */
    left: auto;
    z-index: 900;
    display: block;
    width: 176px;
    padding: 0;
    background: linear-gradient(180deg, #140410 0%, #05040a 100%);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    box-shadow:
        0 20px 46px rgba(0,0,0,0.55),
        0 0 0 1px rgba(200,16,46,0.28),
        inset 0 1px 0 rgba(255,255,255,0.06);
    font-family: var(--font-condensed, 'Oswald', sans-serif);
    text-decoration: none;
    overflow: hidden;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.scorebug-clock.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Red bezel header — the board's label bar */
.scorebug-clock-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    background: var(--red, #C8102E);
    border-bottom: 1px solid rgba(0,0,0,0.35);
}
.scorebug-clock-head .sports-tally {
    width: 8px;
    height: 8px;
    background: #fff;
}
.scorebug-clock-label {
    font-family: var(--font-condensed, 'Oswald', sans-serif);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}
/* Big amber LED digits */
.scorebug-clock-time {
    display: block;
    padding: 12px 14px 2px;
    font-size: 3rem;
    font-weight: 700;
    line-height: 0.95;
    text-align: center;
    color: #FFB627;
    text-shadow: 0 0 14px rgba(255,182,39,0.55), 0 0 3px rgba(255,182,39,0.9);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.03em;
}
.scorebug-clock-beat {
    display: block;
    padding: 0 12px 12px;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    transition: color 0.3s;
}
/* :00 — final buzzer: whole board flips to the booking CTA */
.scorebug-clock.is-final {
    background: linear-gradient(180deg, var(--red, #C8102E), var(--red-dark, #A00D24));
    border-color: var(--red, #C8102E);
    box-shadow: 0 20px 46px rgba(200,16,46,0.4), 0 0 0 1px rgba(200,16,46,0.5);
    pointer-events: auto;
    cursor: pointer;
}
.scorebug-clock.is-final .scorebug-clock-head { background: rgba(0,0,0,0.24); }
.scorebug-clock.is-final .scorebug-clock-time {
    color: #fff;
    text-shadow: 0 0 14px rgba(255,255,255,0.4);
}
.scorebug-clock.is-final .scorebug-clock-beat { color: #fff; }
.scorebug-clock.is-final:hover { transform: translateY(-2px); }
.scorebug-clock.is-final .sports-tally { background: #fff; animation: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .sports-lull { grid-template-columns: 1fr; gap: 32px; }
    .sports-ignition { grid-template-columns: 1fr; gap: 28px; }
    .sports-ignition-photo { width: 100%; border-radius: 12px; }
    .sports-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .sports-hero-content {
        padding: 120px clamp(20px, 6vw, 48px) 110px;
        gap: 20px;
    }
    .sports-scorebug-strip {
        gap: 10px;
        padding: 12px 16px;
        font-size: 0.6rem;
        letter-spacing: 0.16em;
    }
    .sports-scorebug-strip .scorebug-num { font-size: 0.9rem; }
    .sports-clearance { gap: 10px 18px; }
    .sports-clearance-leagues { gap: 8px 22px; font-size: 0.66rem; }
    /* Tighter rundown gutter so 375px keeps a full reading measure */
    .sports-rundown.ch-timeline { padding-left: 1.9rem; }
    .sports-rundown .ch-timeline-spine { left: 0.55rem; }
    .sports-rundown.ch-timeline .container { padding: 0 20px 0 4px; }
    .sports-beat { padding: 48px 0; }
    .sports-gallery-grid { grid-template-columns: 1fr; }
    .sports-caption { padding: 18px 18px; }
    .sports-boxscore-row dd { font-size: 1.15rem; }
    .sports-chips { gap: 8px; }
    .sports-chip { padding: 9px 14px; font-size: 0.7rem; }
    /* Signature bug is desktop-only — keep mobile clean */
    .scorebug-clock { display: none; }
}
