:root {
  color-scheme: dark;
  --bg: #101214;
  --bg-soft: #15181b;
  --panel: rgba(22, 25, 28, 0.78);
  --panel-strong: #1b1f22;
  --line: rgba(247, 239, 225, 0.14);
  --text: #f7efe1;
  --muted: #b7aa96;
  --accent: #d99b3d;
  --accent-strong: #f0b653;
  --accent-ink: #17130c;
  --teal: #6ac6bd;
  --radius: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 0%, rgba(217, 155, 61, 0.13), transparent 28rem),
    linear-gradient(180deg, #101214 0%, #131619 42%, #0f1113 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(247, 239, 225, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 239, 225, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 18, 20, 0.84);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(var(--max), calc(100% - 40px));
  height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 188px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 239, 225, 0.04);
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(217, 155, 61, 0.12);
  outline: none;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--accent-ink);
  box-shadow: 0 14px 38px rgba(217, 155, 61, 0.22);
}

.btn-ghost {
  border-color: rgba(247, 239, 225, 0.22);
  background: rgba(247, 239, 225, 0.06);
  color: var(--text);
}

.nav-cta:hover,
.btn:hover,
.nav-cta:focus-visible,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.nav-cta:active,
.btn:active {
  transform: translateY(1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 239, 225, 0.05);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

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

.hero-bg {
  object-fit: cover;
  object-position: center right;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(16, 18, 20, 0.98) 0%, rgba(16, 18, 20, 0.72) 42%, rgba(16, 18, 20, 0.28) 100%),
    linear-gradient(180deg, rgba(16, 18, 20, 0.08), rgba(16, 18, 20, 0.96));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
  padding-bottom: 42px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  max-width: 780px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.12;
}

.hero-text,
.section-heading p,
.intro-copy p,
.promo-copy p,
.review-main p,
.faq-intro p,
.final-panel p,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  align-self: end;
  margin-bottom: 42px;
  padding: 20px;
  border: 1px solid rgba(247, 239, 225, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 18, 20, 0.64);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(247, 239, 225, 0.08);
}

.panel-orbit {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(240, 182, 83, 0.24), transparent 64%),
    conic-gradient(from 40deg, var(--accent), transparent, var(--teal), transparent, var(--accent));
  color: var(--accent-ink);
}

.panel-orbit span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  font-weight: 950;
}

.panel-label {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb-wrap {
  border-block: 1px solid var(--line);
  background: rgba(247, 239, 225, 0.035);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
  margin: 0 auto;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(247, 239, 225, 0.32);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.signal-grid div,
.game-card,
.step-card,
.review-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 239, 225, 0.045);
}

.signal-grid div {
  min-height: 220px;
  padding: 22px;
}

.signal-grid span,
.step-card span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--accent);
  font-weight: 900;
}

.signal-grid strong,
.step-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.signal-grid p,
.game-card p,
.step-card p,
.review-card span,
.faq-list p {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 32px;
}

.game-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 16px;
}

.game-card {
  padding: 24px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-card-large {
  grid-row: span 2;
}

.game-card-wide {
  grid-column: span 2;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(217, 155, 61, 0.13), rgba(106, 198, 189, 0.06)),
    rgba(247, 239, 225, 0.045);
}

.game-card a {
  color: var(--accent);
  font-weight: 900;
}

.game-visual {
  min-height: 154px;
  margin-bottom: 24px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: #0b0d0f;
}

.game-visual img,
.provider-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-visual::after,
.provider-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(11, 13, 15, 0.82)),
    radial-gradient(circle at 76% 24%, rgba(217, 155, 61, 0.2), transparent 38%);
  pointer-events: none;
}

.provider-scene {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  margin-bottom: 22px;
  border-radius: 14px;
  border: 1px solid rgba(247, 239, 225, 0.1);
  background: #0b0d0f;
}

.provider-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.provider-strip span,
.benefit-pills span {
  padding: 10px 14px;
  border: 1px solid rgba(247, 239, 225, 0.16);
  border-radius: 999px;
  color: var(--text);
  background: rgba(16, 18, 20, 0.5);
  font-size: 14px;
  font-weight: 800;
}

.promo-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.promo-board {
  min-height: 460px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(217, 155, 61, 0.26);
  background:
    linear-gradient(90deg, rgba(16, 18, 20, 0.86), rgba(16, 18, 20, 0.52)),
    url("../../img/promo-arena.png") center / cover no-repeat,
    radial-gradient(circle at 50% 40%, rgba(217, 155, 61, 0.34), transparent 8rem),
    radial-gradient(circle at 70% 70%, rgba(106, 198, 189, 0.22), transparent 12rem),
    linear-gradient(135deg, #171a1d, #0d0f11);
  overflow: hidden;
}

.promo-core {
  width: min(430px, calc(100% - 36px));
  padding: 32px;
  border: 1px solid rgba(247, 239, 225, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 18, 20, 0.72);
  backdrop-filter: blur(16px);
}

.promo-core span {
  color: var(--accent);
  font-weight: 950;
}

.promo-core strong {
  display: block;
  margin: 10px 0;
  font-size: 36px;
  line-height: 1.03;
}

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

.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.step-card p {
  margin-top: auto;
}

.review-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  padding: 24px;
}

.review-card:first-child {
  grid-row: span 2;
  background:
    linear-gradient(145deg, rgba(217, 155, 61, 0.12), rgba(247, 239, 225, 0.045)),
    rgba(247, 239, 225, 0.045);
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.review-card strong,
.review-card span {
  display: block;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

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

.faq-list details {
  padding: 20px 22px;
}

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

.faq-list summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-panel {
  display: grid;
  justify-items: start;
  min-height: 340px;
  padding: 44px;
  border: 1px solid rgba(217, 155, 61, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 155, 61, 0.18), rgba(106, 198, 189, 0.08)),
    rgba(247, 239, 225, 0.045);
}

.site-footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  background: #0e1012;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 32px;
  align-items: start;
}

.footer-grid img {
  width: 188px;
  height: auto;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding-inline: 9px;
  }

  .hero-grid,
  .intro-layout,
  .promo-layout,
  .review-layout,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 420px;
    margin-bottom: 0;
  }

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

  .game-card-large,
  .game-card-wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .container,
  .navbar {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 68px 0;
  }

  .navbar {
    height: 66px;
  }

  .brand img {
    width: 148px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(16, 18, 20, 0.96);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .hero {
    min-height: 100dvh;
    padding-top: 66px;
  }

  .hero-bg {
    object-position: 65% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(16, 18, 20, 0.98), rgba(16, 18, 20, 0.78)),
      linear-gradient(180deg, rgba(16, 18, 20, 0.12), rgba(16, 18, 20, 0.96));
  }

  .hero-copy {
    padding: 38px 0 12px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 56px);
  }

  h2 {
    font-size: clamp(31px, 11vw, 44px);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .signal-grid,
  .game-mosaic,
  .steps-grid,
  .reviews {
    grid-template-columns: 1fr;
  }

  .promo-core {
    padding: 24px;
  }

  .promo-core strong {
    font-size: 30px;
  }

  .final-panel {
    padding: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
