:root {
  --bg: #050505;
  --panel: #111111;
  --panel-2: #1a1a1a;
  --line: rgba(255,255,255,.13);
  --text: #fff7ef;
  --muted: #c8bbb3;
  --orange: #ff4b15;
  --orange-2: #c93412;
  --gold: #ffc045;
  --red: #8d140d;
  --shadow: 0 18px 44px rgba(0,0,0,.48);
  font-family: Inter, Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,75,21,.2), transparent 34rem),
    linear-gradient(180deg, #0c0706 0%, var(--bg) 46%, #080808 100%);
  color: var(--text);
  line-height: 1.58;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(4,4,4,.9);
  backdrop-filter: blur(14px);
}
.nav {
  max-width: 1180px;
  min-height: 74px;
  margin: 0 auto;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand img { width: 132px; height: auto; }
.nav-links {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.nav-links a.active, .nav-links a:hover { color: var(--orange); }
.nav-actions { display: flex; gap: 10px; }
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.btn-primary {
  background: linear-gradient(180deg, #ff5a1d, #db3510);
  border-color: rgba(255,118,55,.65);
  color: #fffaf4;
  box-shadow: 0 14px 30px rgba(255,75,21,.25);
}
.btn-ghost { background: #202020; color: #fff1e8; }
.hero {
  min-height: clamp(620px, 82vh, 840px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: end;
  border-bottom: 1px solid rgba(255,192,69,.22);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.48) 48%, rgba(0,0,0,.78) 100%),
    linear-gradient(0deg, #050505 0%, transparent 38%);
}
.hero-inner, .section-inner, .footer-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-content { max-width: 760px; padding: 130px 0 76px; }
.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: 0; }
h1 {
  margin-top: 14px;
  max-width: 12ch;
  font-size: clamp(42px, 7vw, 90px);
  text-transform: uppercase;
}
h2 { font-size: clamp(29px, 4vw, 54px); text-transform: uppercase; }
h3 { font-size: 21px; }
.lead {
  margin: 22px 0 0;
  max-width: 690px;
  color: #f2ded2;
  font-size: clamp(18px, 2.2vw, 23px);
}
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.1);
  border-top: 1px solid var(--line);
}
.strip-item { background: rgba(14,14,14,.86); padding: 21px 20px; }
.strip-value { display: block; color: var(--gold); font-size: 27px; font-weight: 950; }
.strip-label { color: var(--muted); font-size: 12px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.section { padding: 72px 0; }
.section.alt { background: #0b0b0b; border-block: 1px solid rgba(255,255,255,.08); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}
.section-head p, .card p, .faq p, .text-block p, .footer-note { color: var(--muted); margin: 10px 0 0; }
.grid { display: grid; gap: 17px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 23px;
  box-shadow: var(--shadow);
}
.bonus-card { border-color: rgba(255,75,21,.36); }
.bonus-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--orange);
  color: white;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.image-band {
  min-height: 380px;
  position: relative;
  display: grid;
  align-items: end;
  background-size: cover;
  background-position: center;
  border-block: 1px solid rgba(255,192,69,.22);
}
.image-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.28), rgba(0,0,0,.82));
}
.image-band .section-inner { position: relative; padding-block: 68px; }
.game-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 20px;
  align-items: stretch;
}
.game-board img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.steps { counter-reset: step; }
.step { position: relative; padding-left: 56px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 23px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
}
.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.table th, .table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
}
.table th { background: #1c120e; color: var(--gold); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }
.table td { color: #f0dfd5; }
.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.detail-row span { color: var(--muted); text-align: right; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.cta {
  background: linear-gradient(135deg, rgba(255,75,21,.18), rgba(255,192,69,.12)), #111;
  border-top: 1px solid rgba(255,75,21,.24);
  border-bottom: 1px solid rgba(255,192,69,.18);
}
.site-footer {
  padding: 42px 0;
  background: #030303;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-inner { display: grid; grid-template-columns: 180px 1fr; gap: 26px; align-items: start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 15px; color: var(--muted); font-weight: 850; text-transform: uppercase; font-size: 13px; }
.small { color: #8f817a; font-size: 13px; }
@media (max-width: 900px) {
  .nav { align-items: flex-start; flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; margin-left: 0; }
  .nav-actions { margin-left: auto; }
  .section-head, .game-board, .footer-inner { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .faq-grid, .hero-strip { grid-template-columns: 1fr; }
  .hero { min-height: 680px; }
}
@media (max-width: 520px) {
  .brand img { width: 118px; }
  .nav-actions { width: 100%; }
  .nav-actions .btn { flex: 1; padding-inline: 11px; }
  h1 { font-size: 40px; }
  .section { padding: 52px 0; }
}
