:root {
  --bg: #071014;
  --panel: #0d1a20;
  --panel-2: #12242c;
  --line: #24404a;
  --text: #f5fbff;
  --muted: #9fb3bc;
  --gold: #f2c45f;
  --red: #ff4f58;
  --cyan: #39d1c4;
}

* { box-sizing: border-box; }
body {
  background:
    radial-gradient(circle at 15% 8%, rgba(57,209,196,.14), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(242,196,95,.12), transparent 30%),
    linear-gradient(180deg, #071014, #060b0f 60%, #080b0f);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7,16,20,.84);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  min-height: 70px;
  padding: 14px 5vw;
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { align-items: center; display: inline-flex; gap: 10px; font-weight: 900; }
.brand span {
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  border-radius: 50%;
  color: #071014;
  display: grid;
  height: 38px;
  place-items: center;
  width: 38px;
}
.brand strong { font-size: 18px; }
nav { align-items: center; display: flex; gap: 18px; }
nav a { color: var(--muted); font-size: 13px; font-weight: 800; }

.flash-stack { display: grid; gap: 8px; margin: 16px 5vw 0; }
.flash { background: var(--panel); border-left: 3px solid var(--cyan); border-radius: 6px; padding: 12px 14px; }
.flash.danger { border-left-color: var(--red); }
.flash.warning { border-left-color: var(--gold); }
.flash.success { border-left-color: #7bea82; }

.watch-stage {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  min-height: calc(100vh - 70px);
  padding: 34px 5vw 24px;
}
.floating-ad-stack {
  display: grid;
  gap: 10px;
  max-width: min(728px, calc(100vw - 28px));
  width: min(728px, calc(100vw - 28px));
}
.floating-ad-stack.is-hidden,
.floating-ad-card.is-hidden {
  display: none;
}
.floating-ad-card {
  align-items: center;
  background: rgba(245,251,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0,0,0,.26);
  display: flex;
  height: 90px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.floating-ad-slot,
.floating-ad-frame {
  border: 0;
  display: block;
  height: 90px;
  overflow: hidden;
  width: 728px;
}
.floating-ad-close {
  align-items: center;
  background: rgba(255,255,255,.82);
  border: 0;
  border-radius: 50%;
  color: #46515a;
  cursor: pointer;
  display: flex;
  font-size: 26px;
  font-weight: 500;
  height: 34px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  z-index: 2;
}
.floating-ad-close:hover {
  background: #fff;
  color: #d7192b;
}
.player-copy { align-self: center; max-width: 520px; }
.eyebrow {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.player-copy h1 {
  font-size: clamp(44px, 7vw, 86px);
  letter-spacing: 0;
  line-height: .92;
  margin: 0 0 20px;
}
.player-copy p:not(.eyebrow), .home-intro p {
  color: #c4d2d8;
  font-size: 17px;
  line-height: 1.7;
}
.watch-cta { margin-top: 16px; }
.player-side {
  align-self: center;
  display: grid;
  gap: 12px;
  grid-template-areas:
    "sports"
    "player";
  justify-items: center;
}
.player-side .sport-link-strip {
  grid-area: sports;
}
.player-side .player-shell {
  grid-area: player;
}
.player-shell {
  background: linear-gradient(180deg, #071014, #020507);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  box-shadow:
    0 34px 90px rgba(0,0,0,.5),
    0 0 0 1px rgba(57,209,196,.1) inset;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.player-shell-gated .main-player,
.player-shell-gated .player-placeholder {
  filter: blur(3px) brightness(.38);
  transform: scale(1.02);
}
.gate-overlay {
  align-items: center;
  background-position: center;
  background-size: cover;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: absolute;
  text-align: center;
  z-index: 4;
}
.gate-overlay.is-hidden {
  display: none;
}
.gate-overlay:before {
  animation: slowZoom 14s ease-in-out infinite alternate;
  background: inherit;
  content: "";
  inset: -18px;
  position: absolute;
  z-index: -2;
}
.gate-overlay:after {
  background:
    radial-gradient(circle at center, rgba(255,79,88,.18), transparent 34%),
    linear-gradient(180deg, rgba(3,7,10,.18), rgba(3,7,10,.78));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}
.gate-panel {
  display: grid;
  justify-items: center;
  max-width: 620px;
}
.gate-panel strong {
  color: #fff;
  display: block;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.08;
  margin-bottom: 18px;
  text-shadow: 0 10px 24px rgba(0,0,0,.55);
}
.gate-play-button {
  align-items: center;
  animation: playFloat 2.2s ease-in-out infinite;
  background: linear-gradient(135deg, #ff4f58, #d7192b);
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  box-shadow:
    0 0 0 14px rgba(255,79,88,.14),
    0 22px 60px rgba(0,0,0,.5),
    0 0 46px rgba(255,79,88,.34);
  cursor: pointer;
  display: flex;
  height: 92px;
  justify-content: center;
  width: 92px;
}
.gate-play-button:disabled {
  cursor: not-allowed;
  filter: grayscale(.35);
  opacity: .7;
}
.gate-play-button.is-disabled {
  cursor: not-allowed;
  filter: grayscale(.35);
  opacity: .7;
  pointer-events: none;
}
.gate-play-button i {
  border-bottom: 17px solid transparent;
  border-left: 27px solid #fff;
  border-top: 17px solid transparent;
  display: block;
  height: 0;
  margin-left: 7px;
  width: 0;
}
.network-ad-slot {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}
.player-near-ad {
  margin-top: 2px;
}
.sport-link-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 728px;
}
.sport-link-strip a {
  align-items: center;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: #dce9ee;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 5px;
  line-height: 1;
  min-height: 29px;
  padding: 7px 10px;
}
.sport-link-strip a:hover {
  border-color: rgba(57,209,196,.7);
  color: var(--cyan);
}
.sport-link-strip span {
  font-size: 13px;
  line-height: 1;
}
.player-status {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(3,7,10,.7);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  left: 16px;
  padding: 8px 12px;
  position: absolute;
  top: 16px;
  z-index: 2;
}
.player-status span {
  animation: pulse 1.3s ease-in-out infinite;
  background: var(--red);
  border-radius: 50%;
  height: 9px;
  width: 9px;
}
.main-player, .player-placeholder {
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  min-height: 360px;
  width: 100%;
}
.live-video-player {
  background: #020507;
  object-fit: contain;
  pointer-events: none;
}
.live-video-player::-webkit-media-controls,
.live-video-player::-webkit-media-controls-enclosure,
.live-video-player::-webkit-media-controls-panel,
.live-video-player::-webkit-media-controls-play-button,
.live-video-player::-webkit-media-controls-timeline,
.live-video-player::-webkit-media-controls-current-time-display,
.live-video-player::-webkit-media-controls-time-remaining-display,
.live-video-player::-webkit-media-controls-mute-button,
.live-video-player::-webkit-media-controls-volume-slider,
.live-video-player::-webkit-media-controls-fullscreen-button {
  display: none !important;
}
.live-video-overlay {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(2,5,7,0), rgba(2,5,7,.58)),
    radial-gradient(circle at center, rgba(255,79,88,.1), transparent 30%);
  bottom: 0;
  color: #fff;
  display: flex;
  gap: 10px;
  left: 0;
  padding: 24px;
  position: absolute;
  right: 0;
  z-index: 1;
}
.live-video-overlay strong {
  background: rgba(255,79,88,.92);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(255,79,88,.24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 8px 12px;
}
.live-equalizer {
  align-items: end;
  display: inline-flex;
  gap: 3px;
  height: 18px;
}
.live-equalizer span {
  animation: liveBars .85s ease-in-out infinite;
  background: var(--cyan);
  border-radius: 999px;
  height: 8px;
  width: 4px;
}
.live-equalizer span:nth-child(2) {
  animation-delay: .14s;
}
.live-equalizer span:nth-child(3) {
  animation-delay: .28s;
}
.live-sound-button {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
}
.live-sound-button:hover,
.live-sound-button.is-on {
  background: linear-gradient(135deg, rgba(57,209,196,.95), rgba(45,164,154,.92));
  border-color: rgba(255,255,255,.32);
  color: #041014;
}
.sound-icon {
  align-items: end;
  display: inline-flex;
  gap: 3px;
  height: 16px;
}
.sound-icon:before,
.sound-icon:after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  display: block;
  width: 4px;
}
.sound-icon:before {
  height: 9px;
}
.sound-icon:after {
  height: 15px;
}
.player-placeholder {
  align-items: center;
  background-position: center;
  background-size: cover;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 32px;
  position: relative;
  text-align: center;
}
.player-placeholder:before {
  background:
    radial-gradient(circle at center, rgba(255,79,88,.16), transparent 24%),
    linear-gradient(180deg, rgba(3,7,10,.18), rgba(3,7,10,.7));
  content: "";
  inset: 0;
  position: absolute;
}
.image-live-player {
  align-items: center;
  background-position: center;
  background-size: cover;
  display: grid;
  isolation: isolate;
  overflow: hidden;
  place-items: center;
  position: relative;
}
.image-live-player:before {
  animation: slowZoom 14s ease-in-out infinite alternate;
  background: inherit;
  content: "";
  inset: -18px;
  position: absolute;
  z-index: -2;
}
.image-live-player:after {
  background:
    radial-gradient(circle at center, rgba(255,79,88,.18), transparent 24%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.1) 42%, transparent 60%),
    linear-gradient(180deg, rgba(3,7,10,.02), rgba(3,7,10,.22) 46%, rgba(3,7,10,.86));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}
.image-live-overlay {
  bottom: 0;
  left: 0;
  padding: 0 32px 30px;
  position: absolute;
  right: 0;
  z-index: 1;
}
.image-live-overlay span {
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg, rgba(255,79,88,.96), rgba(255,109,81,.92));
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(255,79,88,.24);
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  margin-bottom: 12px;
  padding: 11px 16px;
  text-transform: uppercase;
}
.image-live-overlay strong {
  display: block;
  font-size: clamp(30px, 4.7vw, 58px);
  line-height: 1;
  max-width: 720px;
  text-shadow: 0 12px 30px rgba(0,0,0,.62);
}
.image-preview-play-button {
  position: relative;
  z-index: 2;
}
.image-preview-play-button:disabled {
  cursor: not-allowed;
  filter: grayscale(.35);
  opacity: .7;
}
.image-preview-play-button:hover {
  box-shadow:
    0 0 0 9px rgba(255,79,88,.13),
    0 18px 42px rgba(0,0,0,.48),
    0 0 34px rgba(255,79,88,.32);
}
.live-play-button {
  align-items: center;
  animation: playFloat 2.2s ease-in-out infinite;
  background: linear-gradient(135deg, #ff4f58, #d7192b);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  box-shadow:
    0 0 0 14px rgba(255,79,88,.12),
    0 22px 60px rgba(0,0,0,.48),
    0 0 46px rgba(255,79,88,.32);
  display: flex;
  height: 104px;
  justify-content: center;
  position: relative;
  width: 104px;
  z-index: 1;
}
.image-preview-play-button.live-play-button {
  animation: playFloat 2.2s ease-in-out infinite;
  box-shadow:
    0 0 0 8px rgba(255,79,88,.11),
    0 16px 38px rgba(0,0,0,.46),
    0 0 28px rgba(255,79,88,.28);
  height: 66px;
  position: relative;
  width: 66px;
  z-index: 2;
}
.image-preview-play-button.live-play-button:before {
  inset: -10px;
}
.image-preview-play-button.live-play-button:after {
  inset: -19px;
}
.image-preview-play-button.live-play-button span {
  border-bottom-width: 12px;
  border-left-width: 20px;
  border-top-width: 12px;
  margin-left: 5px;
}
.live-play-button:before,
.live-play-button:after {
  animation: playRipple 2s ease-out infinite;
  border: 1px solid rgba(255,79,88,.56);
  border-radius: 50%;
  content: "";
  inset: -18px;
  position: absolute;
}
.live-play-button:after {
  animation-delay: .55s;
  inset: -34px;
}
.live-play-button span {
  border-bottom: 19px solid transparent;
  border-left: 30px solid #fff;
  border-top: 19px solid transparent;
  display: block;
  height: 0;
  margin-left: 8px;
  width: 0;
}
.schedule-section {
  padding: 0 5vw 20px;
}
.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
  margin: 0;
}
.schedule-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 2px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.schedule-card {
  background: linear-gradient(180deg, rgba(18,36,44,.94), rgba(9,18,23,.96));
  border: 1px solid var(--line);
  border-radius: 10px;
  flex: 0 0 220px;
  overflow: hidden;
  scroll-snap-align: start;
}
.schedule-card img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
  width: 100%;
}
.schedule-card div {
  padding: 10px;
}
.schedule-card span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.schedule-card h3 {
  font-size: 14px;
  line-height: 1.15;
  margin: 5px 0;
}
.schedule-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  margin: 0 0 7px;
  min-height: 32px;
}
.schedule-card time,
.schedule-card small {
  display: block;
  font-size: 11px;
  font-weight: 800;
}
.countdown {
  background: rgba(255,79,88,.12);
  border: 1px solid rgba(255,79,88,.28);
  border-radius: 999px;
  color: #ffdce0;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  margin-top: 7px;
  padding: 6px 8px;
}
.countdown.is-live {
  background: rgba(57,209,196,.12);
  border-color: rgba(57,209,196,.35);
  color: var(--cyan);
}
.schedule-card small {
  color: var(--gold);
  margin-top: 4px;
}
.schedule-card {
  color: inherit;
  text-decoration: none;
}
.schedule-page {
  padding: 32px 5vw 54px;
}
.schedule-page .section-heading {
  margin-bottom: 20px;
}
.schedule-page h1 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: .95;
  margin: 0;
}
.schedule-page-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.schedule-card-wide {
  flex: initial;
}
.schedule-card-wide img {
  aspect-ratio: 16 / 10;
}
.schedule-card-wide h3 {
  font-size: 18px;
}
.schedule-card-wide p {
  min-height: 58px;
}
.event-player-page {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, .34fr) minmax(0, 1fr);
  min-height: calc(100vh - 70px);
  padding: 32px 5vw 54px;
}
.event-player-copy {
  align-self: center;
}
.event-player-copy h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: .95;
  margin: 0 0 18px;
}
.event-player-copy p {
  color: #c4d2d8;
  font-size: 16px;
  line-height: 1.7;
}
.event-player-copy time {
  display: block;
  font-weight: 900;
  margin-bottom: 10px;
}
.event-player-shell {
  align-items: center;
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.42);
  display: flex;
  isolation: isolate;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  text-align: center;
}
.event-player-shell:before {
  animation: slowZoom 14s ease-in-out infinite alternate;
  background: inherit;
  content: "";
  inset: -18px;
  position: absolute;
  z-index: -2;
}
.event-player-shell:after {
  background:
    radial-gradient(circle at center, rgba(255,79,88,.18), transparent 34%),
    linear-gradient(180deg, rgba(3,7,10,.16), rgba(3,7,10,.78));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}
