:root {
  --bg: #09070d;
  --bg-soft: #130e1b;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-solid: #17101f;
  --text: #fff7f7;
  --muted: #b7aebb;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #ff284d;
  --primary-2: #ffb000;
  --accent: #8b5cf6;
  --success: #1fd67b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 40, 77, 0.25), transparent 34rem),
    radial-gradient(circle at 86% 12%, rgba(139, 92, 246, 0.20), transparent 36rem),
    linear-gradient(180deg, #0b0710 0%, #09070d 48%, #060509 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
code {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.08rem 0.35rem;
  font-size: 0.92em;
}
.site-shell { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 18px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 7, 13, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.30);
}
.brand { display: inline-flex; align-items: center; gap: 0.72rem; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 24px rgba(255, 40, 77, 0.35);
}
.brand strong, .brand em { display: block; line-height: 1.05; }
.brand strong { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.brand em { font-size: 1.05rem; font-style: normal; font-weight: 900; }
.main-nav { display: flex; align-items: center; gap: 1.1rem; color: var(--muted); font-weight: 700; }
.main-nav a:hover { color: var(--text); }
.nav-toggle { display: none; }
.mobile-nav { display: none; }

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
  min-height: 620px;
  padding: 72px 0 44px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(31, 214, 123, 0.75);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(31, 214, 123, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 214, 123, 0); }
}
.hero h1 {
  margin: 18px 0;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  max-width: 780px;
}
.hero p { color: var(--muted); font-size: 1.06rem; line-height: 1.72; max-width: 660px; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 900;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); border: 0; color: #15070b; }
.btn-ghost { background: rgba(255, 255, 255, 0.06); }
.hero-player-card {
  padding: 16px;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}
.mock-player {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 40, 77, 0.88), rgba(139, 92, 246, 0.65)),
    radial-gradient(circle at 70% 20%, rgba(255, 176, 0, 0.7), transparent 16rem),
    #1a0f20;
}
.mock-player::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: conic-gradient(from 110deg, rgba(255,255,255,0.14), transparent 20%, rgba(255,255,255,0.12), transparent 45%);
  animation: rotate 9s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.scanline {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 100% 12px;
  mix-blend-mode: overlay;
}
.play-orb {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0,0,0,0.32);
}
.player-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px;
  border-radius: 18px;
  background: rgba(8, 7, 10, 0.55);
  backdrop-filter: blur(16px);
}
.player-label span, .live-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.58rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.stats-row div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}
.stats-row strong, .stats-row span { display: block; }
.stats-row strong { font-size: 1.35rem; }
.stats-row span { color: var(--muted); font-size: 0.78rem; }

.toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 18px 0;
}
.toolbar h2, .section-heading h2, .guide-card h2 { margin: 0.35rem 0 0; font-size: clamp(1.7rem, 4vw, 3rem); letter-spacing: -0.05em; }
.search-wrap { width: min(430px, 100%); }
.search-wrap input {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line);
  outline: none;
  padding: 0 1.1rem;
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
  font: inherit;
}
.search-wrap input:focus { border-color: rgba(255, 176, 0, 0.7); }
.category-tabs {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 8px 0 20px;
}
.category-tab {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 0.95rem;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}
.category-tab.active { color: #15070b; background: linear-gradient(135deg, var(--primary-2), #fff1a7); border-color: transparent; }
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.channel-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}
.thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--thumb-a), var(--thumb-b));
}
.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.36), transparent 9rem),
    linear-gradient(transparent, rgba(0,0,0,0.36));
}
.thumb-letter {
  position: relative;
  z-index: 1;
  font-size: 4.2rem;
  font-weight: 1000;
  letter-spacing: -0.1em;
  text-shadow: 0 18px 36px rgba(0,0,0,0.38);
}
.card-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border-radius: 999px;
  padding: 0.32rem 0.52rem;
  background: rgba(9, 7, 13, 0.72);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 900;
}
.card-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--success);
}
.card-body { padding: 14px; }
.card-body h3 { margin: 0 0 0.42rem; font-size: 1rem; }
.card-body p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.card-actions { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: 1rem; }
.category-pill { color: var(--primary-2); font-weight: 900; font-size: 0.78rem; }
.watch-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.58rem 0.82rem;
  background: var(--text);
  color: #120914;
  font-weight: 900;
  cursor: pointer;
}
.empty-state {
  grid-column: 1 / -1;
  padding: 42px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
}
.schedule-section, .guide-section { padding: 72px 0 0; }
.section-heading { max-width: 720px; }
.section-heading p { color: var(--muted); }
.schedule-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 20px;
}
.schedule-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
}
.schedule-time { font-weight: 1000; color: var(--primary-2); }
.schedule-title strong { display: block; }
.schedule-title span, .schedule-cat { color: var(--muted); font-size: 0.88rem; }
.guide-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
}
.guide-card p, .guide-card li { color: var(--muted); line-height: 1.75; }
.legal-note { color: #ffdca6 !important; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 74px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer strong, .footer span { display: block; }
.footer strong { color: var(--text); }

.watch-modal {
  width: min(980px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  color: var(--text);
  background: #09070d;
  box-shadow: var(--shadow);
}
.watch-modal::backdrop { background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(8px); }
.modal-inner { position: relative; padding: 14px; }
.modal-close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,0.58);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.video-frame {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: #000;
}
.video-frame video, .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
}
.offline-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 40, 77, 0.24), transparent 18rem),
    #070509;
}
.offline-state p { color: var(--muted); margin: 0; }
.modal-meta { padding: 18px 4px 6px; }
.modal-meta h3 { margin: 10px 0 8px; font-size: 1.6rem; }
.modal-meta p { margin: 0; color: var(--muted); line-height: 1.65; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 940px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255,255,255,0.08);
    font-size: 1.2rem;
  }
  .mobile-nav.open {
    display: grid;
    gap: 0.3rem;
    margin-top: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(9, 7, 13, 0.90);
  }
  .mobile-nav a { padding: 10px; color: var(--muted); font-weight: 800; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 48px; }
  .toolbar { align-items: stretch; flex-direction: column; }
  .channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .site-shell { width: min(100% - 22px, 1200px); }
  .brand em { font-size: 0.95rem; }
  .hero h1 { font-size: 2.7rem; }
  .mock-player { min-height: 260px; }
  .stats-row, .channel-grid { grid-template-columns: 1fr; }
  .schedule-item { grid-template-columns: 1fr; gap: 0.4rem; }
  .footer { flex-direction: column; }
}


.schedule-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 240px) auto;
  gap: 12px;
  align-items: center;
  margin: 0 0 18px;
}
.schedule-tools input,
.schedule-tools select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  font-weight: 800;
}
.schedule-tools select option { color: #111; }
.schedule-count {
  justify-self: end;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
}
.wc-schedule-item {
  grid-template-columns: 82px 1fr minmax(190px, 260px);
  align-items: center;
}
.match-number {
  width: 58px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 40, 77, 0.26), rgba(255, 176, 0, 0.18));
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 1000;
  letter-spacing: 0.03em;
}
.schedule-title small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.58);
  font-weight: 800;
}
.schedule-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
}
.schedule-et {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}
@media (max-width: 760px) {
  .schedule-tools { grid-template-columns: 1fr; }
  .schedule-count { justify-self: start; }
  .wc-schedule-item { grid-template-columns: 1fr; }
  .schedule-meta { justify-items: start; }
}


/* === Custom update: NovaLive only + clickable schedule === */
.toolbar {
  align-items: center;
}
.quick-menu {
  padding-top: 0;
}
.novalive-panel {
  padding: 6px 0 0;
}
.novalive-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 176, 0, 0.18), transparent 16rem),
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  box-shadow: var(--shadow);
}
.novalive-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  background: rgba(255, 176, 0, 0.14);
  border: 1px solid rgba(255, 176, 0, 0.24);
  color: var(--primary-2);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
}
.novalive-card h3 {
  margin: 0.9rem 0 0.55rem;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  letter-spacing: -0.04em;
}
.novalive-card p {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.novalive-watch {
  min-width: 190px;
}
.schedule-clickable {
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.schedule-clickable:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 176, 0, 0.34);
  background: rgba(255,255,255,0.08);
}
.schedule-clickable.expanded {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255, 176, 0, 0.42);
}
.schedule-expand {
  grid-column: 1 / -1;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: flex-start;
}
.schedule-watch-btn {
  min-width: 190px;
}
.match-number {
  width: 64px;
}
@media (max-width: 760px) {
  .schedule-expand {
    justify-content: stretch;
  }
  .schedule-watch-btn {
    width: 100%;
  }
}


