:root {
  --bg: #080908;
  --panel: #111210;
  --panel-2: #161714;
  --panel-3: #1b1c18;
  --text: #f6f6f2;
  --muted: #989d94;
  --line: rgba(255, 255, 255, 0.09);
  --gold: #f1c84c;
  --gold-light: #ffe695;
  --green: #70dc83;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --section-space: 88px;
  --grid-gap: 16px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(800px 500px at 72% 0, rgba(241, 200, 76, 0.075), transparent 68%),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

p {
  margin-top: 0;
}

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

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

.container {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 9px 14px;
  border-radius: 9px;
  background: var(--gold);
  color: #15130c;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 8, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(241, 200, 76, 0.28);
}

.brand small {
  display: block;
  margin-top: 1px;
  color: #747970;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #c2c6be;
  font-size: 13px;
  font-weight: 750;
}

.nav > a:not(.button):hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--gold);
}

.promo-strip {
  padding: 10px 0 4px;
  background: transparent;
}

.promo-inner {
  position: relative;
  min-height: 86px;
  display: grid;
  overflow: hidden;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  padding: 15px 18px;
  border: 1px solid rgba(241, 200, 76, 0.3);
  border-radius: 18px;
  background:
    radial-gradient(340px 140px at 92% 0, rgba(241, 200, 76, 0.15), transparent 68%),
    linear-gradient(120deg, #181813, #10110f);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(241, 200, 76, 0.035),
    inset 0 1px rgba(255, 255, 255, 0.055);
}

.promo-inner::before {
  position: absolute;
  top: -58px;
  right: 205px;
  width: 125px;
  height: 125px;
  border: 1px solid rgba(241, 200, 76, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.promo-badge {
  position: relative;
  z-index: 1;
  padding: 6px 9px;
  border: 1px solid rgba(241, 200, 76, 0.32);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(241, 200, 76, 0.12), rgba(241, 200, 76, 0.045));
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.promo-copy strong {
  display: block;
  color: #f7f7f2;
  font-size: 18px;
  letter-spacing: -0.015em;
}

.promo-copy > span {
  display: block;
  color: #939990;
  font-size: 10px;
}

.promo-copy .promo-highlight {
  display: inline;
  background: linear-gradient(135deg, #fff0ac, var(--gold));
  background-clip: text;
  color: transparent;
  font-weight: 950;
  white-space: nowrap;
}

.promo-code {
  position: relative;
  z-index: 1;
  min-width: 190px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 9px 11px 9px 16px;
  border: 1px solid rgba(241, 200, 76, 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(241, 200, 76, 0.11), rgba(241, 200, 76, 0.045));
  color: var(--gold-light);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.promo-code:hover,
.promo-code.is-copied {
  border-color: rgba(241, 200, 76, 0.68);
  background: rgba(241, 200, 76, 0.1);
}

.promo-code > span {
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.09em;
}

.promo-code small {
  min-width: 77px;
  padding: 6px 8px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-light), #d9a922);
  color: #17140b;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold-light), #d9a922);
  box-shadow: 0 10px 28px rgba(218, 169, 34, 0.15);
  color: #17140b;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(241, 200, 76, 0.28);
  background: rgba(241, 200, 76, 0.055);
  box-shadow: none;
  color: var(--gold);
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 9px;
}

.hero {
  padding: 8px 0 24px;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  overflow: hidden;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  gap: 38px;
  padding: 64px 68px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(100deg, rgba(15, 16, 14, 0.99) 0%, rgba(15, 16, 14, 0.94) 56%, rgba(24, 21, 12, 0.86) 100%);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.035);
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 15%, #000 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #c2c6be;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(112, 220, 131, 0.8);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
}

.hero-stage h1 {
  max-width: 660px;
  font-size: clamp(52px, 5.6vw, 78px);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #b2b7ad;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-stage .lead {
  max-width: 535px;
  margin-top: 28px;
  font-size: 18px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.button-hero {
  min-width: 218px;
  min-height: 54px;
  justify-content: space-between;
}

.button-hero span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.14);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 23px;
  color: #767c73;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.microcopy {
  margin: 13px 0 0;
  color: #777d74;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 410px;
}

.hero-side {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 10px;
}

.hero-promo {
  position: relative;
  z-index: 4;
  width: min(100%, 500px);
  display: grid;
  align-items: center;
  justify-self: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 15px 15px 15px 19px;
  border: 1px solid rgba(241, 200, 76, 0.36);
  border-radius: 18px;
  background:
    radial-gradient(180px 90px at 100% 0, rgba(241, 200, 76, 0.16), transparent),
    rgba(18, 19, 16, 0.96);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(241, 200, 76, 0.04),
    inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.hero-promo-copy > span,
.hero-promo-copy > small {
  display: block;
}

.hero-promo-copy > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-promo-copy strong {
  display: block;
  margin: 2px 0;
  font-size: 20px;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-promo-copy strong b {
  color: var(--gold-light);
  font-weight: 950;
}

.hero-promo-copy > small {
  color: #a4aaa0;
  font-size: 10px;
}

.hero-promo-code {
  min-width: 158px;
  min-height: 52px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  padding: 6px 10px;
  border: 1px solid rgba(255, 230, 149, 0.65);
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold-light), #dba923);
  color: #17140b;
  box-shadow: 0 10px 25px rgba(219, 169, 35, 0.18), inset 0 1px rgba(255, 255, 255, 0.35);
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-promo-code:hover,
.hero-promo-code.is-copied {
  border-color: var(--gold-light);
  background: linear-gradient(135deg, #fff2b5, #e4b42e);
}

.hero-promo-code > span {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.hero-promo-code > small {
  color: rgba(23, 20, 11, 0.65);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-glow,
.visual-ring,
.logo-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.visual-glow {
  width: min(430px, 100%);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(241, 200, 76, 0.2), rgba(145, 91, 7, 0.07) 45%, transparent 70%);
}

.visual-ring {
  border: 1px solid rgba(241, 200, 76, 0.2);
}

.visual-ring-one {
  width: min(380px, 92%);
  aspect-ratio: 1;
}

.visual-ring-two {
  width: min(305px, 75%);
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.55;
}

.logo-orb {
  width: min(250px, 62%);
  aspect-ratio: 1;
  padding: 8px;
  border: 1px solid rgba(255, 225, 133, 0.44);
  background: rgba(8, 9, 8, 0.8);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48), 0 0 42px rgba(241, 200, 76, 0.1);
}

.logo-orb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  min-width: 108px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(19, 20, 17, 0.9);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.floating-chip b,
.floating-chip small {
  display: block;
}

.floating-chip b {
  color: var(--gold);
  font-size: 16px;
}

.floating-chip small {
  color: #777d74;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip-one {
  top: 62px;
  right: 0;
}

.chip-two {
  bottom: 50px;
  left: 0;
}

.category-bar {
  position: relative;
  z-index: 4;
  display: grid;
  margin: 16px 0 0;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(18, 19, 17, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.category-bar a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-right: 1px solid var(--line);
  color: #a9aea5;
  font-size: 12px;
  font-weight: 850;
  transition: color 0.2s ease, background 0.2s ease;
}

.category-bar a:last-child {
  border-right: 0;
}

.category-bar a:hover {
  background: rgba(241, 200, 76, 0.055);
  color: var(--gold);
}

.category-bar span {
  color: var(--gold);
}

.game-shelf {
  padding: 62px 0 36px;
}

.shelf-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
}

.shelf-head .eyebrow {
  margin-bottom: 8px;
}

.shelf-head h2 {
  font-size: 34px;
}

.text-link {
  padding-bottom: 5px;
  color: #8c9288;
  font-size: 12px;
  font-weight: 800;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.game-card {
  position: relative;
  min-height: 228px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #141513;
  isolation: isolate;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.game-card::before {
  position: absolute;
  z-index: -1;
  top: -64px;
  right: -43px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--card-glow);
  content: "";
}

.game-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-5px);
}

.game-card-gold {
  --card-glow: radial-gradient(circle, rgba(255, 194, 42, 0.75), rgba(151, 89, 0, 0.12) 68%, transparent 70%);
  background: linear-gradient(145deg, #211b0d, #121310);
}

.game-card-violet {
  --card-glow: radial-gradient(circle, rgba(160, 80, 255, 0.75), rgba(70, 25, 118, 0.1) 68%, transparent 70%);
  background: linear-gradient(145deg, #1c1325, #121310);
}

.game-card-red {
  --card-glow: radial-gradient(circle, rgba(255, 71, 73, 0.74), rgba(126, 22, 24, 0.1) 68%, transparent 70%);
  background: linear-gradient(145deg, #241314, #121310);
}

.game-card-blue {
  --card-glow: radial-gradient(circle, rgba(48, 139, 255, 0.76), rgba(18, 62, 119, 0.1) 68%, transparent 70%);
  background: linear-gradient(145deg, #101c29, #121310);
}

.game-icon {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 21px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: white;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.09), 0 12px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(6px);
}

.game-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.game-card:hover .game-icon {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.game-card small,
.game-card strong,
.game-card i {
  display: block;
}

.game-card small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.game-card strong {
  font-size: 21px;
  letter-spacing: -0.03em;
}

.game-card i {
  color: #868c83;
  font-size: 11px;
  font-style: normal;
}

.section {
  padding: var(--section-space) 0;
}

.section-muted {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.014);
}

.section-head {
  max-width: 730px;
  margin-bottom: 36px;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.cards,
.steps {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.card,
.steps li {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel-2), var(--panel));
}

.card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(241, 200, 76, 0.24);
  border-radius: 11px;
  background: rgba(241, 200, 76, 0.055);
  color: var(--gold);
  font-weight: 900;
}

.card p,
.steps p {
  margin: 11px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
}

.steps li::before {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  content: "0" counter(steps);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.content-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 54px;
}

.content-grid .prose {
  padding: 38px 40px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(22, 23, 20, 0.72), rgba(17, 18, 16, 0.9));
}

.prose h2 {
  margin: 46px 0 16px;
  font-size: 31px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 27px 0 10px;
}

.prose p,
.prose li {
  color: #b5bab1;
  line-height: 1.72;
}

.prose p {
  max-width: 72ch;
  margin-bottom: 18px;
}

.prose ul {
  margin: 14px 0 22px;
  padding-left: 21px;
}

.prose li + li {
  margin-top: 7px;
}

.prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.side-card {
  position: sticky;
  top: 96px;
  padding: 26px;
  border: 1px solid rgba(241, 200, 76, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(240px 140px at 100% 0, rgba(241, 200, 76, 0.09), transparent),
    var(--panel);
}

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

.side-card .button {
  width: 100%;
}

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

.faq details {
  padding: 0 21px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
}

.faq summary {
  padding: 18px 34px 18px 0;
  font-weight: 800;
  cursor: pointer;
}

.faq p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
}

.cta {
  padding: 40px;
  border: 1px solid rgba(241, 200, 76, 0.22);
  border-radius: 23px;
  background:
    radial-gradient(380px 230px at 100% 0, rgba(241, 200, 76, 0.1), transparent),
    var(--panel);
}

.cta p {
  max-width: 690px;
  margin: 13px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0 21px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
}

.footer-copy {
  max-width: 410px;
  color: #838980;
  font-size: 12px;
}

.footer-title {
  margin-bottom: 13px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 7px;
  color: #858b82;
  font-size: 12px;
}

.copyright {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #666c63;
  font-size: 11px;
}

.page-hero {
  padding: 38px 0 48px;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 66px);
}

.breadcrumbs {
  margin-bottom: 21px;
  color: #7f857c;
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--gold);
}

.info-section {
  position: relative;
  overflow: hidden;
}

.info-section::before {
  position: absolute;
  top: 90px;
  left: -260px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(241, 200, 76, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.section-head-wide {
  max-width: none;
  display: grid;
  align-items: end;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 56px;
  margin-bottom: 42px;
}

.section-head-wide p {
  max-width: 410px;
  margin: 0 0 5px;
}

.info-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: var(--grid-gap);
}

.info-feature,
.info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(320px 220px at 100% 0, rgba(241, 200, 76, 0.075), transparent),
    linear-gradient(145deg, var(--panel-2), var(--panel));
}

.info-feature {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  border-radius: 22px;
}

.info-feature::before {
  position: absolute;
  top: -160px;
  right: -130px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(241, 200, 76, 0.11);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(241, 200, 76, 0.025);
  content: "";
}

.info-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.info-card {
  min-height: 0;
  display: grid;
  align-items: start;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 30px;
  border-radius: 20px;
}

.info-number {
  position: absolute;
  top: 20px;
  right: 23px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.info-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 200, 76, 0.2);
  border-radius: 15px;
  background: rgba(241, 200, 76, 0.055);
  color: var(--gold);
}

.info-feature .info-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 70px;
  border-radius: 18px;
}

.info-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-feature .info-icon svg {
  width: 31px;
  height: 31px;
}

.info-copy {
  min-width: 0;
}

.info-label {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.info-copy h3 {
  font-size: 25px;
}

.info-feature .info-copy h3 {
  font-size: 34px;
}

.info-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.info-feature .info-copy p {
  max-width: 570px;
  font-size: 15px;
}

.info-copy a {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.info-arrow {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 20px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.info-arrow:hover {
  background: rgba(241, 200, 76, 0.07);
  transform: translateX(3px);
}

.age-note {
  display: inline-flex;
  margin-top: 15px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #858b82;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(500px 340px at 15% 50%, rgba(241, 200, 76, 0.055), transparent),
    rgba(255, 255, 255, 0.012);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 72px;
}

.faq-intro {
  position: sticky;
  top: 108px;
}

.faq-intro h2 {
  font-size: 46px;
}

.faq-intro p {
  max-width: 350px;
  margin: 17px 0 26px;
  color: var(--muted);
}

.faq-intro .button {
  min-width: 180px;
}

.faq details {
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.faq details:first-child {
  border-top: 1px solid var(--line);
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 38px 22px 0;
  list-style: none;
  font-size: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  right: 4px;
  color: var(--gold);
  content: "+";
  font-size: 22px;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq summary span {
  flex: 0 0 auto;
  color: #5f655d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.faq details p {
  max-width: 680px;
  padding: 0 42px 22px 36px;
  font-size: 14px;
  line-height: 1.7;
}

.final-section {
  padding: 70px 0;
}

.final-cta {
  position: relative;
  min-height: 220px;
  display: grid;
  overflow: hidden;
  align-items: center;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 34px;
  padding: 42px 48px;
  border: 1px solid rgba(241, 200, 76, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(420px 260px at 5% 50%, rgba(241, 200, 76, 0.13), transparent),
    linear-gradient(120deg, #171713, #10110f);
  box-shadow: var(--shadow);
}

.final-cta::after {
  position: absolute;
  right: -110px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(241, 200, 76, 0.08);
  border-radius: 50%;
  content: "";
}

.final-mark {
  width: 116px;
  height: 116px;
  padding: 4px;
  border: 1px solid rgba(241, 200, 76, 0.26);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.final-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.final-copy {
  position: relative;
  z-index: 1;
}

.final-copy .eyebrow {
  margin-bottom: 8px;
}

.final-copy h2 {
  font-size: 39px;
}

.final-copy p {
  margin: 8px 0 0;
  color: var(--muted);
}

.final-cta > .button {
  position: relative;
  z-index: 1;
}

@media (max-width: 940px) {
  .hero-stage {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 54px 48px 20px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 370px;
  }

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

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

  .content-grid {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

  .section-head-wide {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .info-layout {
    grid-template-columns: 1fr;
  }

  .info-feature {
    min-height: 430px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta {
    grid-template-columns: 110px 1fr;
  }

  .final-cta > .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (min-width: 941px) and (max-width: 1199px) {
  .hero-stage h1 {
    font-size: clamp(46px, 5vw, 60px);
    white-space: nowrap;
  }

  .hero-promo {
    grid-template-columns: 1fr;
  }

  .hero-promo-code {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .hero .container {
    width: min(1540px, calc(100% - 24px));
  }

  .hero-stage {
    min-height: 640px;
    grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
    gap: clamp(40px, 4vw, 72px);
    padding: 58px clamp(48px, 5vw, 84px);
    border: 0;
    border-radius: 30px;
    background:
      radial-gradient(620px 480px at 78% 48%, rgba(241, 200, 76, 0.09), transparent 68%),
      radial-gradient(420px 260px at 12% 100%, rgba(241, 200, 76, 0.035), transparent),
      linear-gradient(105deg, rgba(17, 18, 16, 0.98), rgba(13, 14, 12, 0.9));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.035);
  }

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

  .hero-stage h1 {
    max-width: none;
    font-size: clamp(54px, 4.4vw, 76px);
    line-height: 1;
    white-space: nowrap;
  }

  .hero-stage .lead {
    max-width: 650px;
    font-size: 19px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .visual-glow {
    width: 450px;
  }

  .visual-ring-one {
    width: 405px;
  }

  .visual-ring-two {
    width: 325px;
  }

  .logo-orb {
    width: 265px;
  }

  .hero-side {
    width: min(100%, 560px);
    justify-self: center;
    gap: 12px;
  }

  .hero-promo {
    width: min(100%, 520px);
  }

  .category-bar {
    margin-top: 18px;
  }

  .game-card {
    min-height: 244px;
  }
}

@media (max-width: 700px) {
  body {
    overflow-x: hidden;
    font-size: 15px;
  }

  .container {
    width: min(100% - 20px, 1280px);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav {
    gap: 8px;
  }

  .nav > a:not(.button) {
    display: none;
  }

  .nav .button {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .promo-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
    border-radius: 18px;
  }

  .promo-strip {
    margin: 2px 0 12px;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .promo-strip .container {
    width: min(100% - 20px, 1280px);
  }

  .promo-inner::before {
    top: -46px;
    right: -35px;
    width: 135px;
    height: 135px;
  }

  .promo-badge {
    justify-self: start;
  }

  .promo-copy strong {
    font-size: clamp(16px, 5vw, 20px);
    line-height: 1.2;
    white-space: nowrap;
  }

  .promo-copy > span {
    max-width: 34em;
    margin-top: 2px;
    font-size: 10px;
  }

  .promo-code {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    grid-column: auto;
    background: rgba(241, 200, 76, 0.08);
  }

  .promo-code > span {
    font-size: 18px;
  }

  .page-hero {
    padding: 32px 0 30px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-stage {
    padding: 36px 20px 18px;
    border-radius: 21px;
  }

  .hero-stage h1 {
    max-width: 100%;
    font-size: clamp(30px, 9.6vw, 42px);
    line-height: 1;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .status-pill {
    display: flex;
    width: max-content;
    margin: 0 auto 22px;
  }

  .hero-stage .lead {
    margin-inline: auto;
    font-size: 16px;
  }

  .hero-copy .hero-actions,
  .hero-notes {
    justify-content: center;
  }

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

  .hero-notes {
    gap: 10px;
  }

  .hero-visual {
    min-height: 270px;
  }

  .hero-side {
    gap: 2px;
  }

  .hero-promo {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 16px;
    text-align: center;
  }

  .hero-promo-copy strong {
    font-size: 18px;
  }

  .hero-promo-code {
    width: 100%;
    min-height: 50px;
  }

  .visual-ring-one {
    width: min(270px, 90%);
  }

  .visual-ring-two {
    width: min(220px, 72%);
  }

  .logo-orb {
    width: min(178px, 58%);
  }

  .floating-chip {
    display: none;
  }

  .category-bar {
    display: grid;
    overflow: visible;
    margin: 12px 0 0;
    padding: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .category-bar a {
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--panel);
  }

  .category-bar a:last-child {
    grid-column: 1 / -1;
    border-right: 1px solid var(--line);
  }

  .game-shelf {
    padding-top: 48px;
  }

  .game-grid {
    display: grid;
    overflow: visible;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .game-card {
    min-width: 0;
    min-height: 190px;
    padding: 18px;
  }

  .game-icon {
    top: 16px;
    right: 15px;
    width: 58px;
    height: 58px;
  }

  .game-icon svg {
    width: 27px;
    height: 27px;
  }

  .game-card strong {
    font-size: 18px;
  }

  .section {
    padding: 60px 0;
  }

  .content-grid .prose {
    padding: 24px 22px;
  }

  .card,
  .steps li,
  .cta {
    padding: 23px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-head-wide h2 br,
  .faq-intro h2 br {
    display: none;
  }

  .section-head-wide h2,
  .faq-intro h2 {
    font-size: 34px;
  }

  .info-feature {
    min-height: auto;
    padding: 24px;
  }

  .info-feature .info-icon {
    margin-bottom: 90px;
  }

  .info-feature .info-copy h3 {
    padding-right: 24px;
    font-size: 27px;
  }

  .info-feature .info-copy p {
    padding-right: 0;
  }

  .info-arrow {
    display: none;
  }

  .info-card {
    min-height: 0;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 23px;
  }

  .info-card .info-icon {
    width: 46px;
    height: 46px;
  }

  .info-copy h3 {
    font-size: 21px;
  }

  .faq summary {
    gap: 12px;
    padding-right: 32px;
    font-size: 14px;
  }

  .faq details p {
    padding-left: 24px;
    padding-right: 20px;
  }

  .final-section {
    padding: 50px 0;
  }

  .final-cta {
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding: 28px 22px;
  }

  .final-mark {
    width: 72px;
    height: 72px;
  }

  .final-copy h2 {
    font-size: 29px;
  }

  .final-copy p {
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .header-inner {
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .nav .button {
    padding-inline: 10px;
  }

  .status-pill {
    margin-bottom: 20px;
  }

  .hero-stage .lead {
    font-size: 15px;
  }

  .hero-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .category-bar {
    grid-template-columns: 1fr;
  }

  .category-bar a:last-child {
    grid-column: auto;
  }

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

  .game-card {
    min-height: 176px;
  }

  .section-head h2,
  .section-head-wide h2,
  .faq-intro h2 {
    font-size: 31px;
  }

  .info-card {
    grid-template-columns: 1fr;
  }

  .info-card .info-icon {
    margin-bottom: 4px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-mark {
    margin-inline: auto;
  }

  .final-copy .eyebrow {
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
