:root {
  --bg: #07170f;
  --bg-2: #0d2419;
  --panel: rgba(16, 43, 31, 0.86);
  --panel-2: #123423;
  --line: rgba(218, 255, 201, 0.18);
  --green: #38e884;
  --green-2: #9cffca;
  --gold: #ffc857;
  --orange: #ff8a3d;
  --text: #f5fff8;
  --muted: #b9cdbf;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  font-family: Inter, "Noto Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 232, 132, 0.28), transparent 32rem),
    radial-gradient(circle at 92% 20%, rgba(255, 200, 87, 0.16), transparent 30rem),
    linear-gradient(180deg, #06120c 0%, var(--bg) 48%, #050b08 100%);
}

button,
a,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 28px));
  min-height: 74px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 14, 9, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #06120c;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  font-weight: 900;
}

.brand-text {
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--green-2);
}

.primary-btn,
.secondary-btn,
.game-card button,
.footer button,
.phone-screen button {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(156, 255, 202, 0.28);
  color: var(--text);
}

.primary-btn,
.game-card button,
.phone-screen button {
  padding: 0 18px;
  border-color: transparent;
  color: #06120c;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(56, 232, 132, 0.22);
}

.primary-btn.large {
  min-height: 54px;
  padding: 0 24px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.06);
}

main {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding-top: 104px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  min-height: 650px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 18, 12, 0.96), rgba(5, 18, 12, 0.62)),
    var(--panel-2);
}

.hero-image,
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  opacity: 0.26;
}

.hero-canvas {
  opacity: 0.92;
}

.hero-copy,
.version-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.1rem, 7.8vw, 7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow),
.quick-panel p,
.bonus-section p,
.phone-section p,
.game-card p,
.faq p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 710px;
  font-size: 1.08rem;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #dcefe2;
}

.version-card {
  padding: 24px;
  border: 1px solid rgba(255, 200, 87, 0.28);
  border-radius: 8px;
  background: rgba(6, 18, 12, 0.78);
  box-shadow: var(--shadow);
}

.version-card span {
  color: var(--muted);
}

.version-card strong {
  display: block;
  margin: 10px 0;
  color: var(--gold);
  font-size: 3rem;
}

.quick-panel,
.bonus-section,
.phone-section,
.footer,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.quick-panel,
.bonus-section,
.phone-section,
.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 38px);
}

.section {
  margin-top: 56px;
}

.section-head {
  margin-bottom: 20px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.steps,
.game-grid,
.bonus-grid {
  display: grid;
  gap: 14px;
}

.steps,
.game-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps article,
.game-card,
.bonus-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.steps span {
  color: var(--gold);
  font-weight: 900;
}

.steps h3,
.game-card h3 {
  margin: 16px 0 8px;
}

.bonus-section,
.phone-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  margin-top: 56px;
}

.bonus-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bonus-grid strong,
.bonus-grid span {
  display: block;
}

.bonus-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.phone {
  width: min(280px, 100%);
  margin: auto;
  padding: 14px;
  border: 1px solid rgba(156, 255, 202, 0.28);
  border-radius: 28px;
  background: #05120c;
}

.phone-top {
  width: 78px;
  height: 6px;
  margin: 2px auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.phone-screen {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 420px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 200, 87, 0.34), transparent 6rem),
    linear-gradient(180deg, #123423, #07170f);
}

.phone-screen span {
  color: var(--green-2);
  font-size: 2.7rem;
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: #dcefe2;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.footer {
  width: min(1180px, calc(100% - 28px));
  grid-template-columns: 1fr auto;
  margin: 56px auto 24px;
}

.footer p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .topbar,
  .quick-panel,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar {
    position: static;
    transform: none;
    margin: 12px auto;
  }

  main {
    padding-top: 0;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .bonus-section,
  .phone-section,
  .quick-panel,
  .footer {
    grid-template-columns: 1fr;
  }

  .steps,
  .game-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 640px;
    padding: 24px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }
}