/* Country/flag badges for World Cup schedule */
.wc-schedule-item {
  grid-template-columns: 118px 1fr minmax(210px, 290px);
}
.match-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  min-width: 108px;
}
.team-logo {
  display: inline-grid;
  place-items: center;
  gap: 2px;
  width: 46px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.flag-icon {
  font-size: 1.45rem;
  line-height: 1;
}
.team-code {
  color: rgba(255,255,255,0.78);
  font-size: 0.62rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
}
.versus-mini {
  color: var(--primary-2);
  font-size: 0.68rem;
  font-weight: 1000;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .wc-schedule-item {
    grid-template-columns: 1fr;
  }
  .match-teams {
    width: max-content;
  }
}


/* PNG team logos in World Cup schedule */
.wc-schedule-item {
  grid-template-columns: minmax(190px, 230px) 1fr minmax(190px, 260px);
}
.teams-logos {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}
.team-logo-chip {
  display: grid;
  justify-items: center;
  gap: 8px;
}
.team-logo-chip img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.28));
}
.team-logo-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.teams-versus {
  color: var(--primary-2);
  font-weight: 1000;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}
@media (max-width: 900px) {
  .wc-schedule-item {
    grid-template-columns: 1fr;
  }
  .teams-logos {
    justify-self: start;
    width: min(280px, 100%);
  }
}


/* === Final schedule logo layout update === */
.main-nav a[href="#panduan"],
.mobile-nav a[href="#panduan"],
.guide-section {
  display: none !important;
}
.wc-schedule-item {
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr) minmax(190px, 260px) !important;
  align-items: center;
  gap: 18px;
}
.match-logo-area {
  width: 100%;
}
.teams-logos {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(74px, 1fr) 42px minmax(74px, 1fr);
  align-items: center;
  justify-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  background: rgba(255,255,255,0.045);
}
.team-logo-chip {
  width: 100%;
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
}
.team-logo-chip img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 7px;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.32));
}
.team-logo-chip span {
  min-width: 52px;
  min-height: 24px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(0,0,0,0.20);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1;
}
.teams-versus {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #14070b;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 24px rgba(255, 40, 77, 0.24);
}
.schedule-title strong {
  font-size: clamp(1rem, 2vw, 1.12rem);
}
@media (max-width: 900px) {
  .wc-schedule-item {
    grid-template-columns: 1fr !important;
  }
  .teams-logos {
    width: min(340px, 100%);
  }
  .schedule-meta {
    justify-items: start;
  }
}
@media (max-width: 420px) {
  .teams-logos {
    grid-template-columns: minmax(62px, 1fr) 36px minmax(62px, 1fr);
    gap: 7px;
    padding: 10px;
  }
  .team-logo-chip img {
    width: 52px;
    height: 52px;
    padding: 6px;
  }
  .teams-versus {
    width: 36px;
    height: 36px;
    font-size: 0.65rem;
  }
  .team-logo-chip span {
    min-width: 46px;
    font-size: 0.66rem;
  }
}

/* === Score support for World Cup schedule === */
.score-box {
  min-width: 74px;
  min-height: 56px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #14070b;
  box-shadow: 0 10px 24px rgba(255, 40, 77, 0.24);
}
.score-box strong {
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0.02em;
}
.score-box span {
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 420px) {
  .score-box {
    min-width: 62px;
    min-height: 48px;
    border-radius: 15px;
  }
  .score-box strong {
    font-size: 0.92rem;
  }
  .score-box span {
    font-size: 0.56rem;
  }
}

