:root {
  --bg: #0b0816;
  --panel: #151022;
  --panel-2: #1b1430;
  --gold: #d9b04c;
  --gold-soft: #f0d795;
  --ink: #0d0a14;
  --text: #ece7f6;
  --muted: #a89fc2;
  --line: rgba(217, 176, 76, 0.22);
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 8, 22, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.head-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 13px 20px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text);
}

.logo b {
  color: var(--gold);
}

.site-nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--gold-soft);
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #f6e2a0, #d9b04c 55%, #a87f24);
  color: var(--ink);
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 22px rgba(217, 176, 76, 0.32);
  transition: filter 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}

.btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-big {
  padding: 14px 34px;
  font-size: 1.05rem;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.burger {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--gold-soft);
}

.hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(1100px 520px at 72% -12%, rgba(217, 176, 76, 0.18), transparent 62%),
    radial-gradient(700px 380px at 8% 110%, rgba(120, 80, 200, 0.14), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: end;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  line-height: 1.16;
  font-weight: 800;
  max-width: 780px;
}

.gold-grad {
  background: linear-gradient(120deg, #f6e3a3, #d9b04c 60%, #c89a35);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 640px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-row.center {
  justify-content: center;
  margin-top: 36px;
}

.cta-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.83rem;
  color: var(--gold-soft);
  background: rgba(217, 176, 76, 0.07);
}

.chip-top {
  background: linear-gradient(135deg, rgba(246, 226, 160, 0.25), rgba(168, 127, 36, 0.25));
  border-color: var(--gold);
  font-weight: 700;
}

.ladder {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 200px;
}

.ladder span {
  flex: 1 1 0%;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(rgba(246, 227, 163, 0.95), rgba(168, 127, 36, 0.45));
  box-shadow: 0 0 24px rgba(217, 176, 76, 0.18);
}

.ladder span:nth-child(1) { height: 13%; }
.ladder span:nth-child(2) { height: 26%; }
.ladder span:nth-child(3) { height: 40%; }
.ladder span:nth-child(4) { height: 54%; }
.ladder span:nth-child(5) { height: 68%; }
.ladder span:nth-child(6) { height: 83%; }
.ladder span:nth-child(7) {
  height: 100%;
  background: linear-gradient(#f9ecc0, #d9b04c 60%, #a87f24);
  box-shadow: 0 0 34px rgba(217, 176, 76, 0.45);
}

section {
  padding: 58px 0;
}

.alt {
  background: linear-gradient(180deg, var(--panel) 0%, rgba(21, 16, 34, 0) 100%);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin: 1.6rem 0 0.75rem;
}

section p {
  max-width: none;
  width: 100%;
  color: var(--text);
}

section p + p,
section p + ul,
section p + ol,
section ul + p,
section ol + p {
  margin-top: 14px;
}

section ul,
section ol {
  max-width: none;
  width: 100%;
  color: var(--muted);
  padding-left: 1.35rem;
}

section li {
  margin-bottom: 0.45rem;
}

section strong {
  color: var(--gold-soft);
  font-weight: 700;
}

.list-lead {
  margin-top: 18px;
  font-weight: 600;
  color: var(--gold-soft);
}

.perks {
  margin: 12px 0 0 2px;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: none;
  width: 100%;
  padding-left: 0;
}

.perks li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f6e2a0, #a87f24);
  box-shadow: 0 0 10px rgba(217, 176, 76, 0.4);
}

.tbl {
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  width: 100%;
  box-sizing: border-box;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 430px;
}

th {
  background: rgba(217, 176, 76, 0.12);
  color: var(--gold-soft);
  text-align: left;
  padding: 12px 18px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text);
}

tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.vip-row td {
  background: rgba(217, 176, 76, 0.12);
  color: var(--gold-soft);
  font-weight: 700;
}

.steps {
  counter-reset: s 0;
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 22px;
  max-width: none;
  width: 100%;
  padding-left: 0;
}

.steps li {
  counter-increment: s 1;
  position: relative;
  padding: 16px 20px 16px 66px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

.steps li::before {
  content: counter(s);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6e2a0, #a87f24);
  color: var(--ink);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps li strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  align-items: stretch;
  width: 100%;
}

.usp-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.usp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 176, 76, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.usp-icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
  line-height: 1;
}

.usp-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--gold-soft);
}

.usp-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: none;
}

.notice {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(217, 176, 76, 0.08);
  max-width: none;
  width: 100%;
  color: var(--muted);
  box-sizing: border-box;
}

.notice strong {
  color: var(--gold-soft);
}

.faq .qa {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 14px;
  max-width: none;
  width: 100%;
}

.faq h3 {
  color: var(--gold-soft);
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.faq .qa p {
  color: var(--muted);
  margin: 0;
}

/* Games strip */
.game-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 2px 16px;
  margin-top: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
}

.game-card {
  flex: 0 0 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  transition: transform 0.2s, color 0.2s;
}

.game-card span {
  display: block;
  line-height: 1.25;
}

.game-card:hover {
  transform: translateY(-3px);
  color: var(--gold-soft);
}

.game-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: var(--panel);
}

.site-foot {
  border-top: 1px solid var(--line);
  padding: 38px 0 44px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-foot a {
  color: var(--gold-soft);
}

.foot-brand {
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 12px;
}

.foot-brand b {
  color: var(--gold);
}

.site-foot p + p {
  margin-top: 8px;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(13, 9, 24, 0.96);
  border-top: 1px solid var(--line);
  text-align: center;
}

.mobile-cta .btn {
  width: 100%;
  max-width: 430px;
}

@media (max-width: 880px) {
  .burger {
    display: flex;
  }

  .head-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    z-index: 40;
    background: #130d22;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.28s;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 14px;
  }

  .site-nav li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav a {
    display: block;
    padding: 13px 0;
    font-size: 1.05rem;
  }

  .nav-toggle:checked ~ .site-nav {
    transform: translateY(0);
  }

  .hero {
    padding: 54px 0 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ladder {
    height: 120px;
    max-width: 420px;
  }

  .mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 84px;
  }

  section {
    padding: 44px 0;
  }

  table {
    min-width: 360px;
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
