:root {
  --orange: #ff6600;
  --orange-2: #ff8533;
  --orange-deep: #cc5200;
  --ink: #111114;
  --panel: #1a1a1f;
  --soft: rgba(255, 102, 0, 0.14);
  --text: #ffffff;
  --mute: #b8b8c2;
  --line: rgba(255, 255, 255, 0.1);
  --ok: #3dd68c;
  --max: 1160px;
  --display: "Unbounded", sans-serif;
  --body: "Karla", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(255,102,0,.22), transparent 55%),
    radial-gradient(700px 360px at 0% 30%, rgba(255,102,0,.08), transparent 50%),
    var(--ink);
  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(--orange); color: #111; padding: .55rem 1rem; z-index: 200; font-weight: 700; }
.skip:focus { left: 1rem; top: 1rem; }

.topbar {
  background: var(--orange);
  color: #111;
  text-align: center;
  font-weight: 700;
  font-size: .88rem;
  padding: .55rem 1rem;
}
.topbar a { text-decoration: underline; text-underline-offset: 2px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17,17,20,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand img {
  width: 44px; height: 44px; object-fit: cover; border-radius: 10px;
}
.brand span {
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: lowercase;
}
.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: .25rem 1.15rem; flex-wrap: wrap; }
.nav-list a { font-weight: 600; color: var(--mute); }
.nav-list a:hover { color: var(--orange-2); }
.acts { display: flex; gap: .5rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; 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-orange {
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #111;
  box-shadow: 0 10px 26px rgba(255,102,0,.32);
}
.btn-ghost {
  border-color: rgba(255,102,0,.45);
  color: #fff;
  background: rgba(255,255,255,.03);
}
.btn-sm { padding: .48rem .95rem; font-size: .86rem; }

/* Hero studio */
.hero { padding: 2.3rem 0 2rem; }
.hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1.5rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--orange); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; font-size: .72rem; margin-bottom: .85rem;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 12px var(--orange);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
  max-width: 14ch;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.lead { color: var(--mute); font-size: 1.05rem; max-width: 46ch; margin-bottom: 1.35rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.25rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips span {
  border: 1px solid rgba(255,102,0,.35);
  background: var(--soft);
  border-radius: 999px;
  padding: .4rem .75rem;
  font-size: .8rem;
  font-weight: 700;
  color: #ffd2b3;
}

.stage {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255,102,0,.4);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  background: #0d0d10;
}
.stage > img {
  width: 100%; height: 100%; min-height: 430px;
  object-fit: cover; object-position: center center;
}
.stage::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,20,.05), rgba(17,17,20,.88));
}
.stage-bar {
  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;
}
.stage-bar strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  margin-bottom: .15rem;
}
.stage-bar p { color: var(--mute); font-size: .86rem; }

section { padding: 3.1rem 0; }
.head {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  align-items: end; margin-bottom: 1.3rem;
}
.head h2 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  letter-spacing: -.02em;
  max-width: 22ch;
}
.head p { color: var(--mute); max-width: 44ch; }

/* Featured film strip slots */
.strip {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: .85rem;
}
.strip a {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform .2s ease, border-color .2s ease;
}
.strip a:hover { transform: translateY(-4px); border-color: rgba(255,102,0,.55); }
.strip a.feat { min-height: 420px; grid-row: span 2; }
.strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.strip .cap {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,10,12,.94));
  display: flex; flex-direction: column; justify-content: flex-end; gap: .5rem;
  padding: 1rem;
}
.strip h3 { font-family: var(--display); font-size: 1.05rem; }
.strip .tag { color: var(--mute); font-size: .78rem; }

.slot-grid {
  margin-top: .85rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.slot-grid a {
  border-radius: 14px; overflow: hidden; background: var(--panel);
  border: 1px solid var(--line); transition: transform .18s ease, border-color .18s ease;
}
.slot-grid a:hover { transform: translateY(-3px); border-color: rgba(255,102,0,.5); }
.slot-grid img { aspect-ratio: 3/4; width: 100%; object-fit: cover; }
.slot-grid .meta { padding: .8rem; display: grid; gap: .45rem; }
.slot-grid h3 { font-family: var(--display); font-size: .92rem; }

/* Live mosaic */
.live {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: .8rem;
}
.live a {
  position: relative; min-height: 210px; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,102,0,.22);
}
.live a.big { grid-row: span 2; min-height: 440px; }
.live img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.live .ov {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10,10,12,.92));
  display: flex; flex-direction: column; justify-content: flex-end; gap: .45rem; padding: 1rem;
}
.live-pill {
  align-self: flex-start; background: var(--orange); color: #111;
  border-radius: 999px; padding: .25rem .6rem; font-size: .7rem; font-weight: 800; letter-spacing: .08em;
}
.live h3 { font-family: var(--display); font-size: 1.1rem; }

