@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;0,900;1,800;1,900&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --black: #07090b;
  --panel: #101316;
  --panel-2: #171a1e;
  --white: #f7f7f5;
  --muted: #a4a8ad;
  --red: #f01425;
  --red-dark: #bd0010;
  --line: rgba(255, 255, 255, 0.13);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: white; color: black; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: relative;
  z-index: 10;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: .75rem clamp(1.25rem, 4vw, 4.75rem);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 11, .94);
}
.brand { width: 142px; justify-self: start; }
.brand img { width: 100%; height: 72px; object-fit: contain; }
.desktop-nav { display: flex; gap: clamp(1.4rem, 3vw, 3.2rem); align-items: center; }
.desktop-nav a { color: #c7c9cc; text-decoration: none; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.desktop-nav a:hover { color: white; }

.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-live { justify-self: end; padding: 0 1.25rem; border: 1px solid rgba(240, 20, 37, .7); background: rgba(240, 20, 37, .12); }
.button-live:hover { background: var(--red); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(240, 20, 37, .14); }
.button-live:hover .live-dot { background: white; box-shadow: 0 0 0 5px rgba(255,255,255,.18); }

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 6.5rem);
  padding: clamp(3.5rem, 7vw, 7.5rem) clamp(1.25rem, 4vw, 4.75rem);
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  width: 40vw;
  height: 40vw;
  left: -28vw;
  top: 10%;
  border: 1px solid rgba(240, 20, 37, .28);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(240, 20, 37, .08);
  z-index: -1;
}
.eyebrow { display: flex; align-items: center; gap: 1rem; color: #d7d8da; font-family: var(--display); font-size: .85rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span:first-child { color: var(--red); }
.eyebrow span + span::before { content: "/"; color: #555b62; margin-right: 1rem; }
h1 { margin: .7rem 0 1.25rem; max-width: 650px; font-family: var(--display); font-size: clamp(4.6rem, 8.4vw, 9.4rem); font-weight: 900; letter-spacing: -.045em; line-height: .76; text-transform: uppercase; }
h1 em { color: var(--red); font-style: italic; }
h2 { margin: .45rem 0 0; font-family: var(--display); font-size: clamp(3.2rem, 6.8vw, 7rem); font-weight: 900; letter-spacing: -.035em; line-height: .79; text-transform: uppercase; }
h2 em { color: var(--red); font-style: italic; }
.hero-intro { max-width: 470px; color: #b8bbc0; font-size: clamp(1rem, 1.25vw, 1.18rem); }
.hero-event-mode h1 { max-width: 760px; font-size: clamp(3.9rem, 7.1vw, 7.8rem); line-height: .82; }
.hero-countdown { width: max-content; max-width: 100%; display: grid; gap: .18rem; margin-top: 1.6rem; padding: .8rem 1rem; border-left: 3px solid var(--red); background: rgba(255,255,255,.055); }
.hero-countdown[hidden] { display: none; }
.countdown-label { color: #8e9399; font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.countdown-time { font-family: var(--display); font-size: clamp(1.35rem, 2.4vw, 2rem); font-weight: 900; letter-spacing: .035em; line-height: 1; }
.hero-countdown.is-live { border-left-color: white; background: var(--red); }
.hero-countdown.is-live .countdown-label { color: rgba(255,255,255,.72); }
.hero-actions { display: flex; align-items: center; gap: 1.6rem; margin-top: 2rem; }
.button-primary { padding: 0 1.55rem; background: var(--red); color: white; box-shadow: inset -5px 0 0 var(--red-dark); }
.button-primary:hover { background: #ff2535; }
.button svg { width: 17px; fill: currentColor; }
.text-link { font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; }
.text-link span { color: var(--red); margin-left: .4rem; }

.feature-video { aspect-ratio: 16 / 10; position: relative; overflow: hidden; background: var(--panel); border: 1px solid var(--line); text-decoration: none; box-shadow: 0 34px 90px rgba(0,0,0,.45); }
.feature-video::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.08); pointer-events: none; }
.feature-video img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.feature-video:hover img { transform: scale(1.035); }
.video-wash { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(3,4,5,.2) 52%, rgba(3,4,5,.96) 100%); }
.play-button { position: absolute; left: 50%; top: 45%; transform: translate(-50%,-50%); width: 72px; height: 72px; display: grid; place-items: center; background: rgba(240,20,37,.94); border-radius: 50%; box-shadow: 0 0 0 10px rgba(255,255,255,.08); }
.play-button svg { width: 28px; fill: white; margin-left: 4px; }
.feature-meta { position: absolute; left: clamp(1.2rem, 3vw, 2.4rem); right: 1.5rem; bottom: clamp(1.2rem, 3vw, 2.2rem); display: grid; gap: .3rem; }
.tag { width: max-content; background: var(--red); padding: .32rem .5rem; font-size: .66rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.feature-meta strong { font-family: var(--display); font-size: clamp(1.5rem, 2.4vw, 2.35rem); line-height: 1; text-transform: uppercase; }
.feature-meta small { color: #c0c3c7; font-size: .78rem; }

.signal-bar { min-height: 58px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(1rem, 2.7vw, 2.75rem); padding: 1rem 1.25rem; background: var(--red); color: white; font-family: var(--display); font-size: clamp(1rem, 1.5vw, 1.4rem); font-style: italic; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.signal-bar i { width: 5px; height: 5px; background: white; transform: rotate(45deg); }
.section-pad { padding: clamp(5.2rem, 9vw, 9.5rem) clamp(1.25rem, 4vw, 4.75rem); }
.section-kicker { color: var(--red); font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: clamp(2.5rem, 5vw, 5.25rem); }
.section-heading-row h2 { max-width: 850px; }
.section-note { max-width: 410px; margin: 0 0 .45rem; color: var(--muted); font-size: .94rem; line-height: 1.7; }
.text-link-top { margin-bottom: .5rem; }

.broadcasts { background: #0b0e11; }
.broadcast-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1.25rem; }
.broadcast-card, .video-card { display: block; background: var(--panel); border: 1px solid var(--line); text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
.broadcast-card:hover, .video-card:hover { border-color: rgba(240, 20, 37, .72); transform: translateY(-3px); }
.broadcast-card-lead { grid-row: span 2; }
.media-frame { display: block; aspect-ratio: 16 / 9; position: relative; overflow: hidden; background: #171a1e; }
.media-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(0,0,0,.45)); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.broadcast-card:hover img, .video-card:hover img { transform: scale(1.025); }
.duration { position: absolute; z-index: 1; right: .65rem; bottom: .6rem; padding: .25rem .4rem; background: rgba(4,5,6,.84); font-size: .67rem; font-weight: 700; }
.card-copy { display: grid; gap: .42rem; padding: 1rem 1.15rem 1.2rem; }
.card-meta { color: var(--red); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card-meta i { display: inline-block; width: 3px; height: 3px; margin: 0 .45rem .13rem; background: #73787e; transform: rotate(45deg); }
.card-copy strong { font-family: var(--display); font-size: clamp(1.28rem, 2vw, 1.9rem); line-height: 1.05; text-transform: uppercase; }
.card-copy small { color: var(--muted); font-size: .75rem; }
.broadcast-card:not(.broadcast-card-lead) { display: grid; grid-template-columns: minmax(210px, 44%) 1fr; }
.broadcast-card:not(.broadcast-card-lead) .card-copy { align-content: center; }

.youtube { background: var(--black); }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.video-card .card-copy { min-height: 142px; }
.video-card .card-copy strong { font-size: clamp(1.15rem, 1.65vw, 1.55rem); }
.video-card .card-copy small { margin-top: auto; color: #d2d4d6; font-weight: 600; }
.section-cta { display: flex; justify-content: center; margin-top: 2.5rem; }
.button-outline { padding: 0 1.35rem; border: 1px solid rgba(255,255,255,.27); background: transparent; }
.button-outline:hover { border-color: var(--red); background: rgba(240,20,37,.08); }

.schedule { position: relative; background: #eef0f1; color: #0b0d0f; overflow: hidden; }
.schedule::after { content: "LIVE"; position: absolute; right: -1.5vw; bottom: -8vw; color: rgba(13,15,17,.035); font-family: var(--display); font-size: clamp(12rem, 32vw, 35rem); font-style: italic; font-weight: 900; line-height: .7; pointer-events: none; }
.schedule .section-note { color: #5e6268; }
.schedule-list { position: relative; z-index: 1; border-top: 2px solid #0b0d0f; }
.schedule-empty, .schedule-item { display: grid; grid-template-columns: 150px minmax(0, 1fr) auto; align-items: center; gap: clamp(1.25rem, 4vw, 4rem); padding: 1.7rem 0; border-bottom: 1px solid rgba(11,13,15,.18); }
.schedule-date { display: grid; }
.schedule-date strong { font-family: var(--display); font-size: 2.6rem; font-weight: 900; line-height: .9; }
.schedule-date small, .schedule-copy small { color: #676b70; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.schedule-copy { display: grid; gap: .3rem; }
.schedule-copy strong { font-family: var(--display); font-size: clamp(1.4rem, 2.4vw, 2.35rem); line-height: 1; text-transform: uppercase; }
.schedule-copy span { color: #676b70; font-size: .82rem; }
.schedule-live { position: relative; }
.schedule-live::before { content: ""; position: absolute; left: -1.2rem; width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(240,20,37,.14); }
.schedule-live .schedule-copy small { color: var(--red); }
.schedule .button-outline { border-color: rgba(11,13,15,.34); }
.schedule .button-outline:hover { color: white; background: #0b0d0f; border-color: #0b0d0f; }

.about { display: grid; grid-template-columns: 1.1fr .9fr; column-gap: clamp(3rem, 8vw, 9rem); row-gap: clamp(4rem, 7vw, 7rem); background: #0c0f12; }
.about-title-wrap h2 { max-width: 900px; }
.about-copy { max-width: 600px; align-self: end; padding-bottom: .4rem; }
.about-copy p { color: var(--muted); line-height: 1.8; }
.about-copy .about-lead { color: white; font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.35; }
.coverage-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.coverage-grid div { min-height: 220px; display: flex; flex-direction: column; padding: 1.4rem; border-right: 1px solid var(--line); }
.coverage-grid div:last-child { border-right: 0; }
.coverage-grid span { color: var(--red); font-family: var(--display); font-weight: 800; }
.coverage-grid strong { margin-top: auto; font-family: var(--display); font-size: clamp(1.55rem, 2.2vw, 2.15rem); text-transform: uppercase; }
.coverage-grid small { max-width: 210px; margin-top: .35rem; color: var(--muted); font-size: .75rem; }

.services { display: grid; grid-template-columns: 1.08fr .92fr; background: var(--red); color: white; }
.services-main { align-self: center; }
.services .section-kicker { color: white; opacity: .72; }
.services h2 em { color: #0b0d0f; }
.services-main > p:not(.section-kicker) { max-width: 570px; margin: 2rem 0; font-size: 1.05rem; line-height: 1.7; }
.button-light { padding: 0 1.4rem; background: white; color: #0b0d0f; }
.button-light:hover { background: #0b0d0f; color: white; }
.services-list { display: grid; background: #0b0d0f; }
.services-list div { display: grid; grid-template-columns: 55px 1fr; column-gap: 1.5rem; align-content: center; padding: clamp(2rem, 5vw, 4.5rem); border-bottom: 1px solid var(--line); }
.services-list div:last-child { border-bottom: 0; }
.services-list span { grid-row: span 2; color: var(--red); font-family: var(--display); font-weight: 800; }
.services-list strong { font-family: var(--display); font-size: clamp(1.6rem, 2.8vw, 2.7rem); line-height: 1; text-transform: uppercase; }
.services-list small { max-width: 430px; margin-top: .6rem; color: var(--muted); font-size: .8rem; line-height: 1.6; }

.partners { background: #111418; }
.partner-panel { min-height: 155px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(1.5rem, 4vw, 3.2rem); border: 1px solid var(--line); background: repeating-linear-gradient(-45deg, rgba(255,255,255,.018), rgba(255,255,255,.018) 12px, transparent 12px, transparent 24px); }
.partner-panel p { margin: 0; color: #777c82; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.8rem); font-weight: 800; text-transform: uppercase; }
.partner-panel:has(.partner-logo) { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.partner-logo { min-height: 110px; display: grid; place-items: center; padding: 1.25rem; border: 1px solid var(--line); background: rgba(255,255,255,.025); transition: border-color .2s ease, transform .2s ease; }
.partner-logo:hover { border-color: rgba(240,20,37,.65); transform: translateY(-2px); }
.partner-logo img { width: 100%; max-width: 180px; max-height: 76px; object-fit: contain; filter: grayscale(1); opacity: .78; transition: filter .2s ease, opacity .2s ease; }
.partner-logo:hover img { filter: grayscale(0); opacity: 1; }

.final-cta { display: flex; flex-direction: column; align-items: center; text-align: center; background: radial-gradient(circle at 50% 40%, rgba(240,20,37,.15), transparent 36%), var(--black); }
.final-cta h2 { margin-bottom: 2.5rem; }
.final-cta .live-dot { background: white; box-shadow: none; }

.site-footer { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; padding: 3rem clamp(1.25rem, 4vw, 4.75rem) 1.5rem; border-top: 1px solid var(--line); background: #050607; }
.footer-brand img { width: 126px; height: 80px; object-fit: contain; }
.footer-brand p { margin: .35rem 0 0; color: #70757b; font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.social-links { display: grid; grid-template-columns: 1fr 1fr; align-content: start; }
.social-links a { display: flex; justify-content: space-between; padding: .9rem 0; border-bottom: 1px solid var(--line); text-decoration: none; font-family: var(--display); font-size: 1.1rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.social-links a:nth-child(odd) { margin-right: 1.5rem; }
.social-links a:hover { color: var(--red); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 1.25rem; border-top: 1px solid var(--line); color: #686d72; font-size: .7rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #95999e; text-decoration: none; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-bottom a:hover { color: white; }
.mobile-live { display: none; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 680px; }
  .feature-video { max-width: 760px; }
  .broadcast-grid { grid-template-columns: 1fr 1fr; }
  .broadcast-card-lead { grid-column: 1 / -1; grid-row: auto; }
  .broadcast-card:not(.broadcast-card-lead) { display: block; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card:last-child:nth-child(odd) { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-copy { max-width: 720px; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .coverage-grid div:nth-child(2) { border-right: 0; }
  .coverage-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { padding-bottom: 66px; }
  .site-header { min-height: 74px; padding-block: .4rem; }
  .brand { width: 105px; }
  .brand img { height: 58px; }
  .button-live { min-height: 40px; padding: 0 .9rem; }
  .hero { padding-top: 3rem; gap: 2.5rem; }
  h1 { font-size: clamp(3.8rem, 15.8vw, 5.2rem); }
  .hero-event-mode h1 { font-size: clamp(3rem, 13vw, 4.25rem); }
  .countdown-time { font-size: 1.25rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.1rem; }
  .feature-video { aspect-ratio: 4 / 3; }
  .play-button { width: 58px; height: 58px; }
  .signal-bar span:nth-of-type(4), .signal-bar span:nth-of-type(5), .signal-bar i:nth-of-type(4) { display: none; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
  .section-note { font-size: .88rem; }
  .broadcast-grid, .video-grid { grid-template-columns: 1fr; }
  .video-card:last-child:nth-child(odd) { display: block; }
  .schedule-empty, .schedule-item { grid-template-columns: 82px 1fr; gap: 1rem; }
  .schedule-empty .button, .schedule-item .button { grid-column: 1 / -1; justify-self: start; }
  .schedule-date strong { font-size: 2rem; }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-grid div { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--line); }
  .coverage-grid div:last-child { border-bottom: 0; }
  .services-list div { grid-template-columns: 36px 1fr; padding: 2.2rem 1.25rem; }
  .partner-panel { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .social-links { grid-template-columns: 1fr; }
  .social-links a:nth-child(odd) { margin-right: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: .7rem; }
  .mobile-live { position: fixed; z-index: 30; left: .75rem; right: .75rem; bottom: .7rem; min-height: 52px; display: flex; align-items: center; justify-content: center; gap: .7rem; border: 1px solid rgba(255,255,255,.24); background: var(--red); color: white; box-shadow: 0 12px 38px rgba(0,0,0,.48); font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
  .mobile-live .live-dot { background: white; box-shadow: 0 0 0 5px rgba(255,255,255,.2); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