/* === V9: Jadwal tabel per grup === */
.schedule-list {
  display: block;
}
.schedule-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.schedule-group-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.065);
  box-shadow: 0 18px 48px rgba(0,0,0,0.16);
}
.schedule-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255, 40, 77, 0.22), rgba(255, 176, 0, 0.12));
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.schedule-group-header h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}
.schedule-group-header span {
  color: var(--primary-2);
  font-size: 0.82rem;
  font-weight: 1000;
  white-space: nowrap;
}
.schedule-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.schedule-table th {
  padding: 11px 12px;
  text-align: left;
  color: rgba(255,255,255,0.58);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.schedule-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.075);
  vertical-align: middle;
}
.schedule-table-row {
  cursor: pointer;
  transition: background 0.18s ease;
}
.schedule-table-row:hover,
.schedule-table-row.expanded {
  background: rgba(255,255,255,0.07);
}
.table-matchup {
  display: grid;
  grid-template-columns: 68px 62px 68px;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.table-team {
  display: grid;
  justify-items: center;
  gap: 5px;
}
.table-team img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 5px;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.25));
}
.table-team span {
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 21px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  font-size: 0.63rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
}
.table-vs-box,
.table-score-box {
  display: grid;
  place-items: center;
  align-content: center;
  justify-self: center;
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #14070b;
  box-shadow: 0 10px 22px rgba(255, 40, 77, 0.20);
}
.table-vs-box {
  width: 42px;
  height: 42px;
  font-size: 0.70rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
}
.table-score-box {
  width: 62px;
  min-height: 46px;
  border-radius: 16px;
  gap: 3px;
}
.table-score-box strong {
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 1000;
}
.table-score-box span {
  font-size: 0.52rem;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.date-cell strong,
.date-cell span,
.meta-cell strong,
.meta-cell span {
  display: block;
}
.date-cell strong,
.meta-cell strong {
  color: var(--text);
  font-size: 0.84rem;
}
.date-cell span,
.meta-cell span,
.venue-cell {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.schedule-action-row td {
  background: rgba(255, 176, 0, 0.055);
  padding: 14px 12px 16px;
}
.schedule-action-row .schedule-watch-btn {
  min-width: 190px;
}
@media (max-width: 1100px) {
  .schedule-group-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .schedule-table {
    min-width: 570px;
  }
  .table-matchup {
    grid-template-columns: 58px 54px 58px;
    gap: 8px;
  }
  .table-team img {
    width: 36px;
    height: 36px;
  }
  .table-vs-box {
    width: 38px;
    height: 38px;
  }
  .table-score-box {
    width: 56px;
    min-height: 42px;
  }
}


/* === V10: Premium World Cup cards, no horizontal scroll === */
.schedule-section {
  position: relative;
}
.schedule-section::before {
  content: "";
  position: absolute;
  inset: 34px -5% auto auto;
  width: 420px;
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 176, 0, 0.18), transparent 62%),
    conic-gradient(from 90deg, rgba(255, 40, 77, 0.16), rgba(22, 163, 74, 0.10), rgba(59, 130, 246, 0.12), rgba(255, 176, 0, 0.16), rgba(255, 40, 77, 0.16));
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.75;
  z-index: -1;
}
.section-heading h2 {
  max-width: 820px;
}
.schedule-tools {
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    radial-gradient(circle at 6% 50%, rgba(255, 176, 0, 0.12), transparent 22rem);
}
.schedule-tools input,
.schedule-tools select {
  border-radius: 18px;
}
.schedule-list {
  display: block;
  overflow: visible;
}
.worldcup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
  margin-top: 22px;
}
.worldcup-group-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)),
    radial-gradient(circle at 100% 0%, rgba(255, 176, 0, 0.11), transparent 18rem),
    rgba(12, 10, 18, 0.96);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}
