﻿:root {
  --red: #e30613;
  --red-deep: #b00410;
  --red-soft: rgba(227, 6, 19, 0.16);
  --ink: #0c0c0e;
  --panel: #16161a;
  --panel-2: #1e1e24;
  --text: #ffffff;
  --mute: #b5b5bd;
  --line: rgba(255, 255, 255, 0.1);
  --ok: #39d98a;
  --max: 1180px;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(180deg, #120507 0%, var(--ink) 28%, #0c0c0e 100%);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

.flash-bar {
  background: linear-gradient(90deg, var(--red-deep), var(--red), #ff4d57);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: .86rem;
  padding: .55rem 1rem;
}
.flash-bar a { text-decoration: underline; text-underline-offset: 2px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 12, 14, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-grid {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.logo {
  display: inline-flex; align-items: center; gap: .65rem;
}
.logo img {
  width: 46px; height: 46px; object-fit: cover; border-radius: 8px;
}
.logo b {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.55rem;
  letter-spacing: .02em;
  font-weight: 800;
}
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--line); background: transparent; color: #fff;
}
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; }
.nav-list {
  list-style: none; display: flex; justify-content: center; gap: .2rem 1.1rem; flex-wrap: wrap;
}
.nav-list a { font-weight: 600; color: var(--mute); font-size: .92rem; }
.nav-list a:hover { color: #fff; }
.actions { display: flex; gap: .5rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; padding: .72rem 1.2rem; font-weight: 700;
  border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-red {
  background: linear-gradient(180deg, #ff2a36, var(--red));
  color: #fff;
  box-shadow: 0 8px 22px rgba(227, 6, 19, .35);
}
.btn-line {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.03);
  color: #fff;
}
.btn-sm { padding: .48rem .9rem; font-size: .86rem; }

/* Hero speedboard */
.hero { padding: 2.2rem 0 1.2rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.4rem;
  align-items: stretch;
}
.kicker {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--red); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; font-size: .74rem; margin-bottom: .85rem;
}
.kicker::before {
  content: "";
  width: 10px; height: 16px;
  clip-path: polygon(40% 0, 100% 0, 60% 45%, 100% 45%, 0 100%, 35% 55%, 0 55%);
  background: var(--red);
}
.hero h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  max-width: 12ch;
}
.hero h1 span { color: var(--red); }
.lead { color: var(--mute); font-size: 1.05rem; max-width: 46ch; margin-bottom: 1.35rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.3rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; max-width: 420px; }
.stat {
  background: var(--red-soft);
  border: 1px solid rgba(227,6,19,.35);
  border-radius: 12px; padding: .7rem;
}
.stat strong { display: block; font-family: var(--font-display); font-size: 1.4rem; font-style: italic; }
.stat span { color: var(--mute); font-size: .76rem; }

.hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid rgba(227,6,19,.4);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  background: #111;
}
.hero-media-link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media-link img,
.hero-media > img {
  width: 100%; height: 100%; min-height: 440px;
  object-fit: cover; object-position: center 35%;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,12,14,.05) 0%, rgba(12,12,14,.2) 50%, rgba(12,12,14,.92) 100%);
}
.hero-cap {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.2rem;
}
.hero-cap strong { display: block; font-family: var(--font-display); font-style: italic; font-size: 1.35rem; letter-spacing: .03em; text-transform: uppercase; }
.hero-cap p { color: var(--mute); font-size: .86rem; }

.slash {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  margin: 1.2rem auto 0;
  width: min(100% - 2rem, var(--max));
  box-shadow: 0 0 18px rgba(227,6,19,.55);
}

section { padding: 3.2rem 0; }
.head {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  align-items: end; margin-bottom: 1.35rem;
}
.head h2 {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  letter-spacing: .02em;
  max-width: 20ch;
  line-height: 1;
}
.head p { color: var(--mute); max-width: 46ch; }

