:root {
  --ink: #1a120c;
  --ink-2: #241810;
  --panel: #2a1c14;
  --orange: #ff6701;
  --orange-2: #ff8a33;
  --amber: #ffc28a;
  --text: #ffffff;
  --mute: #b8b8c2;
  --line: rgba(255, 103, 1, 0.35);
  --soft: rgba(255, 255, 255, 0.08);
  --ok: #3dd68c;
  --max: 1180px;
  --header: 76px;
  --radius: 18px;
  --font-display: "Rubik", sans-serif;
  --font-body: "Work Sans", sans-serif;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

*, *::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(720px 340px at 100% 0%, rgba(255, 103, 1, 0.22), transparent 55%),
    radial-gradient(560px 280px at 0% 20%, rgba(255, 103, 1, 0.08), transparent 50%),
    linear-gradient(180deg, #241810 0%, #1a120c 50%, #140e0a 100%);
  line-height: 1.55;
  min-height: 100vh;
  padding-top: var(--header);
  overflow-x: hidden;
}
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% - 2rem, var(--max)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--orange); color: #111; padding: .6rem 1rem; font-weight: 800;
}
.skip:focus { left: 1rem; top: 1rem; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 70; height: var(--header);
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(17, 17, 20, 0.96), rgba(17, 17, 20, 0));
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-solid {
  background: rgba(17, 17, 20, 0.95);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(100% - 2rem, var(--max)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 800; }
.brand img {
  width: 46px; height: 46px; border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 103, 1, 0.5);
}
.brand span {
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .04em;
  text-transform: none; line-height: 1;
}
.brand b { color: var(--orange); font-weight: 800; }

.nav-desk { display: none; gap: .6rem; flex-wrap: wrap; align-items: center; }
.nav-desk a { color: var(--mute); font-size: .78rem; font-weight: 700; }
.nav-desk a:hover, .nav-desk a.is-active { color: var(--orange-2); }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: .7rem 1.15rem; border-radius: 12px;
  font-weight: 800; border: 1px solid transparent; white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange {
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #141414; box-shadow: 0 12px 28px rgba(255, 103, 1, 0.3);
}
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.04); }
.btn-ghost:hover { border-color: var(--orange); }
.btn-sm { min-height: 36px; padding: .42rem .85rem; font-size: .84rem; }
.btn-lg { min-height: 52px; padding: .85rem 1.35rem; }
.btn-block { width: 100%; }
.btn-play {
  min-height: 34px; padding: .35rem .9rem; border-radius: 10px; width: fit-content;
  background: var(--orange); color: #141414; font-size: .8rem; font-weight: 800;
}

.drawer {
  position: fixed; inset: var(--header) 0 auto; z-index: 65;
  background: rgba(17, 17, 20, 0.98); border-bottom: 1px solid var(--line);
  padding: 1rem 1rem 1.2rem; display: grid; gap: .45rem;
}
.drawer[hidden] { display: none !important; }
.drawer a {
  padding: .7rem .85rem; border-radius: 12px; background: rgba(255,255,255,.04);
  font-weight: 700; color: var(--mute);
}

.show-bar {
  background: linear-gradient(90deg, #cc5200, #ff6600, #ffb366);
  color: #141414; text-align: center; font-weight: 800; font-size: .88rem;
  padding: .55rem 1rem;
}
.show-bar a { color: #141414; text-decoration: underline; }

.hero { padding: 1.6rem 0 2.4rem; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .12;
  background-image:
    linear-gradient(var(--soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--soft) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000, transparent 85%);
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: 1.3rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--orange-2); font-size: .76rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 14px; height: 14px; border: 2px solid var(--orange);
  border-radius: 3px; transform: rotate(45deg);
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 4.4rem); line-height: 1.02;
  margin: .55rem 0 .8rem; max-width: 14ch;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.lead { color: var(--mute); max-width: 54ch; font-size: 1.05rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.15rem; }
.metric-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .7rem; margin-top: 1.25rem; }
.metric {
  border: 1px solid var(--soft); border-radius: 14px;
  background: rgba(31, 31, 38, 0.8); padding: .85rem .9rem;
}
.metric strong {
  display: block; font-family: var(--font-display); font-size: 1.4rem;
  color: var(--orange-2); line-height: 1.1;
}
.metric span { color: var(--mute); font-size: .78rem; font-weight: 600; }