.event-player-panel {
  display: grid;
  justify-items: center;
  max-width: 660px;
}
.event-player-panel span {
  background: rgba(255,79,88,.92);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 12px;
  padding: 8px 12px;
  text-transform: uppercase;
}
.event-player-panel strong {
  display: block;
  font-size: clamp(24px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 10px 24px rgba(0,0,0,.55);
}
.ad-slot {
  background: rgba(18,36,44,.75);
  border: 1px dashed rgba(242,196,95,.42);
  border-radius: 10px;
  color: var(--muted);
  margin: 0 5vw 20px;
  min-height: 88px;
  overflow: hidden;
  padding: 12px;
  text-align: center;
}
.ad-slot iframe,
.ad-slot img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.home-intro {
  align-items: end;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: 24px;
  grid-template-columns: .75fr 1fr;
  margin: 0 0 24px;
  padding-top: 32px;
}
.home-intro h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1; margin: 0; }
.article-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 0 54px;
}
.home-content-grid {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) 300px;
  padding: 0 5vw;
}
.sidebar-panel {
  position: sticky;
  top: 92px;
}
.sidebar-panel:empty {
  display: none;
}
.side-ad {
  margin: 0;
}
.side-card {
  background: linear-gradient(180deg, rgba(18,36,44,.94), rgba(9,18,23,.96));
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}
.side-card h3 { font-size: 22px; line-height: 1.12; margin: 0 0 10px; }
.side-card p:not(.eyebrow) { color: var(--muted); line-height: 1.6; }
.article-card, .panel, .auth-card, .article-page {
  background: linear-gradient(180deg, rgba(18,36,44,.94), rgba(9,18,23,.96));
  border: 1px solid var(--line);
  border-radius: 10px;
}
.article-card { overflow: hidden; }
.article-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.article-card div { padding: 18px; }
.article-card span { color: var(--gold); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.article-card h3 { font-size: 20px; line-height: 1.15; margin: 8px 0; }
.article-card p { color: var(--muted); line-height: 1.6; }
.article-card a, .article-body a { color: var(--cyan); font-weight: 900; }

.auth-page {
  display: grid;
  min-height: calc(100vh - 70px);
  place-items: center;
  padding: 34px 5vw;
}
.auth-card { max-width: 460px; padding: 34px; width: 100%; }
.auth-card h1, .panel h2 { font-size: 30px; margin: 0 0 22px; }
label { color: var(--muted); display: grid; font-size: 13px; font-weight: 800; gap: 8px; margin-bottom: 15px; }
input, select, textarea {
  background: #071014;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: 12px;
  width: 100%;
}
textarea { resize: vertical; }
.btn {
  background: linear-gradient(135deg, var(--gold), #c27b10);
  border: 0;
  border-radius: 8px;
  color: #130c02;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  padding: 12px 18px;
}
.btn.small { font-size: 12px; padding: 8px 11px; }
.btn-muted {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
}
.admin-shell {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 240px minmax(0, 1fr);
  padding: 24px 5vw 50px;
}
.admin-sidebar {
  background: linear-gradient(180deg, rgba(18,36,44,.96), rgba(9,18,23,.98));
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 8px;
  padding: 16px;
  position: sticky;
  top: 92px;
}
.admin-sidebar strong {
  font-size: 18px;
  margin-bottom: 6px;
}
.admin-sidebar a {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  padding: 10px 12px;
}
.admin-sidebar a:hover {
  border-color: rgba(57,209,196,.62);
  color: var(--cyan);
}
.admin-sidebar a.active {
  background: rgba(57,209,196,.12);
  border-color: rgba(57,209,196,.56);
  color: var(--cyan);
}
.admin-main {
  display: grid;
  gap: 18px;
}
.admin-hero {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, .7fr) minmax(320px, 1fr);
}
.admin-hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: .95;
  margin: 0;
}
.stat-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat-grid div {
  background: #071014;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}
.stat-grid span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.stat-grid strong {
  display: block;
  font-size: 30px;
  margin-top: 6px;
}
.admin-section {
  scroll-margin-top: 96px;
}
.panel { padding: 22px; }
.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 12px;
}
.gate-state {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  margin: 0 0 16px;
  padding: 12px;
}
.quick-toggle-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.quick-toggle-grid form {
  background: rgba(7,16,20,.48);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 16px;
}
.gate-state strong {
  color: var(--red);
}
.gate-state.is-on strong {
  color: #7bea82;
}
.toggle-row { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
.toggle-row label { align-items: center; display: flex; gap: 8px; }
.toggle-row input { width: auto; }
.note { color: var(--muted); font-size: 13px; line-height: 1.6; }
.admin-list { margin: 0; overflow-x: auto; }
table { border-collapse: collapse; min-width: 720px; width: 100%; }
th, td { border-bottom: 1px solid var(--line); font-size: 13px; padding: 12px; text-align: left; }
th { color: var(--muted); text-transform: uppercase; }
td small { color: var(--muted); display: block; margin-top: 4px; }

.article-page {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  margin: 28px 5vw 54px;
  overflow: hidden;
}
.article-page > img { height: 100%; min-height: 480px; object-fit: cover; width: 100%; }
.article-body { padding: 40px; }
.article-body h1 { font-size: clamp(34px, 5vw, 62px); line-height: 1; margin: 10px 0 18px; }
.article-body p { color: #c4d2d8; font-size: 16px; line-height: 1.85; }
.article-body .summary { color: var(--text); font-size: 19px; line-height: 1.6; }

footer {
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 22px 5vw;
}
footer strong { color: var(--text); }
.footer-links { gap: 12px; }
.footer-links a { font-size: 12px; }
.legal-page {
  background: linear-gradient(180deg, rgba(18,36,44,.94), rgba(9,18,23,.96));
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 28px auto 54px;
  max-width: 980px;
  padding: 38px;
}
.legal-page h1 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: .98;
  margin: 0 0 20px;
}
.legal-page h2 {
  font-size: 22px;
  margin: 28px 0 10px;
}
.legal-page p {
  color: #c4d2d8;
  line-height: 1.78;
}
.contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}
.contact-grid div {
  background: #071014;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.contact-grid strong,
.contact-grid span {
  display: block;
}
.contact-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 6px;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,79,88,.3); transform: scale(1); }
  50% { box-shadow: 0 0 0 8px rgba(255,79,88,0); transform: scale(1.12); }
}

