
:root {
  --bg: #050505;
  --text: #f8f8f8;
  --muted: #c9c9c9;
  --soft: #9b9b9b;
  --gold: #ffd319;
  --gold-2: #fff07a;
  --gold-3: #a98100;
  --pink: #ff1095;
  --pink-2: #ff4bb5;
  --card: rgba(16, 16, 14, .88);
  --stroke: rgba(255, 211, 25, .18);
  --line: rgba(255,255,255,.09);
  --shadow: 0 18px 55px rgba(0, 0, 0, .48);
  --container: 1220px;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(255,211,25,.16), transparent 32%),
    radial-gradient(circle at 85% 26%, rgba(255,16,149,.10), transparent 30%),
    linear-gradient(180deg, #080808 0%, #020202 100%);
  line-height: 1.65;
  padding-bottom: 96px;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .36;
  background-image:
    linear-gradient(rgba(255,211,25,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,211,25,.055) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(circle at top, black, transparent 75%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

.page-bg::before, .page-bg::after {
  content: "";
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}
.page-bg::before { top: 120px; left: -160px; background: rgba(255,211,25,.12); }
.page-bg::after { top: 420px; right: -170px; background: rgba(255,16,149,.12); }

.glass {
  background: linear-gradient(180deg, rgba(18,18,15,.92), rgba(8,8,8,.93));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 180deg, rgba(255,211,25,.20), rgba(255,255,255,.03), rgba(255,16,149,.16), rgba(255,211,25,.18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.glass > * { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(5,5,5,.72);
  border-bottom: 1px solid rgba(255,211,25,.13);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
}
.brand img {
  width: 166px;
  height: auto;
  background: transparent;
  filter: drop-shadow(0 10px 20px rgba(255,211,25,.12));
}
.nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav a {
  color: #e3e3e3;
  font-size: 15px;
  font-weight: 800;
  transition: color .22s ease, transform .22s ease;
}
.nav a:hover { color: var(--gold); transform: translateY(-1px); }

.nav-cta, .btn, .dock-btn, .scroll-top {
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.nav-cta {
  padding: 13px 22px;
  border-radius: 16px;
  font-weight: 900;
}
.btn {
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
}
.btn.full { width: 100%; margin-top: 18px; }
.btn-primary, .nav-cta, .dock-primary {
  color: #120b00;
  background: linear-gradient(180deg, #ffef76, var(--gold));
  box-shadow: 0 12px 24px rgba(255,211,25,.24), inset 0 1px 0 rgba(255,255,255,.65);
}
.btn-secondary, .dock-secondary {
  color: #fff;
  background: linear-gradient(180deg, var(--pink-2), var(--pink));
  box-shadow: 0 12px 24px rgba(255,16,149,.22);
}
.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
}
.btn:hover, .nav-cta:hover, .dock-btn:hover, .scroll-top:hover { transform: translateY(-2px); filter: brightness(1.05); }
.ripple-btn::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(120deg, transparent 34%, rgba(255,255,255,.30) 50%, transparent 66%);
  transform: translateX(-130%) rotate(12deg);
  animation: shine 4.8s linear infinite;
  pointer-events: none;
}
@keyframes shine { to { transform: translateX(130%) rotate(12deg); } }

.burger { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 0; cursor: pointer; }
.burger span { display: block; height: 2px; background: #fff; margin: 7px 0; border-radius: 20px; }

.hero { padding: 34px 0 14px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 468px);
  gap: 30px;
  align-items: start;
}
.hero-copy { padding: 34px; min-height: 100%; }
.eyebrow, .section-kicker {
  display: inline-flex;
  color: #171000;
  background: linear-gradient(180deg, #fff184, var(--gold));
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-kicker { color: var(--gold-2); background: rgba(255,211,25,.08); border: 1px solid rgba(255,211,25,.18); }
h1, h2, h3 { margin: 0 0 16px; line-height: 1.08; letter-spacing: -.025em; }
h1 { font-size: clamp(2.25rem, 4.2vw, 4.45rem); max-width: 14.5ch; }
h2 { font-size: clamp(1.75rem, 3vw, 2.85rem); }
h3 { font-size: clamp(1.16rem, 1.55vw, 1.48rem); }
p { color: var(--muted); margin: 0 0 16px; }
.lead { font-size: 1.07rem; color: #e2e2e2; }

.hud-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin: 24px 0;
}
.hud-chip {
  min-width: 0;
  padding: 16px 17px;
  border-radius: 18px;
  border: 1px solid rgba(255,211,25,.23);
  background: radial-gradient(circle at top left, rgba(255,211,25,.22), rgba(255,211,25,.045));
}
.hud-chip strong { display: block; color: var(--gold-2); margin-bottom: 4px; font-size: .94rem; }
.hud-chip span { color: #fff; font-weight: 850; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 10px 0 18px; }
.trust-row { display: flex; gap: 9px; flex-wrap: wrap; }
.trust-row span, .mini-checks span, .slots-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,211,25,.17);
  color: #f3f3f3;
  background: rgba(255,255,255,.045);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .88rem;
  font-weight: 750;
}
.hero-poster-wrap { display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 18px; }

.hero-side-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-side-panel .hud-grid {
  margin: 0;
}
.hero-side-panel .cta-row {
  margin: 0;
}
.hero-side-panel .trust-row {
  gap: 10px;
}
.hero-poster-shell {
  position: relative;
  width: 100%;
  max-width: 468px;
  padding: 16px 16px 9px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,211,25,.20), rgba(255,211,25,.045));
  box-shadow: 0 28px 75px rgba(0,0,0,.50), inset 0 0 0 1px rgba(255,211,25,.22);
  overflow: visible;
}
.hero-poster-shell::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,211,25,.18);
  border-radius: 28px;
  pointer-events: none;
}
.poster-badge {
  position: absolute;
  top: -14px;
  right: 30px;
  z-index: 3;
  background: linear-gradient(180deg, var(--pink-2), var(--pink));
  color: #fff;
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 10px 26px rgba(255,16,149,.32);
}
.hero-poster {
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
  height: auto;
  max-height: none;
  border-radius: 30px;
  filter: drop-shadow(0 34px 42px rgba(0,0,0,.55));
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.fact-card { padding: 21px; min-width: 0; }
.fact-card span { color: var(--gold-2); display: block; font-weight: 900; margin-bottom: 8px; }
.fact-card strong { color: #fff; font-size: 1.03rem; }

.content-block { padding: 32px 0; }
.two-col { display: grid; grid-template-columns: minmax(0,1.22fr) minmax(290px,.78fr); gap: 22px; }
.article-card, .table-card, .feature-list { padding: 30px; }
.table-card table { width: 100%; border-collapse: collapse; }
.table-card th, .table-card td {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.table-card th { color: var(--gold-2); width: 42%; font-weight: 900; }
.section-head { margin-bottom: 20px; max-width: 980px; }
.bonus-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr); gap: 22px; }
.bonus-main { padding: 28px; display: grid; grid-template-columns: minmax(0,1fr) minmax(240px,320px); gap: 22px; align-items: center; }
.bonus-main img, .loyalty-image-wrap img, .screenshot-card img, .providers-strip img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255,211,25,.16);
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
}
.bonus-label { color: var(--gold-2); letter-spacing: .12em; font-weight: 950; font-size: .82rem; }
.mini-checks, .slots-tags { display: flex; gap: 9px; flex-wrap: wrap; margin: 18px 0; }
.feature-list ul, .accent-list, .steps-list { margin: 0; padding-left: 20px; color: #ddd; }
.feature-list li, .accent-list li, .steps-list li { margin: 8px 0; }
.loyalty-panel, .providers-strip {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(340px,1.1fr);
  gap: 22px;
  padding: 28px;
  align-items: center;
}
.games-grid { display: grid; grid-template-columns: minmax(0,.95fr) minmax(300px,1.05fr); gap: 22px; margin-bottom: 22px; }
.screenshot-card { padding: 18px; }
.steps-grid, .compare-grid, .mistakes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.compare-grid, .mistakes-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.step-card, .compare-card, .mistake-card { padding: 24px; }
.step-card b {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff184, var(--gold));
  color: #171000;
  margin-bottom: 16px;
}
.tip-widget {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq-list { display: grid; gap: 14px; }
details { padding: 20px 24px; }
summary { cursor: pointer; list-style: none; font-weight: 950; font-size: 1.06rem; }
summary::-webkit-details-marker { display: none; }
details p { margin-top: 12px; }
.final-cta {
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 22px;
  align-items: center;
}
.site-footer {
  margin-top: 16px;
  padding: 36px 0 118px;
  border-top: 1px solid rgba(255,211,25,.12);
  background: linear-gradient(180deg, rgba(12,12,12,.6), rgba(2,2,2,.95));
}
.footer-inner { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(220px,.45fr); gap: 24px; align-items: center; }
.footer-brand img { width: 176px; margin-bottom: 10px; background: transparent; }
.footer-links { display: grid; gap: 9px; }
.footer-note { text-align: right; color: var(--soft); font-size: .92rem; }

.sticky-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 999px;
  background: rgba(7,7,7,.76);
  border: 1px solid rgba(255,211,25,.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0,0,0,.54);
  transition: opacity .22s ease, transform .22s ease;
}
.sticky-dock.is-hidden { opacity: 0; transform: translateX(-50%) translateY(18px); pointer-events: none; }
.dock-btn { min-width: 160px; padding: 14px 20px; border-radius: 999px; font-weight: 950; }
.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 96px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #171000;
  background: linear-gradient(180deg, #fff184, var(--gold));
  box-shadow: 0 10px 26px rgba(255,211,25,.24);
  opacity: 0;
  pointer-events: none;
  z-index: 91;
}
.scroll-top.is-visible { opacity: .92; pointer-events: auto; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 82px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    padding: 18px;
    border-radius: 22px;
    background: rgba(8,8,8,.97);
    border: 1px solid rgba(255,211,25,.16);
  }
  .hero-grid, .two-col, .bonus-grid, .loyalty-panel, .games-grid, .providers-strip, .footer-inner, .final-cta { grid-template-columns: 1fr; }
  .hero-poster-wrap { order: -1; }
  h1 { max-width: none; }
  .quick-facts, .steps-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-note { text-align: left; }
}
@media (max-width: 680px) {
  body { padding-bottom: 92px; }
  .container { width: min(var(--container), calc(100% - 20px)); }
  .nav-wrap { min-height: 72px; gap: 12px; }
  .brand img { width: 132px; }
  .nav-cta { display: none; }
  .hero { padding-top: 18px; }
  .hero-copy, .article-card, .table-card, .feature-list, .bonus-main, .loyalty-panel, .providers-strip, .step-card, .compare-card, .mistake-card, details, .tip-widget, .final-cta { padding: 20px; }
  .hud-grid, .quick-facts, .steps-grid, .compare-grid, .mistakes-grid { grid-template-columns: 1fr; }
  .cta-row, .tip-widget { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-poster-shell { max-width: 100%; padding: 12px 10px 8px; border-radius: 28px; }
  .hero-poster { width: calc(100% + 16px); margin-left: -8px; margin-right: -8px; height: auto; max-height: none; border-radius: 24px; }
  .poster-badge { right: 18px; top: -10px; font-size: .88rem; }
  .sticky-dock { width: calc(100% - 20px); bottom: 10px; padding: 10px; gap: 10px; }
  .dock-btn { min-width: 0; width: 100%; padding: 13px 10px; }
  .scroll-top { right: 12px; bottom: 88px; width: 42px; height: 42px; }
}
