:root {
  --bg: #070b08;
  --panel: #141a17;
  --panel-2: #222824;
  --line: rgba(255,255,255,.14);
  --text: #f5f7f2;
  --muted: #b5beb4;
  --mint: #36dca2;
  --mint-2: #25b995;
  --gold: #d9b66b;
  --red: #5d1820;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  font-family: Inter, Manrope, 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 top left, rgba(54,220,162,.13), transparent 32rem),
    linear-gradient(180deg, #0c120f 0%, var(--bg) 55%, #050705 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 12, 10, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 20px;
}
.brand img { width: 154px; height: auto; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.nav-links a.active, .nav-links a:hover { color: var(--mint); }
.nav-actions { display: flex; gap: 10px; margin-left: 4px; }
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: none;
}
.btn-primary {
  background: linear-gradient(180deg, #39deb0, #25b995);
  border-color: rgba(80,255,209,.35);
  color: #03130d;
  box-shadow: 0 14px 30px rgba(37,185,149,.24);
}
.btn-ghost { background: #252b28; }
.hero {
  min-height: clamp(620px, 82vh, 860px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(217,182,107,.2);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,7,5,.92), rgba(4,7,5,.48) 45%, rgba(4,7,5,.82)),
              linear-gradient(0deg, #070b08 0%, transparent 38%);
  z-index: -1;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-inner, .section-inner, .footer-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-content {
  max-width: 760px;
  padding: 136px 0 82px;
}
.eyebrow {
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: 0; }
h1 {
  margin-top: 14px;
  font-size: clamp(42px, 8vw, 92px);
  max-width: 11ch;
  text-transform: uppercase;
}
.lead {
  margin: 22px 0 0;
  max-width: 680px;
  color: #e5ebe2;
  font-size: clamp(18px, 2.2vw, 23px);
}
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.12);
  border-top: 1px solid var(--line);
}
.strip-item {
  background: rgba(16,22,19,.84);
  padding: 22px 20px;
}
.strip-value { display: block; color: var(--gold); font-size: 28px; font-weight: 900; }
.strip-label { color: var(--muted); font-size: 13px; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
.section { padding: 76px 0; }
.section.alt { background: #0c100e; border-block: 1px solid rgba(255,255,255,.08); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}
h2 { font-size: clamp(30px, 4vw, 54px); text-transform: uppercase; }
.section-head p, .text-block p, .card p, .faq p, .footer-note { color: var(--muted); margin: 10px 0 0; }
.grid { display: grid; gap: 18px; }
.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,.08), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h3 { color: var(--text); font-size: 22px; }
.bonus-card { border-color: rgba(54,220,162,.26); }
.bonus-badge {
  display: inline-flex;
  margin-bottom: 16px;
  color: #07140f;
  background: var(--mint);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.image-band {
  min-height: 390px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  align-items: end;
  border-block: 1px solid rgba(217,182,107,.22);
}
.image-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,8,6,.9), rgba(5,8,6,.28), rgba(5,8,6,.84));
}
.image-band .section-inner { position: relative; padding-block: 70px; }
.feature-list { display: grid; gap: 12px; margin-top: 18px; }
.feature-list li { color: #dfe7dc; }
.game-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 22px;
  align-items: stretch;
}
.game-board img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.steps { counter-reset: step; }
.step { position: relative; padding-left: 56px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 24px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: #04120d;
  font-weight: 900;
}
.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.table th, .table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
}
.table th { background: #1e2521; color: var(--gold); text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.table td { color: #dfe5dd; }
.form,
.form-panel {
  display: grid;
  gap: 14px;
}
.field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: #0d120f;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.detail-row strong { color: var(--text); }
.detail-row span { color: var(--muted); text-align: right; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.faq h3 { font-size: 19px; }
.cta {
  background: linear-gradient(135deg, rgba(54,220,162,.2), rgba(217,182,107,.12)), #101611;
  border-top: 1px solid rgba(54,220,162,.22);
  border-bottom: 1px solid rgba(217,182,107,.2);
}
.site-footer {
  padding: 44px 0;
  background: #050806;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-inner { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 15px; color: var(--muted); font-weight: 800; text-transform: uppercase; font-size: 13px; }
.small { color: #899389; 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) {
  .nav-actions { width: 100%; }
  .nav-actions .btn { flex: 1; padding-inline: 12px; }
  h1 { font-size: 42px; }
  .section { padding: 54px 0; }
}