.show-card {
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(160deg, rgba(255,102,0,.16), transparent 42%),
    rgba(31, 31, 38, .95);
  box-shadow: var(--shadow); overflow: hidden;
}
.show-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: .95rem 1.05rem; border-bottom: 1px solid var(--soft);
}
.show-head h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; }
.live-dot {
  display: inline-flex; align-items: center; gap: .35rem;
  min-height: 26px; padding: .15rem .6rem; border-radius: 999px;
  font-size: .7rem; font-weight: 800; color: var(--ok);
  background: rgba(61, 214, 140, 0.12); border: 1px solid rgba(61, 214, 140, 0.35);
}
.live-dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
}
.coupon { display: grid; gap: .45rem; padding: .85rem 1.05rem; }
.coupon a {
  display: grid; grid-template-columns: 1fr auto; gap: .7rem; align-items: center;
  padding: .72rem .75rem; border-radius: 12px; transition: background .2s ease;
}
.coupon a:hover { background: rgba(255, 103, 1, 0.1); }
.coupon strong { display: block; font-size: .95rem; }
.coupon small { color: var(--mute); font-size: .76rem; }
.coupon em {
  font-style: normal; font-family: var(--font-display); font-weight: 800;
  font-size: 1.45rem; color: var(--orange-2);
}
.show-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.25rem;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.05; max-width: 18ch;
}
.section-lead { color: var(--mute); max-width: 52ch; margin-top: .4rem; }

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

.odds-table {
  border: 1px solid var(--soft); border-radius: var(--radius);
  background: rgba(31, 31, 38, .85); overflow: hidden;
}
.match {
  display: grid; grid-template-columns: 64px 1fr; gap: .85rem; align-items: center;
  padding: .9rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.match:last-child { border-bottom: 0; }
.match.is-hidden { display: none; }
.match img, .match .thumb { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; }
.match .thumb { display: block; overflow: hidden; }
.league {
  display: block; color: var(--orange-2); font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
}
.match h3 { font-size: 1.02rem; margin: .15rem 0; }
.match h3 i { font-style: normal; color: var(--mute); font-weight: 500; }
.meta { color: var(--mute); font-size: .8rem; }
.prices { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; }
.prices a {
  min-height: 3rem; border: 1px solid var(--soft); border-radius: 12px;
  background: rgba(17, 17, 20, .8); display: grid; place-items: center; gap: .05rem;
  text-align: center; transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.prices a:hover { border-color: var(--orange); background: rgba(255,102,0,.12); transform: translateY(-1px); }
.prices small { color: var(--mute); font-size: .7rem; font-weight: 700; }
.prices strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--orange-2); }

.catalog { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .85rem; }
a.tile {
  position: relative; border: 1px solid var(--soft); border-radius: var(--radius);
  overflow: hidden; background: rgba(31, 31, 38, .9); display: grid;
  transition: transform .25s ease, border-color .25s ease;
}
a.tile:hover { transform: translateY(-4px); border-color: rgba(255,102,0,.75); }
a.tile img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .35s ease; }
a.tile:hover img { transform: scale(1.05); }
.tile-body { padding: .85rem .9rem 1rem; display: grid; gap: .35rem; }
.tile-body h3 { font-size: 1rem; }
.tile-body p { color: var(--mute); font-size: .8rem; }
.badge-n {
  position: absolute; top: .65rem; left: .65rem; z-index: 2;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: #141414;
  background: var(--orange); min-width: 36px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
}

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

.promo-band {
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: linear-gradient(125deg, rgba(255,102,0,.2), transparent 42%), rgba(31,31,38,.92);
  display: grid; gap: 1.2rem;
}
.promo-band h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.1rem); line-height: 1.05; max-width: 16ch;
}
.promo-band ul { display: grid; gap: .45rem; color: var(--mute); }
.promo-band ul li::before { content: "▣ "; color: var(--orange); }

.path-grid { display: grid; gap: .85rem; }
.path-grid article {
  border: 1px solid var(--soft); border-radius: var(--radius);
  background: rgba(31,31,38,.7); padding: 1.15rem;
}
.path-grid h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
  color: var(--orange-2); margin-bottom: .4rem;
}
.path-grid p { color: var(--mute); }

.map-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .7rem; }
.map-grid a {
  border: 1px solid var(--soft); border-radius: 14px; padding: .95rem;
  background: rgba(255,255,255,.03); display: grid; gap: .25rem;
  position: relative; overflow: hidden;
}
.map-grid a::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--orange);
}
.map-grid a:hover { border-color: var(--orange); }
.map-grid strong { font-size: .95rem; padding-left: .35rem; }
.map-grid span { color: var(--mute); font-size: .78rem; padding-left: .35rem; }

.seo-stack { display: grid; gap: 1rem; }
.seo-stack article {
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  background: rgba(17,17,20,.55); padding: 1.25rem 1.3rem;
  border-left: 3px solid var(--orange);
}
.seo-stack h2, .seo-stack h3 {
  font-family: var(--font-display); font-weight: 800; line-height: 1.12; margin-bottom: .55rem;
}
.seo-stack h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); color: var(--orange-2); }
.seo-stack h3 { font-size: 1.3rem; }
.seo-stack p, .seo-stack li { color: var(--mute); margin-bottom: .55rem; }
.seo-stack ul { list-style: disc; padding-left: 1.2rem; }

.faq details {
  border: 1px solid var(--soft); border-radius: 12px;
  background: rgba(31,31,38,.7); margin-bottom: .55rem;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1rem 1.1rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.12rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { padding: 0 1.1rem 1.1rem; color: var(--mute); }

.final-band {
  text-align: center; border-radius: 20px; padding: 2.6rem 1.2rem;
  border: 1px solid rgba(255,102,0,.45);
  background: radial-gradient(500px 180px at 50% 0%, rgba(255,102,0,.22), transparent 70%), rgba(31,31,38,.9);
}
.final-band h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.3rem); margin-bottom: .7rem;
}

