:root {
  --ink: #07122a;
  --ink-2: #0b1e48;
  --panel: #102a58;
  --surface: #152a5c;
  --gold: #f9d423;
  --gold-2: #ffe566;
  --gold-deep: #c9a40a;
  --text: #f4f7ff;
  --muted: #a8b4c8;
  --line: rgba(249, 212, 35, 0.28);
  --ok: #3dd68c;
  --danger: #ff5d6c;
  --max: 1180px;
  --space: 1.15rem;
  --header-h: 76px;
  --radius: 16px;
  --font-display: "Teko", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(900px 420px at 8% -10%, rgba(249, 212, 35, 0.16), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(36, 99, 235, 0.22), transparent 50%),
    linear-gradient(180deg, #081530 0%, var(--ink) 40%, #050d1c 100%);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: var(--header-h);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
ul { list-style: none; }

.wrap { width: min(100% - (var(--space) * 2), var(--max)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: #111; padding: .6rem 1rem; font-weight: 800;
}
.skip:focus { left: 1rem; top: 1rem; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 60; height: var(--header-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(7, 18, 42, 0.92), rgba(7, 18, 42, 0));
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-solid {
  background: rgba(7, 18, 42, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(100% - (var(--space) * 2), var(--max));
  margin-inline: auto;
  display: flex; align-items: center; gap: 1rem; justify-content: space-between;
}
.brand {
  display: inline-flex; align-items: center; gap: .7rem; font-weight: 800;
}
.brand img {
  width: 44px; height: 44px; border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(249, 212, 35, 0.45);
}
.brand span {
  font-family: var(--font-display);
  font-size: 1.85rem; letter-spacing: .04em; line-height: 1;
  color: var(--text);
}
.brand b { color: var(--gold); font-weight: 400; }

.nav-desk { display: none; gap: .85rem; align-items: center; }
.nav-desk a {
  color: var(--muted); font-size: .86rem; font-weight: 700;
  transition: color .2s ease;
}
.nav-desk a:hover, .nav-desk a.is-active { color: var(--gold); }

.header-actions { display: flex; gap: .5rem; align-items: center; }
.menu-toggle {
  width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--line); display: grid; place-items: center; gap: 5px;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--gold);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: .7rem 1.15rem; border-radius: 999px;
  font-weight: 800; letter-spacing: .02em; transition: transform .2s ease, background .2s ease, border-color .2s ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #141208; box-shadow: 0 10px 24px rgba(249, 212, 35, 0.25);
}
.btn-gold:hover { background: linear-gradient(180deg, #fff1a0, var(--gold-2)); }
.btn-line {
  border-color: var(--line); color: var(--text); background: rgba(255,255,255,.04);
}
.btn-line:hover { border-color: var(--gold); }
.btn-sm { min-height: 36px; padding: .45rem .9rem; font-size: .85rem; }
.btn-lg { min-height: 52px; padding: .85rem 1.4rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-play {
  min-height: 34px; padding: .4rem .95rem; border-radius: 999px;
  background: var(--gold); color: #141208; font-size: .82rem; font-weight: 800;
}

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 auto; z-index: 55;
  background: rgba(7, 18, 42, 0.98); border-bottom: 1px solid var(--line);
  padding: 1rem var(--space) 1.2rem;
  display: grid; gap: .55rem;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  padding: .7rem .85rem; border-radius: 10px; background: rgba(255,255,255,.04);
  font-weight: 700; color: var(--muted);
}
.mobile-nav a:hover { color: #fff; background: rgba(249, 212, 35, 0.12); }

.flash {
  background: linear-gradient(90deg, #9a7a00, var(--gold), #fff1a0);
  color: #1a1400; text-align: center; font-weight: 800; font-size: .9rem;
  padding: .55rem var(--space);
}
.flash a { text-decoration: underline; color: #1a1400; }

.hero {
  position: relative; padding: 1.6rem 0 2.8rem; overflow: hidden;
}
.hero-grid {
  display: grid; gap: 1.4rem; align-items: stretch;
}
.kicker {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--gold); font-size: .78rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.kicker::before {
  content: ""; width: 18px; height: 2px; background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3.2rem, 9vw, 5.8rem); line-height: .9;
  text-transform: uppercase; margin: .55rem 0 .8rem; max-width: 14ch;
}
.hero h1 span, h1 + .h1-sub { color: var(--gold); }
.lead { color: var(--muted); max-width: 54ch; font-size: 1.05rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.25rem; }
.stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem; margin-top: 1.4rem;
}
.stats li {
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(18, 42, 92, 0.55); padding: .85rem .9rem;
}
.stats strong {
  display: block; font-family: var(--font-display); font-size: 1.8rem;
  color: var(--gold); line-height: 1;
}
.stats span { color: var(--muted); font-size: .78rem; font-weight: 600; }

.vault {
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(160deg, rgba(249, 212, 35, 0.12), transparent 40%),
    rgba(12, 28, 62, 0.92);
  box-shadow: var(--shadow); overflow: hidden;
  display: grid;
}
.vault-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: .75rem; padding: .95rem 1.05rem; border-bottom: 1px solid var(--line);
}
.vault-head h2 {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1;
}
.pill {
  display: inline-flex; align-items: center; min-height: 26px;
  padding: .15rem .55rem; border-radius: 999px; font-size: .7rem; font-weight: 800;
  background: rgba(249, 212, 35, 0.16); color: var(--gold); border: 1px solid var(--line);
}
.pill-live { background: rgba(255, 93, 108, 0.16); color: #ff8a95; border-color: rgba(255, 93, 108, 0.4); }
.pill-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--danger); margin-right: .35rem;
  box-shadow: 0 0 0 0 rgba(255, 93, 108, 0.7);
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(255, 93, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 93, 108, 0); }
}

.ticket {
  display: grid; gap: .55rem; padding: .85rem 1.05rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticket a.row {
  display: grid; grid-template-columns: 1fr auto; gap: .7rem; align-items: center;
  padding: .7rem .75rem; border-radius: 12px; transition: background .2s ease;
}
.ticket a.row:hover { background: rgba(249, 212, 35, 0.08); }
.ticket strong { display: block; font-size: .95rem; }
.ticket small { color: var(--muted); font-size: .76rem; }
.ticket em {
  font-style: normal; font-family: var(--font-display);
  font-size: 1.55rem; color: var(--gold); line-height: 1;
}
.vault-foot { padding: 1rem 1.05rem 1.15rem; }

.section { padding: clamp(2.4rem, 6vw, 4.2rem) 0; }
.section-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  align-items: end; margin-bottom: 1.35rem;
}
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600; line-height: .95; text-transform: uppercase; max-width: 16ch;
}
.section-lead { color: var(--muted); max-width: 52ch; margin-top: .45rem; }

.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1rem; }
.chips button, .chips .chip {
  min-height: 36px; padding: .4rem .85rem; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
  color: var(--muted); font-weight: 700; font-size: .82rem;
}
.chips button.is-on, .chips .chip.is-on {
  background: var(--gold); color: #151000; border-color: var(--gold);
}

.board {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(12, 28, 62, 0.72); overflow: hidden;
}
.line {
  display: grid; grid-template-columns: 64px 1fr; gap: .85rem; align-items: center;
  padding: .9rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.line:last-child { border-bottom: 0; }
.line.is-hidden { display: none; }
.line img, .line .thumb {
  width: 64px; height: 64px; border-radius: 12px; object-fit: cover;
}
.line .thumb { display: block; overflow: hidden; }
.league { display: block; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.line h3 { font-size: 1.05rem; margin: .15rem 0; }
.line h3 em { font-style: normal; color: var(--muted); font-weight: 500; }
.meta { color: var(--muted); font-size: .8rem; }
.odds {
  grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem;
}
.odds a {
  min-height: 3rem; border: 1px solid var(--line); border-radius: 10px;
  background: rgba(7, 18, 42, 0.75); display: grid; place-items: center; gap: .05rem;
  text-align: center; transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.odds a:hover {
  border-color: var(--gold); background: rgba(249, 212, 35, 0.12); transform: translateY(-1px);
}
.odds small { color: var(--muted); font-size: .7rem; font-weight: 700; }
.odds strong {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--gold); line-height: 1;
}

.grid-cards {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem;
}
a.card, .card-link {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: rgba(15, 32, 70, 0.85); display: grid;
  transition: transform .25s ease, border-color .25s ease; color: inherit;
}
a.card:hover { transform: translateY(-4px); border-color: rgba(249, 212, 35, 0.65); }
a.card.is-hidden { display: none; }
.card img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .35s ease; }
a.card:hover img { transform: scale(1.05); }
.card-body { padding: .85rem .9rem 1rem; display: grid; gap: .35rem; }
.card-body h3 { font-size: 1rem; }
.card-body p { color: var(--muted); font-size: .8rem; }
.rank {
  position: absolute; top: .65rem; left: .65rem; z-index: 2;
  font-family: var(--font-display); font-size: 1.5rem; color: #151000;
  background: var(--gold); min-width: 34px; height: 34px; border-radius: 8px;
  display: grid; place-items: center; line-height: 1;
}
.card-wrap { position: relative; }

.live-grid {
  display: grid; gap: .85rem;
}
.live-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); min-height: 210px; display: grid; align-items: end;
}
.live-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.live-card .shade {
  position: relative; z-index: 1; padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(7, 18, 42, 0.92));
  display: grid; gap: .35rem; justify-items: start;
}
.live-wide { min-height: 280px; }