/* Crash pills */
.crash {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .7rem;
}
.crash a {
  position: relative; min-height: 160px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: #15151a;
}
.crash a:hover { border-color: var(--orange); }
.crash img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.crash .body {
  position: relative; z-index: 1; min-height: 160px; padding: .8rem;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(180deg, transparent, rgba(10,10,12,.93));
}
.crash h3 { font-family: var(--display); font-size: .95rem; }
.multi { color: var(--ok); font-family: var(--display); font-size: 1.25rem; font-weight: 700; }

/* Sports board */
.board {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,102,0,.35);
  background:
    linear-gradient(180deg, rgba(26,26,31,.96), rgba(17,17,20,.98)),
    url("../assets/sport/arena.jpg") center/cover;
  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; border-bottom: 1px solid var(--line);
  background: rgba(255,102,0,.1);
}
.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.on { background: var(--orange); border-color: var(--orange); color: #111; }
.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: 106px; }
.odds tbody tr { border-bottom: 1px solid rgba(255,255,255,.06); cursor: pointer; }
.odds tbody tr:hover { background: rgba(255,102,0,.1); }
.odds td { padding: .9rem 1rem; vertical-align: middle; }
.ev .lg { color: var(--orange-2); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.ev .tm { font-family: var(--display); font-size: 1rem; margin-top: .18rem; }
.ev .meta { color: var(--mute); font-size: .8rem; margin-top: .15rem; }
.coef {
  display: block; text-align: center;
  background: rgba(255,102,0,.14);
  border: 1px solid rgba(255,102,0,.45);
  border-radius: 12px; padding: .6rem .35rem;
  font-family: var(--display); font-size: 1.2rem; font-weight: 700;
}
.coef:hover { background: rgba(255,102,0,.3); }
.coef small {
  display: block; font-family: var(--body); font-size: .68rem; color: var(--mute);
  font-weight: 600; margin-bottom: .1rem;
}

.bonus {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.1rem;
  border-radius: 22px; padding: 1.5rem;
  border: 1px solid rgba(255,102,0,.4);
  background:
    radial-gradient(480px 200px at 100% 0%, rgba(255,102,0,.28), transparent 60%),
    linear-gradient(135deg, #2a1608, #15151a 60%);
}
.bonus h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: .4rem 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: 9px; margin-top: .45rem; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 10px var(--orange); flex-shrink: 0;
}
.codebox {
  border: 1px dashed rgba(255,102,0,.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(--display); font-size: 1.5rem; color: var(--orange-2); letter-spacing: .04em;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.step {
  border-radius: 16px; padding: 1.2rem; background: var(--panel); border: 1px solid var(--line);
}
.step h3 { font-family: var(--display); color: var(--orange); margin-bottom: .4rem; font-size: 1.05rem; }
.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(--display); margin-bottom: .4rem; font-size: 1rem; }
.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: .55rem .75rem;
  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(--display); color: var(--orange-2); margin-bottom: .6rem; font-size: 1.1rem; }
.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(255,102,0,.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(--display); font-weight: 700; font-size: .98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--orange); }
.faq details[open] summary::after { content: "-"; }
.faq p { padding: 0 1.1rem 1.1rem; color: var(--mute); }

.final {
  text-align: center; border-radius: 22px; padding: 2.7rem 1.2rem;
  border: 1px solid rgba(255,102,0,.4);
  background: radial-gradient(480px 180px at 50% 0%, rgba(255,102,0,.28), transparent 70%), #1a1a1f;
}
.final h2 { font-family: var(--display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: .65rem; }
.final p { color: var(--mute); margin-bottom: 1.1rem; }

.site-footer {
  margin-top: 2rem; padding: 2rem 0 1.2rem; border-top: 1px solid var(--line); background: rgba(0,0,0,.28);
}
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.foot-brand { display: flex; gap: .75rem; }
.foot-brand img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; }
.foot-brand p, .col a, .age p { color: var(--mute); font-size: .9rem; }
.col h3 { font-family: var(--display); color: var(--orange-2); margin-bottom: .55rem; font-size: .95rem; }
.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(--orange); color: var(--orange); font-weight: 800; margin-right: .35rem;
}

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

@media (max-width: 1000px) {
  .hero-grid, .bonus, .live, .foot, .seo-2, .strip { grid-template-columns: 1fr; }
  .strip a.feat, .live a.big { grid-row: auto; min-height: 280px; }
  .slot-grid { 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; }
  .hdr { 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; }
  .acts { grid-column: 1 / -1; padding-bottom: .75rem; }
  .acts .btn { flex: 1; }
  .brand span { 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: .65rem 0; }
  .coef-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; padding-inline: 1rem !important; }
}
@media (max-width: 640px) {
  .slot-grid, .crash, .steps, .grid3 { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .stage, .stage > img { min-height: 300px; }
  .stage-bar { flex-direction: column; align-items: flex-start; }
  .stage-bar .btn { width: 100%; }
}
.h1-sub{display:block;margin:.35rem 0 0;font-size:.72em;line-height:1.25}