@keyframes playFloat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes playRipple {
  0% { opacity: .72; transform: scale(.82); }
  100% { opacity: 0; transform: scale(1.28); }
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

@keyframes liveBars {
  0%, 100% { height: 7px; opacity: .72; }
  50% { height: 18px; opacity: 1; }
}

@media (max-width: 1000px) {
  .watch-stage, .home-intro, .home-content-grid, .admin-shell, .admin-hero, .article-page, .event-player-page { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .player-side { align-self: stretch; }
  .sidebar-panel { position: static; }
  .schedule-card { flex-basis: 210px; }
  .schedule-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-page > img { max-height: 360px; min-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header, footer { align-items: stretch; flex-direction: column; }
  .site-header { gap: 10px; min-height: auto; padding: 10px 12px; position: static; }
  .brand span { height: 32px; width: 32px; }
  .brand strong { font-size: 16px; }
  nav {
    display: flex;
    flex-direction: row;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    white-space: nowrap;
  }
  nav::-webkit-scrollbar { display: none; }
  nav a {
    background: rgba(255,255,255,.05);
    border-radius: 999px;
    flex: 0 0 auto;
    font-size: 11px;
    min-width: auto;
    padding: 8px 12px;
    text-align: center;
  }
  .watch-stage { gap: 16px; min-height: auto; padding: 18px 12px; }
  .floating-ad-stack {
    max-width: calc(100vw - 16px);
    width: calc(100vw - 16px);
  }
  .floating-ad-card,
  .floating-ad-slot,
  .floating-ad-frame {
    height: 90px;
    width: 100%;
  }
  .player-copy h1 { font-size: 42px; line-height: .98; }
  .player-copy p:not(.eyebrow), .home-intro p { font-size: 15px; line-height: 1.65; }
  .sport-link-strip {
    flex-wrap: nowrap;
    margin-top: 10px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .sport-link-strip::-webkit-scrollbar { display: none; }
  .sport-link-strip a { flex: 0 0 auto; font-size: 10px; min-height: 27px; padding: 7px 9px; }
  .main-player, .player-placeholder { min-height: 220px; }
  .live-video-overlay { padding: 14px; }
  .live-video-overlay strong { font-size: 10px; padding: 7px 10px; }
  .live-sound-button {
    font-size: 11px;
    min-height: 34px;
    padding: 7px 10px;
  }
  .gate-overlay { padding: 18px; }
  .gate-panel strong { font-size: 22px; }
  .gate-play-button { height: 72px; width: 72px; }
  .gate-play-button i {
    border-bottom-width: 13px;
    border-left-width: 21px;
    border-top-width: 13px;
    margin-left: 5px;
  }
  .live-play-button { height: 74px; width: 74px; }
  .image-preview-play-button.live-play-button { height: 56px; width: 56px; }
  .image-preview-play-button.live-play-button span {
    border-bottom-width: 10px;
    border-left-width: 17px;
    border-top-width: 10px;
    margin-left: 4px;
  }
  .live-play-button span {
    border-bottom-width: 14px;
    border-left-width: 22px;
    border-top-width: 14px;
    margin-left: 6px;
  }
  .schedule-section { padding: 0 12px 18px; }
  .section-heading { align-items: start; display: grid; gap: 4px; }
  .section-heading h2 { font-size: 24px; }
  .schedule-card { flex-basis: 172px; }
  .schedule-card img { aspect-ratio: 16 / 8.5; }
  .schedule-card div { padding: 9px; }
  .schedule-card h3 { font-size: 13px; }
  .schedule-card p { display: none; }
  .schedule-card time,
  .schedule-card small,
  .countdown { font-size: 10px; }
  .schedule-page { padding: 22px 12px 34px; }
  .schedule-page .section-heading { align-items: start; }
  .schedule-page-grid { grid-template-columns: 1fr; }
  .schedule-card-wide p { display: block; min-height: auto; }
  .event-player-page { padding: 22px 12px 34px; }
  .event-player-shell { min-height: 260px; padding: 18px; }
  .event-player-panel strong { font-size: 22px; }
  .ad-slot { margin: 0 16px 18px; min-height: 74px; }
  .home-content-grid { padding: 0 16px; }
  .home-intro { margin: 8px 0 22px; }
  .article-grid { grid-template-columns: 1fr; padding: 0 0 34px; }
  .admin-shell { padding: 18px 12px 34px; }
  .quick-toggle-grid { grid-template-columns: 1fr; }
  .admin-sidebar {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .admin-sidebar::-webkit-scrollbar { display: none; }
  .admin-sidebar strong { display: none; }
  .admin-sidebar a { flex: 0 0 auto; font-size: 11px; padding: 8px 10px; }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-grid strong { font-size: 24px; }
  .panel, .auth-card { padding: 18px; }
  .toggle-row { grid-template-columns: 1fr; }
  .admin-list { margin: 0; }
  .article-page { margin: 18px 16px 34px; }
  .article-body { padding: 24px 18px; }
  .article-body h1 { font-size: 34px; }
  .article-body p { font-size: 15px; line-height: 1.72; }
  .legal-page { margin: 18px 16px 34px; padding: 24px 18px; }
  .legal-page h1 { font-size: 36px; }
  footer { gap: 14px; }
}
