/* ============================================================
   Livestream & Highlights — page-specific decoration.

   The broadcast half of the old GameDay & Broadcast page. It shares
   the same house style as pages/gameday.css (red-led, near-black
   broadcast surfaces) but is its own file: the two pages will drift
   as GameDay is revised, and a shared file would couple them.

   RED leads (the broadcast accent, same as GameDay), blue marks the
   Showtime/reach/thumbnail beats, green marks confirmations.

   Keyframes are global, so everything here is `ls`-prefixed. Note the
   marquee and live-dot animations are NOT redefined — they come from
   the design system (.xs-marquee, .xs-livedot).

   NOTE on <p>/<b>/<a>/<i>: the theme and DS style bare elements at
   specificity 0,1,1, which beats any single-class rule here (0,1,0).
   Every rule below that lands on one of those is scoped under
   `.xs-page` for that reason.
   ============================================================ */

@keyframes lsGlow{0%,100%{opacity:.45;transform:scale(1)}50%{opacity:.9;transform:scale(1.06)}}

/* ---------- hero ---------- */
/* The real overlay still sits behind the copy, scrimmed hard enough on
   the left that the headline keeps its contrast. */
.ls-hero{position:relative;min-height:82vh;display:flex;align-items:center;overflow:hidden;color:#fff;
	background:var(--ink-900)}