.promo {
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background:
    linear-gradient(125deg, rgba(249, 212, 35, 0.16), transparent 42%),
    rgba(12, 28, 62, 0.9);
  display: grid; gap: 1.2rem;
}
.promo h2 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: .95; text-transform: uppercase; max-width: 14ch;
}
.promo ul { display: grid; gap: .45rem; color: var(--muted); }
.promo ul li::before { content: "◆ "; color: var(--gold); }

.guide {
  display: grid; gap: .85rem;
}
.guide article {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(12, 28, 62, 0.65); padding: 1.15rem;
}
.guide h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  text-transform: uppercase; color: var(--gold); margin-bottom: .4rem;
}
.guide p { color: var(--muted); }

.seo-block {
  display: grid; gap: 1rem;
}
.seo-block article {
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  background: rgba(8, 18, 40, 0.55); padding: 1.2rem 1.25rem;
}
.seo-block h2, .seo-block h3 {
  font-family: var(--font-display); text-transform: uppercase;
  font-weight: 600; line-height: 1; margin-bottom: .55rem;
}
.seo-block h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); }
.seo-block h3 { font-size: 1.55rem; }
.seo-block p, .seo-block li { color: var(--muted); margin-bottom: .55rem; }
.seo-block ul { list-style: disc; padding-left: 1.2rem; }

