:root {
  --bg: #0b0c0f;
  --bg-2: #12141a;
  --panel: #181b22;
  --line: #2a2e38;
  --text: #ece8e1;
  --muted: #9a948a;
  --accent: #e23d4a;
  --accent-2: #ff6b73;
  --ok: #c8f06c;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --max: 1120px;
  --font: "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}
.site-footer {
  flex-shrink: 0;
  margin-top: auto;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input { font-family: inherit; }
.wrap { width: min(100% - 32px, var(--max)); margin-inline: auto; }
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus { left: 8px; background: #fff; color: #000; padding: 8px 12px; z-index: 80; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 12, 15, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-size: 0.92rem;
}
.logo:hover { text-decoration: none; color: #fff; }
.logo i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(226, 61, 74, 0.18);
}
.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}
.nav a:hover, .nav a.is-on { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none !important;
}
.nav-drop-item { display: flex; align-items: center; }
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
  cursor: pointer;
}
.nav-drop-btn:hover,
.nav-drop-btn.is-on { color: var(--text); }
.nav-drop-btn .caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.18s ease;
}
.nav-drop-btn[aria-expanded="true"] .caret { transform: rotate(180deg); }
.nav-drop {
  display: none;
  position: fixed;
  top: 64px;
  left: 2.5vw;
  width: 95vw;
  max-height: min(78vh, 720px);
  overflow: auto;
  z-index: 45;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow);
  padding: 18px 0 22px;
}
.nav-drop.open { display: block; }
.nav-drop-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.nav-drop-head strong { color: var(--text); font-size: 1rem; }
.nav-drop-head a { font-size: 0.85rem; }
.nav-drop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 4px 18px;
}
.nav-drop-grid a {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 6px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-drop-grid a:hover { color: var(--text); text-decoration: none; }
.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.hero {
  position: relative;
  padding: 36px 0 40px;
  overflow: hidden;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(226, 61, 74, 0.22), transparent 60%),
    radial-gradient(700px 360px at 10% 110%, rgba(200, 240, 108, 0.06), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: center;
}
.kicker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(200, 240, 108, 0.12);
  animation: pulse 1.8s ease-in-out infinite;
}
h1 {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.04em;
}
.lede {
  color: var(--muted);
  max-width: 48ch;
  margin: 0 0 22px;
  font-size: 1.05rem;
}
.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-stats li {
  color: var(--muted);
  font-size: 0.88rem;
  border-left: 2px solid var(--accent);
  padding-left: 10px;
}
.hero-stats b {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
}

.theater { display: grid; gap: 12px; }
.stage-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0e1016;
  box-shadow: var(--shadow), 0 0 0 1px rgba(226, 61, 74, 0.08);
}
.match-screen {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 42%, rgba(226, 61, 74, 0.16), transparent 70%),
    linear-gradient(180deg, #161922 0%, #0c0e13 100%);
}
.match-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.match-screen.is-seek .match-vid,
.match-screen.is-skip .match-vid { opacity: 0; }
.seek-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px 70px;
  background: #0c0e13;
  pointer-events: none;
}
.seek-layer[hidden] { display: none !important; }
.radar {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
}
.seek-layer.is-skip .radar { opacity: 0; }
.radar span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  margin: -50% 0 0 -50%;
  border: 1px solid rgba(226, 61, 74, 0.42);
  border-radius: 50%;
  animation: ping 2.4s ease-out infinite;
}
.match-status {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0 14px;
  max-width: 90%;
  text-align: center;
  color: #fff;
  font-family: "Outfit", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.05rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-shadow: 0 2px 28px #000, 0 0 20px #000;
}
.seek-layer.is-skip .match-status {
  letter-spacing: 0.46em;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}
