:root {
  --bg: #140a1d;
  --bg-soft: #22102f;
  --panel: #2b143c;
  --panel-2: #36194d;
  --panel-3: #1d0d2a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(248, 184, 31, 0.2);
  --text: #f8f3ff;
  --muted: #cfbedc;
  --gold: #f8b81f;
  --gold-2: #ffd86d;
  --lime: #8cff36;
  --lime-2: #6de820;
  --violet: #b44eff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(180, 78, 255, 0.2), transparent 22%),
    radial-gradient(circle at top left, rgba(248, 184, 31, 0.13), transparent 18%),
    linear-gradient(180deg, #120819 0%, #170b22 38%, #12071a 100%);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-inline {
  padding-top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(20, 10, 29, 0.84);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #251024;
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(248, 184, 31, 0.28);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
}

.brand-top {
  color: var(--gold);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-bottom {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #0f2200;
  background: linear-gradient(180deg, var(--lime), var(--lime-2));
  box-shadow: 0 14px 30px rgba(111, 232, 32, 0.26);
}

.btn-outline {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(248, 184, 31, 0.46);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.btn-large {
  min-height: 58px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.hero {
  padding: 76px 0 40px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(248, 184, 31, 0.16), transparent 20%),
    radial-gradient(circle at 82% 14%, rgba(180, 78, 255, 0.24), transparent 24%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(248, 184, 31, 0.1);
  border: 1px solid rgba(248, 184, 31, 0.24);
  color: var(--gold-2);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 690px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(450px, 100%);
  min-height: 450px;
  padding: 34px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(43, 20, 60, 0.9), rgba(18, 8, 25, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid rgba(248, 184, 31, 0.16);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 255, 54, 0.34), transparent 62%);
  filter: blur(18px);
}

.hero-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-number {
  font-size: clamp(3.3rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 900;
  color: var(--gold-2);
  text-shadow: 0 0 18px rgba(248, 184, 31, 0.22);
}

.hero-copy {
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: 800;
  max-width: 280px;
}

.hero-subcopy {
  margin-top: 10px;
  color: var(--muted);
  max-width: 280px;
}

.hero-cta {
  position: absolute;
  left: 34px;
  bottom: 34px;
}

.intro h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.intro p {
  max-width: 970px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.content-card {
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(52, 25, 75, 0.9), rgba(26, 12, 38, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.content-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: #ffffff;
}

.content-card h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.2;
}

.content-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.note-box {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(248, 184, 31, 0.08);
  border: 1px solid rgba(248, 184, 31, 0.2);
  color: #fff3d0;
}

.steps-list {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--text);
}

.steps-list li + li {
  margin-top: 10px;
}

.steps-list a {
  color: var(--gold-2);
  font-weight: 800;
}

.cta-panel {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    linear-gradient(90deg, rgba(248, 184, 31, 0.14), rgba(140, 255, 54, 0.12)),
    linear-gradient(180deg, rgba(43, 20, 60, 0.94), rgba(19, 9, 28, 0.98));
  border: 1px solid rgba(248, 184, 31, 0.18);
}

.table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: rgba(16, 8, 24, 0.44);
}

.data-table th,
.data-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.data-table thead th {
  background: rgba(248, 184, 31, 0.1);
  color: var(--gold-2);
  font-size: 0.95rem;
  font-weight: 800;
}

.data-table tbody td {
  color: var(--muted);
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.game-table a {
  color: #ffffff;
  font-weight: 700;
}

.thumb {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.thumb-1 { background: linear-gradient(135deg, #f8b81f, #ff7a18); }
.thumb-2 { background: linear-gradient(135deg, #ff6aa2, #ffcf5a); }
.thumb-3 { background: linear-gradient(135deg, #2ad7ff, #2563ff); }
.thumb-4 { background: linear-gradient(135deg, #ff8e3c, #b44eff); }
.thumb-5 { background: linear-gradient(135deg, #d4af37, #8b5a2b); }
.thumb-6 { background: linear-gradient(135deg, #ff5f6d, #ffc371); }
.thumb-7 { background: linear-gradient(135deg, #9bff8a, #26a65b); }
.thumb-8 { background: linear-gradient(135deg, #30cfd0, #330867); }
.thumb-9 { background: linear-gradient(135deg, #ffd200, #b06ab3); }
.thumb-10 { background: linear-gradient(135deg, #00f5a0, #00d9f5); }
.thumb-11 { background: linear-gradient(135deg, #f953c6, #b91d73); }
.thumb-12 { background: linear-gradient(135deg, #f7971e, #ffd200); }

.faq h2,
.cta-strip h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(43, 20, 60, 0.94), rgba(24, 11, 36, 0.98));
  border: 1px solid var(--line);
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding: 22px 0;
  position: relative;
  padding-right: 34px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 1.35rem;
  color: var(--gold);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 20px;
  color: var(--muted);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(248, 184, 31, 0.14), rgba(140, 255, 54, 0.14)),
    linear-gradient(180deg, rgba(43, 20, 60, 0.96), rgba(19, 9, 28, 0.98));
  border: 1px solid rgba(248, 184, 31, 0.18);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 58px 0 26px;
  background: rgba(10, 5, 16, 0.74);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr 0.95fr;
  gap: 28px;
}

.footer-col h3 {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 1.08rem;
}

.footer-col p,
.footer-col li,
.footer-bottom p {
  color: var(--muted);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li + li {
  margin-top: 10px;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #ffffff;
}

.address-note {
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
}

.sticky-play {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  color: #0f2200;
  font-weight: 900;
  background: linear-gradient(180deg, var(--lime), var(--lime-2));
  box-shadow: 0 18px 34px rgba(111, 232, 32, 0.32);
}

.sticky-play:hover,
.sticky-play:focus-visible {
  transform: translateY(-2px);
}

@media (max-width: 1120px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px 0;
  }

  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .cta-panel,
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .main-nav {
    gap: 14px 18px;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-card {
    min-height: 380px;
  }

  .content-card {
    padding: 22px;
  }

  .section {
    padding: 48px 0;
  }

  .sticky-play {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}