.faq details {
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(12, 28, 62, 0.65); margin-bottom: .55rem; padding: .2rem 0;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1rem 1.1rem;
  font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { padding: 0 1.1rem 1.1rem; color: var(--muted); }

.final {
  text-align: center; border-radius: 20px; padding: 2.6rem 1.2rem;
  border: 1px solid rgba(249, 212, 35, 0.4);
  background: radial-gradient(500px 180px at 50% 0%, rgba(249, 212, 35, 0.18), transparent 70%), rgba(12, 28, 62, 0.85);
}
.final h2 {
  font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4rem);
  text-transform: uppercase; line-height: .95; margin-bottom: .7rem;
}

.hub-map {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem;
}
.hub-map a {
  border: 1px solid var(--line); border-radius: 14px; padding: .9rem;
  background: rgba(255,255,255,.03); display: grid; gap: .2rem;
}
.hub-map a:hover { border-color: var(--gold); }
.hub-map strong { font-size: .95rem; }
.hub-map span { color: var(--muted); font-size: .78rem; }

.footer {
  border-top: 1px solid var(--line); padding: 2.4rem 0 1.6rem; margin-top: 1rem;
  background: rgba(4, 10, 22, 0.7);
}
.foot-grid {
  display: grid; gap: 1.4rem; margin-bottom: 1.4rem;
}
.foot-grid h3 {
  font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase;
  color: var(--gold); margin-bottom: .55rem;
}
.foot-grid a { display: block; color: var(--muted); padding: .2rem 0; font-weight: 600; }
.foot-grid a:hover { color: var(--gold); }
.age {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1rem;
  color: var(--muted); font-size: .82rem; display: grid; gap: .45rem;
}
.age-badge {
  display: inline-grid; place-items: center; min-width: 36px; height: 36px;
  border-radius: 8px; background: var(--gold); color: #151000; font-weight: 900; margin-right: .4rem;
}