.seek-layer.is-seek .match-status {
  letter-spacing: 0.02em;
  font-size: clamp(1.28rem, 3.6vw, 1.8rem);
  font-weight: 600;
}
.radar span:nth-child(2) { animation-delay: 0.7s; }
.radar span:nth-child(3) { animation-delay: 1.4s; }
.match-meta {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.live {
  font-size: 0.68rem;
  color: #fff;
  background: var(--accent);
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 14px;
}
.bars i {
  width: 3px;
  background: var(--ok);
  border-radius: 2px;
  animation: eq 0.9s ease-in-out infinite;
}
.bars i:nth-child(1) { height: 40%; animation-delay: 0s; }
.bars i:nth-child(2) { height: 90%; animation-delay: 0.15s; }
.bars i:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.bars i:nth-child(4) { height: 75%; animation-delay: 0.1s; }
.seek-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 48px;
  z-index: 5;
  margin: 0;
  text-align: center;
  color: #d6d0c6;
  font-size: 0.86rem;
  text-shadow: 0 1px 8px #000;
}
.match-screen.is-skip .seek-copy,
.match-screen.is-seek .seek-copy { opacity: 0; }
.pip {
  position: absolute;
  left: 14px;
  bottom: 78px;
  width: 132px;
  height: 168px;
  z-index: 4;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #151820;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.pip-off {
  position: relative;
  height: 100%;
  background: #000;
  overflow: hidden;
}
.snow {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, #fff 0 0.6px, transparent 0.7px 3px),
    repeating-radial-gradient(circle at 80% 70%, #bbb 0 0.5px, transparent 0.6px 2.5px),
    repeating-linear-gradient(0deg, #111 0 1px, #eee 1px 2px);
  background-size: 5px 5px, 4px 4px, 2px 3px;
  filter: contrast(1.8) grayscale(1);
  opacity: 0.95;
  animation: snow 0.12s steps(2) infinite;
}
.cam-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.68rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 3px 8px;
  border-radius: 999px;
}
.call-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 12, 0.92));
}
.icon-btn {
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(24, 27, 34, 0.9);
  color: var(--muted);
  cursor: default;
  font-size: 0.72rem;
}
.icon-btn.ghost { margin-right: auto; }
.start {
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0 18px;
}
.start.slim { min-height: 44px; margin-left: auto; width: auto; }
.start:hover { background: #c9333f; }
.start:disabled { opacity: 0.45; cursor: not-allowed; }

.who {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px 16px;
}
.who-label {
  margin: 0 0 8px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.genders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gbtn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text);
  border-radius: 12px;
  min-height: 52px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gbtn.is-on {
  border-color: var(--accent);
  background: rgba(226, 61, 74, 0.14);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.fine {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

@keyframes ping {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}
@keyframes eq {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@keyframes snow {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-3%, 2%); }
  100% { transform: translate(2%, -2%); }
}

.page-hero { padding: 36px 0 10px; }
.page-hero p { color: var(--muted); max-width: 62ch; }

.content { padding: 10px 0 56px; }
.content h2 {
  font-size: 1.45rem;
  margin: 32px 0 10px;
  letter-spacing: -0.02em;
}
.content h3 { font-size: 1.08rem; margin: 22px 0 8px; }
.content p { margin: 0 0 14px; }
.content ul, .content ol { padding-left: 1.15rem; color: var(--text); }
.content li { margin: 0 0 8px; }
.content li::marker { color: var(--accent); }

.grid-3, .grid-2 {
  display: grid;
  gap: 12px;
  margin: 16px 0 8px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; color: var(--muted); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 0.95rem;
}
th, td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}
th { background: var(--bg-2); }
td:nth-child(2), th:nth-child(2) { color: var(--ok); }
.note { color: var(--muted); font-size: 0.9rem; }

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0 0 8px;
  background: var(--panel);
}
summary { cursor: pointer; font-weight: 650; }
details p { margin: 10px 0 0; color: var(--muted); }
details p + p { margin-top: 8px; }

.cta-band {
  margin: 28px 0 8px;
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1c1518, #141218);
  border: 1px solid #3a2428;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.cta-band p { margin: 6px 0 0; color: var(--muted); }
.cta-band h2 { margin: 0; }

.dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0 24px;
}
.dir-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.dir-card h3 { margin: 0 0 6px; font-size: 1.02rem; }
.dir-card h3 a { color: var(--text); }
.dir-card h3 a:hover { color: #fff; text-decoration: none; }
.dir-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 16px;
}
.chip {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 999px;
}
.chip.on { border-color: #3a2428; color: var(--accent-2); }
.updated { color: var(--muted); font-size: 0.85rem; margin: 0 0 8px; }
.related-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 8px 0 20px;
}
.related-row a { color: var(--muted); }

.crumbs { color: var(--muted); font-size: 0.85rem; margin-bottom: 10px; }
.crumbs a { color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.88rem;
  background: var(--bg);
}
.foot-blurb { margin: 8px 0 16px; max-width: 62ch; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 4px;
}
.foot-links a {
  color: var(--muted);
  white-space: nowrap;
  padding: 4px 8px 4px 0;
}
.foot-links a:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: #5c616c;
  text-decoration: none;
  pointer-events: none;
}
.foot-sites {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.foot-label {
  color: var(--text);
  font-weight: 600;
  margin-right: 6px;
}
.site-footer a { color: var(--muted); }
.legal {
  margin-top: 22px;
  text-align: center;
}

#bot-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
}
#bot-gate[hidden] { display: none !important; }
.gate {
  width: min(100%, 420px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.gate h2 { margin: 0 0 8px; font-size: 1.2rem; }
.gate p { color: var(--muted); margin: 0 0 16px; }
.gate label {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  cursor: pointer;
}
.gate input { width: 18px; height: 18px; accent-color: #3b82f6; }
.spin-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.spin-wrap[hidden] { display: none !important; }
.spin {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .spin, .radar span, .bars i, .dot, .snow { animation: none; }
  .spin { border-top-color: var(--ok); }
  html { scroll-behavior: auto; }
}

.sticky-cta { display: none; }

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .cta-band, .dir-grid { grid-template-columns: 1fr; }
  .cta-band { display: block; }
  .cta-band .start { width: 100%; }
  .stage-frame { min-height: 380px; }
  .pip { width: 100px; height: 128px; }
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 0 0 env(safe-area-inset-bottom, 0);
    background: #c9333f;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.45);
  }
  .sticky-cta .start {
    width: 100%;
    min-height: 56px;
    border-radius: 0;
    font-size: 1.08rem;
    letter-spacing: 0.02em;
  }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .nav-drop-item { width: 100%; flex-direction: column; align-items: stretch; }
  .nav-drop-btn { justify-content: space-between; padding: 8px 0; }
  .nav-drop {
    position: static;
    width: 100%;
    max-height: none;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    padding: 12px 0 4px;
  }
  .nav-drop-head { margin-bottom: 8px; padding-bottom: 8px; }
  .nav-drop-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    max-height: 52vh;
    overflow: auto;
  }
}