/* Odds board - primary */
.board {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(227,6,19,.35);
  background: linear-gradient(180deg, #1a1a20, #121216);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.board-top {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1rem 1.1rem; background: rgba(227,6,19,.1); border-bottom: 1px solid var(--line);
}
.filters { display: flex; flex-wrap: wrap; gap: .4rem; }
.filters button {
  border: 1px solid var(--line); background: transparent; color: var(--mute);
  border-radius: 999px; padding: .38rem .75rem; font-size: .76rem; font-weight: 700;
}
.filters button.is-on { background: var(--red); border-color: var(--red); color: #fff; }

.odds {
  width: 100%; border-collapse: collapse;
}
.odds thead th {
  text-align: left; color: var(--mute); font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; padding: .7rem 1rem; border-bottom: 1px solid var(--line);
}
.odds thead th:nth-child(n+3) { text-align: center; width: 108px; }
.odds tbody tr { border-bottom: 1px solid rgba(255,255,255,.06); transition: background .15s ease; }
.odds tbody tr:hover { background: rgba(227,6,19,.1); cursor: pointer; }
.odds td { padding: .95rem 1rem; vertical-align: middle; }
.ev .lg { color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.ev .tm { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; margin-top: .15rem; text-transform: uppercase; }
.ev .tm-meta { color: var(--mute); font-size: .8rem; margin-top: .15rem; }
.coef {
  display: block; text-align: center;
  background: rgba(227,6,19,.14);
  border: 1px solid rgba(227,6,19,.45);
  border-radius: 10px; padding: .62rem .35rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.4rem; font-weight: 800;
  color: inherit; text-decoration: none; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
a.coef:hover {
  background: rgba(227,6,19,.28);
  border-color: #ff4d57;
  transform: translateY(-1px);
}
.coef:hover { background: rgba(227,6,19,.32); transform: scale(1.04); }
.coef small { display: block; font-family: var(--font-body); font-style: normal; font-size: .68rem; color: var(--mute); font-weight: 600; margin-bottom: .1rem; }

/* Slots magazine */
.mag {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.mag a {
  border-radius: 14px; overflow: hidden; background: var(--panel);
  border: 1px solid var(--line); transition: transform .2s ease, border-color .2s ease;
}
.mag a:hover { transform: translateY(-5px); border-color: rgba(227,6,19,.55); }
.mag img { aspect-ratio: 3/4; width: 100%; object-fit: cover; }
.mag .meta { padding: .85rem; display: grid; gap: .5rem; }
.mag h3 { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; text-transform: uppercase; }
.mag .tag { color: var(--mute); font-size: .78rem; }

/* Crash */
.crash {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .7rem;
}
.crash a {
  position: relative; min-height: 165px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: var(--panel-2);
}
.crash a:hover { border-color: var(--red); }
.crash img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.crash .body {
  position: relative; z-index: 1; min-height: 165px; padding: .85rem;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(180deg, transparent, rgba(12,12,14,.92));
}
.crash h3 { font-family: var(--font-display); font-style: italic; text-transform: uppercase; }
.multi { color: var(--ok); font-family: var(--font-display); font-style: italic; font-size: 1.4rem; font-weight: 800; }

/* Live */
.live {
  display: grid; grid-template-columns: 1.35fr repeat(2, 1fr); gap: .8rem;
}
.live a {
  position: relative; min-height: 220px; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(227,6,19,.25);
}
.live a.feat { grid-row: span 2; min-height: 460px; }
.live img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.live .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(12,12,14,.92));
  display: flex; flex-direction: column; justify-content: flex-end; gap: .5rem; padding: 1rem;
}
.pill {
  align-self: flex-start; background: var(--red); border-radius: 999px;
  padding: .25rem .6rem; font-size: .7rem; font-weight: 800; letter-spacing: .08em;
}
.live h3 { font-family: var(--font-display); font-style: italic; text-transform: uppercase; font-size: 1.25rem; }

/* Bonus */
.bonus {
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 1.1rem;
  border-radius: 20px; padding: 1.5rem;
  border: 1px solid rgba(227,6,19,.4);
  background:
    radial-gradient(500px 200px at 100% 0%, rgba(227,6,19,.28), transparent 60%),
    linear-gradient(135deg, #2a0a0d, #121216 55%);
}
.bonus h2 {
  font-family: var(--font-display); font-style: italic; text-transform: uppercase;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem); line-height: 1; margin: .45rem 0 .75rem;
}
.bonus p { color: var(--mute); margin-bottom: 1rem; }
.list { list-style: none; display: grid; gap: .5rem; margin-bottom: 1.1rem; }
.list li { display: flex; gap: .5rem; color: var(--mute); }
.list li::before {
  content: ""; width: 9px; height: 14px; margin-top: .35rem; flex-shrink: 0;
  clip-path: polygon(40% 0, 100% 0, 60% 45%, 100% 45%, 0 100%, 35% 55%, 0 55%);
  background: var(--red);
}
.codebox {
  border: 1px dashed rgba(227,6,19,.5); border-radius: 16px; padding: 1.2rem;
  background: rgba(0,0,0,.25); display: grid; gap: .7rem; align-content: center;
}
.codebox .code {
  font-family: var(--font-display); font-style: italic; font-size: 1.8rem;
  letter-spacing: .06em; color: #ff6b73;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.step {
  border-radius: 14px; padding: 1.2rem; background: var(--panel); border: 1px solid var(--line);
}
.step h3 { font-family: var(--font-display); font-style: italic; color: var(--red); text-transform: uppercase; margin-bottom: .4rem; font-size: 1.3rem; }
.step p { color: var(--mute); }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.card {
  border-radius: 14px; padding: 1.15rem; background: rgba(255,255,255,.03); border: 1px solid var(--line);
}
.card h3 { font-family: var(--font-display); font-style: italic; text-transform: uppercase; margin-bottom: .4rem; }
.card p { color: var(--mute); font-size: .92rem; }
.pays { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1rem; }
.pays span {
  border: 1px solid var(--line); border-radius: 10px; padding: .6rem .8rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--mute);
}

.seo { display: grid; gap: 1rem; }
.seo article {
  border-radius: 14px; padding: 1.25rem 1.35rem; background: rgba(0,0,0,.22); border: 1px solid var(--line);
}
.seo h3 {
  font-family: var(--font-display); font-style: italic; text-transform: uppercase;
  color: #ff6b73; margin-bottom: .6rem; font-size: 1.3rem;
}
.seo p { color: var(--mute); margin-bottom: .7rem; }
.seo p:last-child { margin-bottom: 0; }
.seo-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.faq { display: grid; gap: .6rem; max-width: 900px; }
.faq details { border: 1px solid rgba(227,6,19,.25); border-radius: 12px; background: rgba(0,0,0,.2); overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none; padding: 1rem 1.1rem;
  font-family: var(--font-display); font-style: italic; text-transform: uppercase; font-size: 1.1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--red); }
.faq details[open] summary::after { content: "-"; }
.faq p { padding: 0 1.1rem 1.1rem; color: var(--mute); }

.final {
  text-align: center; border-radius: 20px; padding: 2.8rem 1.2rem;
  border: 1px solid rgba(227,6,19,.4);
  background: radial-gradient(480px 180px at 50% 0%, rgba(227,6,19,.28), transparent 70%), #16161a;
}
.final h2 {
  font-family: var(--font-display); font-style: italic; text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .65rem;
}
.final p { color: var(--mute); margin-bottom: 1.15rem; }

.site-footer {
  margin-top: 2.2rem; padding: 2.1rem 0 1.3rem; border-top: 1px solid var(--line); background: rgba(0,0,0,.28);
}
.foot {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.3rem; margin-bottom: 1.2rem;
}
.foot-brand { display: flex; gap: .75rem; }
.foot-brand img { width: 58px; height: 58px; border-radius: 8px; object-fit: cover; }
.foot-brand p, .col a, .age p { color: var(--mute); font-size: .9rem; }
.col h3 { font-family: var(--font-display); font-style: italic; color: #ff6b73; text-transform: uppercase; margin-bottom: .55rem; }
.col ul { list-style: none; display: grid; gap: .35rem; }
.age {
  border-top: 1px solid var(--line); padding-top: 1rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center;
}
.age-badge {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--red); color: var(--red); font-weight: 800; margin-right: .35rem;
}

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

.nav-list a.is-active { color: #fff; }
.subnav {
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.22);
  overflow-x: auto;
}
.subnav-list {
  list-style: none; display: flex; gap: .35rem; padding: .65rem 0; min-width: max-content;
}
.subnav-list a {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0 .75rem;
  border-radius: 999px; font-size: .8rem; font-weight: 700; color: var(--mute);
  background: rgba(255,255,255,.04); white-space: nowrap;
}
.subnav-list a:hover, .subnav-list a.is-active { background: var(--red); color: #fff; }

.page-hero {
  position: relative; min-height: clamp(280px, 42vw, 420px);
  display: grid; align-items: end; overflow: hidden;
  border-bottom: 1px solid rgba(227,6,19,.35);
}
.page-hero > img,
.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(90deg, rgba(12,12,14,.92) 0%, rgba(12,12,14,.55) 55%, rgba(12,12,14,.25) 100%),
    linear-gradient(0deg, rgba(227,6,19,.22), transparent 50%);
}
.page-hero-copy {
  position: relative; z-index: 2; padding: clamp(1.4rem, 4vw, 2.6rem) 0;
  display: grid; gap: .75rem; max-width: 720px;
}
.page-hero-copy .hero-cta,
.page-hero-copy .btn {
  position: relative; z-index: 3; pointer-events: auto;
}
.access-panel { padding: 1.4rem 0 .2rem; }
.access-panel-inner {
  border: 1px solid rgba(227,6,19,.45);
  border-radius: 16px;
  padding: 1.3rem 1.35rem;
  background: radial-gradient(420px 160px at 0% 0%, rgba(227,6,19,.22), transparent 70%), var(--panel);
  display: grid; gap: .75rem;
}
.access-panel-inner h2 {
  margin: 0;
  font-family: var(--font-display); font-style: italic; text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.1rem); color: #ff6b73;
}
.access-panel-inner p { margin: 0; color: var(--mute); max-width: 62ch; }
.access-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.crumbs {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  font-size: .78rem; font-weight: 700; color: var(--mute);
}
.crumbs a { color: #ff6b73; }
.page-hero h1 {
  font-family: var(--font-display); font-style: italic; text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: .95;
}
.page-hero h1 span { color: #ff4d57; }
.page-body { padding: 2.4rem 0 3rem; }
.page-grid {
  display: grid; grid-template-columns: 1fr .85fr; gap: 1.2rem; align-items: start;
}
.page-article {
  border: 1px solid var(--line); border-radius: 16px; background: var(--panel);
  padding: 1.35rem; display: grid; gap: 1rem;
}
.page-article h2 {
  font-family: var(--font-display); font-style: italic; text-transform: uppercase;
  font-size: 1.45rem; color: #ff6b73;
}
.page-article p { color: var(--mute); }
.page-article strong { color: #fff; }
.page-article ul { margin-left: 1.1rem; color: var(--mute); display: grid; gap: .35rem; }
.page-side {
  display: grid; gap: .85rem; position: sticky; top: 90px;
}
.side-card {
  border: 1px solid rgba(227,6,19,.35); border-radius: 16px; padding: 1.15rem;
  background: radial-gradient(280px 120px at 100% 0%, rgba(227,6,19,.22), transparent 70%), var(--panel-2);
  display: grid; gap: .65rem;
}
.side-card h2 {
  font-family: var(--font-display); font-style: italic; text-transform: uppercase; font-size: 1.35rem;
}
.side-card p { color: var(--mute); font-size: .92rem; }
.page-links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem;
}
.page-links a {
  border: 1px solid var(--line); border-radius: 12px; padding: .75rem .85rem;
  background: rgba(0,0,0,.2); font-weight: 700; font-size: .88rem;
}
.page-links a:hover { border-color: var(--red); color: #fff; }
.page-links .muted, .muted { color: var(--mute); font-weight: 500; font-size: .78rem; }
.page-links strong { display: inline-block; margin-bottom: .15rem; }
.page-faq details {
  border: 1px solid rgba(227,6,19,.25); border-radius: 12px; background: rgba(0,0,0,.2);
  padding: .9rem 1rem; margin-bottom: .5rem;
}
.page-faq summary {
  cursor: pointer; font-family: var(--font-display); font-style: italic;
  text-transform: uppercase; font-size: 1.05rem;
}
.page-faq p { color: var(--mute); margin-top: .5rem; }

@media (max-width: 1000px) {
  .hero-grid, .bonus, .live, .foot, .seo-2, .page-grid { grid-template-columns: 1fr; }
  .page-side { position: static; }
  .page-links { grid-template-columns: 1fr; }
  .live a.feat { grid-row: auto; min-height: 280px; }
  .mag { grid-template-columns: repeat(2, 1fr); }
  .crash { grid-template-columns: repeat(2, 1fr); }
  .steps, .grid3 { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: inline-grid; place-items: center; justify-self: end; }
  .header-grid { grid-template-columns: 1fr auto; }
  .site-nav { display: none; grid-column: 1 / -1; }
  .site-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; padding: .4rem 0 .8rem; }
  .actions { grid-column: 1 / -1; padding-bottom: .75rem; }
  .actions .btn { flex: 1; }
  .logo b { display: none; }
  .odds thead { display: none; }
  .odds, .odds tbody, .odds tr, .odds td { display: block; width: 100%; }
  .odds td { padding: .35rem 1rem; }
  .odds tr { padding: .7rem 0; }
  .coef-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; padding-inline: 1rem !important; }
}
@media (max-width: 640px) {
  .mag, .crash, .steps, .grid3, .stats { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .hero-media, .hero-media-link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media-link img,
.hero-media > img { min-height: 300px; }
  .hero-cap { flex-direction: column; align-items: flex-start; }
  .hero-cap .btn { width: 100%; }
}