.worldcup-group-header {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(112, 25, 50, 0.78), rgba(255, 118, 20, 0.24)),
    radial-gradient(circle at 94% 20%, rgba(255, 176, 0, 0.38), transparent 8rem);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.worldcup-group-header::after {
  content: "?";
  position: absolute;
  right: 86px;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  font-size: 3.6rem;
  opacity: 0.08;
}
.worldcup-label {
  display: inline-flex;
  margin-bottom: 4px;
  color: var(--primary-2);
  font-size: 0.66rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.worldcup-group-header h3 {
  margin: 0;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}
.worldcup-group-header > strong {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffd36c;
  font-size: 0.78rem;
}
.worldcup-match-list {
  display: grid;
  gap: 0;
}
.wc-match-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(118px, 0.55fr) minmax(96px, 0.42fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.075);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.wc-match-card:last-child {
  border-bottom: 0;
}
.wc-match-card:hover,
.wc-match-card.expanded {
  background:
    linear-gradient(90deg, rgba(255, 176, 0, 0.075), transparent),
    rgba(255,255,255,0.055);
}
.wc-match-card:hover {
  transform: translateY(-1px);
}
.wc-match-left {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}
.table-matchup {
  display: grid;
  grid-template-columns: 46px 42px 46px;
  align-items: center;
  justify-content: start;
  gap: 8px;
}
.table-team {
  display: grid;
  justify-items: center;
  gap: 4px;
}
.table-team img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,255,255,0.24);
  padding: 5px;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.24));
}
.table-team span {
  min-width: 38px;
  min-height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(0,0,0,0.30);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  font-size: 0.56rem;
  font-weight: 1000;
  letter-spacing: 0.07em;
}
.table-vs-box,
.table-score-box {
  display: grid;
  place-items: center;
  align-content: center;
  justify-self: center;
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff264f, #ffb000);
  color: #14070b;
  box-shadow: 0 9px 22px rgba(255, 40, 77, 0.25);
}
.table-vs-box {
  width: 38px;
  height: 38px;
  font-size: 0.64rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
}
.table-score-box {
  width: 48px;
  min-height: 40px;
  border-radius: 14px;
  gap: 2px;
}
.table-score-box strong {
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 1000;
}
.table-score-box span {
  font-size: 0.48rem;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wc-fixture-text {
  min-width: 0;
}
.wc-fixture-text strong,
.wc-fixture-text span,
.wc-match-time strong,
.wc-match-time span,
.wc-match-meta strong,
.wc-match-meta span {
  display: block;
}
.wc-fixture-text strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.25;
}
.wc-fixture-text span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}
.wc-match-time,
.wc-match-meta {
  min-width: 0;
}
.wc-match-time strong,
.wc-match-meta strong {
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.35;
}
.wc-match-time span,
.wc-match-meta span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
  margin-top: 2px;
}
.wc-match-action {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  padding: 12px 0 2px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.wc-match-action .schedule-watch-btn {
  min-width: 190px;
}
.schedule-table-wrap,
.schedule-table {
  overflow: visible !important;
  min-width: 0 !important;
}
@media (max-width: 1180px) {
  .worldcup-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .worldcup-group-header {
    padding: 16px;
  }
  .wc-match-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }
  .wc-match-left {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .table-matchup {
    width: 100%;
    grid-template-columns: 1fr 48px 1fr;
    justify-content: stretch;
  }
  .table-team img {
    width: 42px;
    height: 42px;
  }
  .table-vs-box {
    width: 42px;
    height: 42px;
  }
  .wc-fixture-text strong,
  .wc-fixture-text span {
    white-space: normal;
  }
  .wc-match-time,
  .wc-match-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 11px;
    border-radius: 14px;
    background: rgba(255,255,255,0.045);
  }
  .wc-match-action .schedule-watch-btn {
    width: 100%;
  }
}
.watch-btn,
.novalive-watch {
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  animation: watchPulse 1.8s ease-in-out infinite;
}

.watch-btn:hover,
.novalive-watch:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 0 6px rgba(255, 176, 0, 0.12), 0 14px 34px rgba(255, 95, 0, 0.35);
}

.watch-btn::after,
.novalive-watch::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: watchShine 2.2s ease-in-out infinite;
}

.watch-btn.is-clicked,
.novalive-watch.is-clicked {
  animation: none;
  transform: scale(0.96);
  opacity: 0.85;
  pointer-events: none;
}

.watch-btn.is-clicked::after,
.novalive-watch.is-clicked::after {
  display: none;
}

@keyframes watchPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 176, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 176, 0, 0);
  }
}

@keyframes watchShine {
  0% {
    transform: translateX(-120%);
  }
  45%, 100% {
    transform: translateX(120%);
  }
}
.video-preview {
  position: relative;
  background: #000;
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
}

.preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.video-preview::before {
  display: none !important;
}

.video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.video-preview .scanline {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
}

.video-preview .play-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #ff284d;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.video-preview .player-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(18, 12, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.video-preview .player-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ff284d;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.video-preview .player-label strong {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-align: right;
}

@media (max-width: 640px) {
  .video-preview {
    min-height: 260px;
    border-radius: 22px;
  }

  .preview-video {
    min-height: 260px;
  }

  .video-preview .play-orb {
    width: 62px;
    height: 62px;
    font-size: 24px;
  }

  .video-preview .player-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }

  .video-preview .player-label strong {
    font-size: 13px;
  }
}

<'CSS'