.footer {
  border-top: 1px solid var(--soft); padding: 2.4rem 0 1.6rem; margin-top: 1rem;
  background: rgba(12, 12, 15, .85);
}
.foot-grid { display: grid; gap: 1.4rem; margin-bottom: 1.4rem; }
.foot-grid h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: var(--orange-2); margin-bottom: .55rem;
}
.foot-grid a { display: block; color: var(--mute); padding: .2rem 0; font-weight: 600; }
.foot-grid a:hover { color: var(--orange-2); }
.age {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1rem;
  color: var(--mute); 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(--orange); color: #141414; font-weight: 900; margin-right: .4rem;
}

.rail-nav {
  position: sticky; top: var(--header); z-index: 40;
  border-bottom: 1px solid var(--soft); background: rgba(17,17,20,.95);
  backdrop-filter: blur(12px);
}
.rail-nav-inner {
  width: min(100% - 2rem, var(--max)); margin-inline: auto;
  display: flex; gap: .4rem; padding: .65rem 0; overflow-x: auto;
}
.rail-nav-inner a {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0 .75rem;
  border-radius: 10px; font-size: .78rem; font-weight: 700; color: var(--mute);
  background: rgba(255,255,255,.04); white-space: nowrap;
}
.rail-nav-inner a:hover, .rail-nav-inner a.is-active { background: var(--orange); color: #141414; }

.entry { padding: 1.6rem 0 0; }
.entry-grid {
  display: grid; gap: 0; align-items: stretch;
  border: 1px solid var(--soft); border-radius: calc(var(--radius) + 2px);
  background: rgba(31, 31, 38, .78); overflow: hidden;
}
.entry-copy { padding: clamp(1.2rem, 3vw, 2rem); display: grid; gap: .75rem; align-content: center; }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .78rem; font-weight: 700; color: var(--mute); }
.crumbs a { color: var(--orange-2); }
.entry-copy h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 5.5vw, 3.3rem); line-height: 1.05;
}
.entry-copy h1 em { font-style: normal; color: var(--orange); }
.entry-media { display: block; min-height: 220px; position: relative; background: #1a120c; }
.entry-media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }

.gate {
  margin-top: 1.2rem;
  border: 1px solid rgba(255,102,0,.45); border-radius: 16px; padding: 1.25rem 1.3rem;
  background: radial-gradient(420px 160px at 0% 0%, rgba(255,102,0,.18), transparent 70%), rgba(31,31,38,.92);
  display: grid; gap: .7rem;
}
.gate h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--orange-2);
}
.gate p { color: var(--mute); max-width: 62ch; }
.gate-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.page-body { padding: 2rem 0 3rem; }
.page-layout { display: grid; gap: 1.15rem; align-items: start; }
.chapters {
  border: 1px solid var(--soft); border-radius: 16px;
  background: rgba(31,31,38,.78); padding: 1.3rem; display: grid; gap: 1.15rem;
}
.chapter {
  padding-bottom: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.06);
  display: grid; gap: .55rem;
}
.chapter:last-of-type { border-bottom: 0; padding-bottom: 0; }
.chapter .n {
  font-family: var(--font-display); font-weight: 800; color: var(--orange);
  font-size: .85rem; letter-spacing: .08em;
}
.chapter h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: #fff;
}
.chapter p, .chapter li { color: var(--mute); }
.chapter ul { list-style: disc; padding-left: 1.2rem; display: grid; gap: .35rem; }

.side-card {
  border: 1px solid var(--line); border-radius: 16px;
  background: rgba(17,17,20,.88); padding: 1.15rem; display: grid; gap: .85rem;
  position: sticky; top: calc(var(--header) + 58px);
}
.side-card h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--orange-2);
}
.related a {
  display: block; border: 1px solid rgba(255,255,255,.08); border-radius: 12px;
  padding: .7rem .8rem; color: var(--mute); font-weight: 700;
}
.related a:hover { border-color: var(--orange); color: #fff; }

@media (min-width: 860px) {
  .nav-desk { display: flex; }
  .menu-toggle { display: none; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; }
  .catalog { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .live-stack { grid-template-columns: 1.35fr 1fr 1fr; }
  .live-feature { grid-row: span 2; min-height: 100%; }
  .path-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .map-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .foot-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .promo-band { grid-template-columns: 1.2fr .8fr; align-items: center; }
  .entry-grid { grid-template-columns: 1.1fr .9fr; }
  .entry-media { min-height: 100%; }
  .entry-media img { min-height: 100%; }
  .page-layout { grid-template-columns: 1fr .72fr; }
  .match { grid-template-columns: 72px 1.35fr 1fr; }
  .prices { grid-column: auto; }
}
@media (max-width: 859px) {
  .nav-desk, .header-actions .btn-ghost { display: none; }
  .metric-row { grid-template-columns: 1fr; }
}