.ls-hero__shot{position:absolute;top:0;right:0;bottom:0;width:min(66%,860px)}
.ls-hero__shot img{width:100%;height:100%;object-fit:cover;object-position:center right;display:block}
.ls-hero__scrim{position:absolute;inset:0;pointer-events:none;
	background:linear-gradient(90deg,#04070f 0%,#04070f 36%,rgba(4,7,15,.74) 54%,rgba(4,7,15,.3) 80%,rgba(4,7,15,.6) 100%)}
/* the site header is fixed and transparent over the hero — hold solid
   black for its height before fading, same convention as every page */
.ls-hero__fade{position:absolute;inset:0 0 auto 0;height:300px;pointer-events:none;
	background:linear-gradient(180deg,var(--ink-900) 0,var(--ink-900) 130px,transparent 100%)}
.ls-hero__foot{position:absolute;left:0;right:0;bottom:0;height:220px;pointer-events:none;
	background:linear-gradient(0deg,var(--ink-900),transparent)}
.ls-hero__glow{position:absolute;bottom:-160px;right:-120px;width:520px;height:520px;border-radius:50%;
	background:radial-gradient(circle,rgba(204,0,0,.35),transparent 62%);filter:blur(24px);
	animation:lsGlow 7s ease-in-out infinite;pointer-events:none}
.ls-hero__inner{position:relative;width:100%;padding-top:calc(130px + clamp(1rem,3vw,2.5rem))}
.ls-hero__chips{display:flex;flex-wrap:wrap;gap:1.8rem;margin-top:2.6rem;
	color:rgba(255,255,255,.65);font-size:.9rem}
.ls-hero__chip{display:inline-flex;align-items:center;gap:.5rem}
.ls-hero__chip i{color:var(--red-500)}

/* ---------- pain ---------- */
.ls-pain{background:#0b1120;border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:26px}
.ls-pain__icon{font-size:2.6rem;color:rgba(255,255,255,.25)}
.ls-pain__title{font-family:var(--font-display);font-size:1.3rem;margin:.7rem 0 .3rem;color:#fff}
.xs-page .ls-pain__body{color:rgba(255,255,255,.6);line-height:1.55;margin:0}
.ls-kicker{text-align:center;font-family:var(--font-display);
	font-size:clamp(1.3rem,3vw,2rem);color:#fff}

/* ---------- Showtime broadcast cue board ---------- */
.ls-board{background:#0b1120;border:1px solid rgba(255,255,255,.14);border-radius:16px;overflow:hidden;
	box-shadow:0 30px 70px rgba(0,0,0,.6)}
.ls-board__bar{display:flex;justify-content:space-between;align-items:center;gap:.6rem;padding:10px 16px;
	background:#111a2e;border-bottom:1px solid rgba(255,255,255,.1);font-size:.72rem;color:rgba(255,255,255,.6)}
.ls-board__name{font-family:var(--font-display);letter-spacing:.06em;color:#fff}
.ls-board__air{display:inline-flex;align-items:center;gap:.4rem;color:var(--red-500);font-weight:700}
.ls-board__body{padding:18px}
.ls-board__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
@media (max-width:520px){.ls-board__grid{grid-template-columns:repeat(2,1fr)}}

/* Each cue is a real <button>. The theme styles button:hover at 0,1,1,
   so the background is restated on hover/focus to stop it going blue. */
.xs-page .ls-cue{text-align:left;background:#0f1830;border:1px solid rgba(255,255,255,.12);
	border-radius:10px;padding:14px 12px;cursor:pointer;font-family:var(--font-body);width:100%;
	transition:border-color .15s var(--ease),transform .15s var(--ease)}
.xs-page .ls-cue:hover,
.xs-page .ls-cue:focus{background:#0f1830;border-color:var(--blue-500);transform:translateY(-2px)}
.xs-page .ls-cue.is-live{background:#0f1830;border-color:var(--red-500)}
.ls-cue__top{display:flex;justify-content:space-between;align-items:center;min-height:18px}
.ls-cue__top i{font-size:1.05rem}
.ls-cue--blue .ls-cue__top i{color:var(--blue-500)}
.ls-cue--red .ls-cue__top i{color:var(--red-500)}
/* the live pip only shows on the active tile */
.ls-cue__pip{display:none}
.ls-cue.is-live .ls-cue__pip{display:block}
/* These live inside a <button>, so they're spans — spans are inline and
   would run the label and sub together on one line. */
.ls-cue__label{display:block;font-family:var(--font-display);color:#fff;font-size:1rem;margin-top:.6rem}
.ls-cue__sub{display:block;font-size:.72rem;color:rgba(255,255,255,.5);margin-top:.15rem;line-height:1.35}
.ls-board__out{margin-top:14px;background:var(--ink-900);border:1px solid rgba(255,255,255,.1);
	border-radius:10px;padding:12px 14px;display:flex;align-items:center;gap:.7rem;
	color:rgba(255,255,255,.75);font-size:.85rem}
.ls-board__out i{color:var(--blue-500);flex:none}
.xs-page .ls-board__out strong{color:#fff}

/* feature rows beside the board */
.ls-rows{display:flex;flex-direction:column;gap:1.05rem}
.ls-row{display:flex;gap:1rem;align-items:flex-start}
.ls-row__icon{flex:none;width:44px;height:44px;border-radius:10px;background:rgba(33,153,232,.16);
	color:var(--blue-500);display:flex;align-items:center;justify-content:center;font-size:1.05rem}
.ls-row__title{font-family:var(--font-display);font-size:1.12rem;color:#fff}
.xs-page .ls-row__body{color:rgba(255,255,255,.65);line-height:1.5;margin:0}

/* the "…same Showtime that runs your arena screen" cross-link */
.ls-xlink{margin-top:1.6rem;display:flex;align-items:center;gap:.7rem;flex-wrap:wrap;background:#0b1120;
	border:1px solid rgba(255,255,255,.12);border-radius:10px;padding:.8rem 1rem;
	font-size:.92rem;color:rgba(255,255,255,.8)}
.ls-xlink>i{color:var(--blue-500);flex:none}
.xs-page .ls-xlink a,
.xs-page .ls-xlink a:link,
.xs-page .ls-xlink a:visited{color:var(--blue-500);text-decoration:none;font-weight:700}
.xs-page .ls-xlink a:hover{text-decoration:underline}

/* ---------- the five beats ---------- */
.ls-index{display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem;margin-top:1.4rem}
.ls-index__pill{background:#0b1120;border:1px solid rgba(255,255,255,.12);border-radius:999px;
	padding:.4rem .85rem;font-size:.78rem;font-weight:700;color:rgba(255,255,255,.75)}
/* the numbered badge that opens each beat */
.ls-beat__tag{display:inline-flex;align-items:center;gap:.6rem;background:#0b1120;
	border:1px solid rgba(255,255,255,.12);border-radius:999px;padding:.35rem .8rem;font-size:.72rem;
	font-weight:700;letter-spacing:.1em;text-transform:uppercase;margin-bottom:1rem}
.ls-beat__tag--red{color:var(--red-500)}
.ls-beat__tag--blue{color:var(--blue-500)}
.ls-beat__n{width:22px;height:22px;border-radius:50%;color:#04070f;display:flex;align-items:center;
	justify-content:center;font-family:var(--font-display);flex:none}
.ls-beat__tag--red .ls-beat__n{background:var(--red-500)}
.ls-beat__tag--blue .ls-beat__n{background:var(--blue-500)}
.xs-page .ls-beat__h{font-family:var(--font-display);font-weight:400;
	font-size:clamp(1.7rem,3.4vw,2.4rem);margin:0;color:#fff;text-transform:uppercase;line-height:1.08}
.xs-page .ls-beat__body{font-size:1.1rem;line-height:1.6;color:rgba(255,255,255,.72);
	margin:1rem 0 1.4rem;max-width:34rem}
.ls-ticks{display:flex;flex-direction:column;gap:.85rem}
.ls-tick{display:flex;gap:.8rem;align-items:flex-start;color:rgba(255,255,255,.75);line-height:1.5}
.ls-tick i{margin-top:.15rem;flex:none}
.ls-tick--red i{color:var(--red-500)}
.ls-tick--blue i{color:var(--blue-500)}
.xs-page .ls-tick strong{color:#fff}

/* framed stills */
.ls-shot{position:relative;border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,.14);
	box-shadow:0 30px 70px rgba(0,0,0,.6)}
.ls-shot img{width:100%;display:block;height:auto}
.ls-shot__badge{position:absolute;top:12px;left:12px;display:inline-flex;align-items:center;gap:.4rem;
	background:rgba(4,7,15,.72);border:1px solid rgba(255,255,255,.18);border-radius:6px;
	padding:.3rem .6rem;font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;color:#fff}
.ls-shot__badge i{color:var(--blue-500)}
.ls-cap{text-align:center;margin-top:.9rem;color:rgba(255,255,255,.45);font-size:.82rem}
.ls-note{margin-top:.8rem;display:flex;align-items:center;gap:.6rem;background:#0b1120;
	border:1px solid rgba(255,255,255,.1);border-radius:8px;padding:.6rem .9rem;
	font-size:.82rem;color:rgba(255,255,255,.6)}
.ls-note i{color:var(--red-500);flex:none}

/* beat 2: YouTube slot panel */
.ls-slots{background:#0b1120;border:1px solid rgba(255,255,255,.14);border-radius:16px;overflow:hidden;
	box-shadow:0 30px 70px rgba(0,0,0,.6)}
.ls-slots__bar{display:flex;justify-content:space-between;align-items:center;gap:.6rem;padding:12px 16px;
	background:#111a2e;border-bottom:1px solid rgba(255,255,255,.1)}
.ls-slots__name{font-family:var(--font-display);color:#fff;letter-spacing:.05em}
.ls-slots__name i{color:var(--red-500)}
.ls-slots__ok{font-size:.7rem;color:var(--success);font-weight:700;flex:none}
.ls-slots__list{padding:14px;display:flex;flex-direction:column;gap:8px}
.ls-slot{display:flex;align-items:center;gap:12px;background:#0f1830;border:1px solid rgba(255,255,255,.1);
	border-radius:10px;padding:11px 13px}
.ls-slot__rink{flex:none;width:38px;height:38px;border-radius:8px;display:flex;align-items:center;
	justify-content:center;font-family:var(--font-display);color:#fff;font-size:.9rem}
.ls-slot__rink--a{background:var(--navy-700)}
.ls-slot__rink--b{background:var(--red-600)}
.ls-slot__mid{flex:1;min-width:0}
.ls-slot__match{color:#fff;font-size:.9rem;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ls-slot__meta{font-size:.72rem;color:rgba(255,255,255,.5);display:flex;align-items:center;gap:.5rem;
	margin-top:2px;flex-wrap:wrap}
.ls-slot__key{display:inline-flex;align-items:center;gap:.3rem;font-family:ui-monospace,Menlo,monospace;
	color:var(--blue-500)}
.ls-slot__state{flex:none;font-size:.64rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
	color:var(--success);background:rgba(58,219,118,.14);border-radius:5px;padding:.25rem .5rem}
.ls-slots__more{text-align:center;font-size:.74rem;color:rgba(255,255,255,.4);padding-top:4px}

/* ---------- beat 5: highlights package ---------- */
.ls-pkg{background:#0b1120;border:1px solid rgba(255,255,255,.1);border-radius:14px;padding:20px}
.ls-pkg__head{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.6rem;
	margin-bottom:1rem}
.ls-pkg__title{font-family:var(--font-display);color:#fff;font-size:1.05rem}
.ls-pkg__title i{color:var(--red-500)}
.ls-pkg__by{display:flex;align-items:center;gap:.6rem}
.ls-pkg__bylbl{font-size:.7rem;color:rgba(255,255,255,.5)}
/* Deliberately a placeholder slot, not a named brand — see the template
   header. Dashed so it reads as "your logo goes here", not as a real
   sponsor lockup. */
.ls-pkg__slot{font-family:var(--font-display);color:rgba(255,255,255,.75);
	border:1px dashed rgba(255,255,255,.35);border-radius:4px;padding:.15rem .55rem;font-size:.78rem;
	letter-spacing:.04em}
.ls-clips{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:10px}
.ls-clip{position:relative;aspect-ratio:16/9;border-radius:8px;overflow:hidden;background:#0d1a33;
	border:1px solid rgba(255,255,255,.08)}
.ls-clip img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.ls-clip__scrim{position:absolute;inset:0;background:linear-gradient(180deg,rgba(4,7,15,.05),rgba(4,7,15,.45))}
.ls-clip__play{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
	color:rgba(255,255,255,.85);font-size:1.4rem;text-shadow:0 2px 8px rgba(0,0,0,.6)}
.ls-clip__time{position:absolute;left:8px;bottom:8px;font-size:.68rem;color:#fff;
	background:rgba(0,0,0,.5);border-radius:3px;padding:.1rem .4rem}
.ls-clip__tag{position:absolute;right:8px;top:8px;font-size:.62rem;color:#fff;background:var(--red-600);
	border-radius:3px;padding:.1rem .4rem}
.ls-clip__who{position:absolute;left:8px;top:8px;font-size:.6rem;color:#fff;background:rgba(4,7,15,.7);
	border:1px solid rgba(255,255,255,.2);border-radius:3px;padding:.1rem .4rem}
.ls-clip__who i{color:var(--blue-500)}
.ls-pkg__chips{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1rem}
.ls-pkgchip{background:#0f1830;border:1px solid rgba(255,255,255,.1);border-radius:999px;
	padding:.4rem .8rem;font-size:.8rem;color:rgba(255,255,255,.72)}
.ls-pkgchip--red i{color:var(--red-500)}
.ls-pkgchip--blue i{color:var(--blue-500)}
.ls-pkgchip--green i{color:var(--success)}

.ls-beats-close{text-align:center;display:inline-flex;align-items:center;gap:.6rem;
	font-family:var(--font-display);font-size:clamp(1.2rem,2.6vw,1.7rem);color:#fff}
.ls-beats-close i{color:var(--red-500)}

/* ---------- proof (light band) ---------- */
.ls-proof__card{background:var(--navy-900);border-radius:16px;padding:26px;box-shadow:var(--shadow-lg)}
.ls-proof__logo{display:flex;align-items:center;justify-content:center;height:90px}
.ls-proof__logo img{max-height:60px;width:auto}
.ls-proof__stats{display:flex;gap:1.2rem;margin-top:1.4rem;flex-wrap:wrap;justify-content:center}
.ls-proof__stat{text-align:center}
.ls-proof__v{font-family:var(--font-display);font-size:1.9rem;color:#fff}
.ls-proof__v--red{color:var(--red-500)}
.ls-proof__k{font-size:.66rem;letter-spacing:.06em;text-transform:uppercase;color:rgba(255,255,255,.6)}
.ls-proof__badge{margin-top:1.4rem;display:inline-flex;align-items:center;gap:.6rem;background:#fff;
	border:1px solid var(--gray-200);border-radius:10px;padding:.7rem 1rem;font-size:.92rem;
	color:var(--navy-700)}
.ls-proof__badge i{color:var(--red-600);flex:none}

/* ---------- objection ---------- */
.ls-obj__mark{font-size:2.4rem;color:rgba(255,255,255,.2)}
.ls-obj__quote{font-family:var(--font-display);font-size:clamp(1.6rem,4vw,2.4rem);color:#fff;
	margin:.6rem 0 0;line-height:1.2}
.ls-obj__chips{margin-top:2rem;display:flex;flex-wrap:wrap;justify-content:center;gap:.7rem}
.ls-obj__chip{background:#0b1120;border:1px solid rgba(255,255,255,.1);border-radius:999px;
	padding:.5rem 1rem;font-size:.84rem;color:rgba(255,255,255,.75)}
.ls-obj__chip i{color:var(--blue-500)}

/* ---------- hand-off to GameDay ---------- */
.ls-handoff{background:#0b1120;border:1px solid rgba(33,153,232,.35);border-radius:18px;
	padding:clamp(1.8rem,4vw,2.6rem);display:flex;flex-wrap:wrap;align-items:center;gap:1.6rem;
	justify-content:space-between}
.ls-handoff__k{display:inline-flex;align-items:center;gap:.5rem;font-size:.72rem;font-weight:700;
	letter-spacing:.12em;text-transform:uppercase;color:var(--blue-500);margin-bottom:.6rem}
.ls-handoff__h{font-family:var(--font-display);font-size:clamp(1.4rem,3vw,2rem);color:#fff;
	line-height:1.1;text-transform:uppercase}
.xs-page .ls-handoff__body{font-size:1rem;line-height:1.55;color:rgba(255,255,255,.7);
	margin:.7rem 0 0;max-width:40rem}

/* ---------- close ---------- */
.ls-close{position:relative;overflow:hidden;text-align:center;
	background:linear-gradient(150deg,var(--navy-900),#1a0608)}
.ls-close__glow{position:absolute;top:-120px;left:50%;transform:translateX(-50%);width:640px;height:420px;
	background:radial-gradient(circle,rgba(204,0,0,.35),transparent 65%);filter:blur(24px);pointer-events:none}
.ls-close__foot{margin-top:1.8rem;color:rgba(255,255,255,.6);font-size:.9rem}

@media (prefers-reduced-motion:reduce){
	.ls-hero__glow{animation:none}
	.xs-page .ls-cue:hover,.xs-page .ls-cue:focus{transform:none}
}