.subnav {
  position: sticky; top: var(--header-h); z-index: 40;
  border-bottom: 1px solid var(--line); background: rgba(7, 18, 42, 0.94);
  backdrop-filter: blur(10px);
}
.subnav-inner {
  width: min(100% - (var(--space) * 2), var(--max)); margin-inline: auto;
  display: flex; gap: .35rem; padding: .65rem 0; overflow-x: auto;
}
.subnav-inner a {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0 .75rem;
  border-radius: 999px; font-size: .8rem; font-weight: 700; color: var(--muted);
  background: rgba(255,255,255,.04); white-space: nowrap;
}
.subnav-inner a:hover, .subnav-inner a.is-active { background: var(--gold); color: #151000; }

.page-hero {
  position: relative; min-height: clamp(300px, 44vw, 460px);
  display: grid; align-items: end; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero-media, .page-hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.page-hero-media { z-index: 0; display: block; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(7, 18, 42, 0.96) 0%, rgba(7, 18, 42, 0.72) 48%, rgba(7, 18, 42, 0.28) 100%),
    linear-gradient(0deg, rgba(249, 212, 35, 0.22), transparent 55%);
}
.page-hero-copy {
  position: relative; z-index: 2;
  width: min(100% - (var(--space) * 2), var(--max));
  margin: 0 auto; padding: clamp(1.5rem, 4vw, 2.8rem) 0;
  display: grid; gap: .75rem; max-width: 780px; justify-self: start;
}
.page-hero-copy .cta-row, .page-hero-copy .btn { position: relative; z-index: 3; pointer-events: auto; }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .78rem; font-weight: 700; color: var(--muted); }
.crumbs a { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: .92; text-transform: uppercase;
}
.page-hero h1 span, h1 + .h1-sub { color: var(--gold); }

.access-panel { padding: 1.4rem 0 .2rem; }
.access-inner {
  border: 1px solid rgba(249, 212, 35, 0.45); border-radius: 16px;
  padding: 1.35rem 1.4rem;
  background: radial-gradient(420px 160px at 0% 0%, rgba(249, 212, 35, 0.18), transparent 70%), rgba(12, 28, 62, 0.9);
  display: grid; gap: .75rem;
}
.access-inner h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem);
  text-transform: uppercase; color: var(--gold); line-height: 1;
}
.access-inner p { color: var(--muted); max-width: 62ch; }
.access-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.page-body { padding: 2.2rem 0 3rem; }
.page-grid {
  display: grid; gap: 1.2rem; align-items: start;
}
.page-article {
  border: 1px solid var(--line); border-radius: 16px;
  background: rgba(12, 28, 62, 0.7); padding: 1.35rem; display: grid; gap: 1rem;
}
.page-article h2 {
  font-family: var(--font-display); font-size: 1.7rem; text-transform: uppercase; color: var(--gold);
}
.page-article p, .page-article li { color: var(--muted); }
.page-article ul { list-style: disc; padding-left: 1.2rem; display: grid; gap: .35rem; }
.page-side {
  border: 1px solid var(--line); border-radius: 16px;
  background: rgba(8, 18, 40, 0.8); padding: 1.15rem; display: grid; gap: .85rem;
  position: sticky; top: calc(var(--header-h) + 58px);
}
.page-side h3 {
  font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; color: var(--gold);
}
.related a {
  display: block; border: 1px solid rgba(255,255,255,.08); border-radius: 12px;
  padding: .7rem .8rem; color: var(--muted); font-weight: 700;
}
.related a:hover { border-color: var(--gold); color: #fff; }

.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-animating {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-animating.is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 760px) {
  .nav-desk { display: flex; }
  .menu-toggle { display: none; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; }
  .grid-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .live-grid { grid-template-columns: 1.35fr 1fr 1fr; }
  .live-wide { grid-row: span 2; min-height: 100%; }
  .guide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hub-map { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .promo { grid-template-columns: 1.2fr .8fr; align-items: center; }
  .page-grid { grid-template-columns: 1fr .78fr; }
  .line { grid-template-columns: 72px 1.3fr 1fr; }
  .odds { grid-column: auto; }
}

@media (max-width: 759px) {
  .nav-desk, .header-actions .btn-line { display: none; }
  .stats { grid-template-columns: 1fr; }
}
