:root {
  --bg: #090614;
  --bg-elev: #120a24;
  --bg-card: #18102c;
  --line: rgba(255, 224, 138, 0.16);
  --gold: #f4c430;
  --gold-soft: #ffe08a;
  --magenta: #e11d8f;
  --purple: #8b5cf6;
  --text: #f6f1ff;
  --muted: #b7adc9;
  --ok: #34d399;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(225, 29, 143, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(139, 92, 246, 0.2), transparent 50%),
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--gold-soft);
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
.logo-word,
.hero-card__spins,
.footer-brand {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: -0.02em;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 0.7em;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: #1a1020;
  padding: 8px 12px;
  z-index: 80;
}

.skip-link:focus {
  top: 12px;
}

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

.rg-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: #05030b;
  border-bottom: 1px solid var(--line);
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.rg-bar a {
  color: var(--text);
}

.rg-bar__sep {
  opacity: 0.4;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.logo-word {
  font-size: 1.35rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, #ffe08a, var(--gold));
  color: #1a1020;
  box-shadow: 0 8px 24px rgba(244, 196, 48, 0.28);
}

.btn-gold:hover {
  color: #1a1020;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-outline {
  background: transparent;
  color: var(--gold-soft);
  border-color: rgba(244, 196, 48, 0.45);
}

.btn-lg {
  padding: 0.9rem 1.45rem;
}

.btn-block {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  padding: 72px 0 24px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: auto -120px 10% auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(244, 196, 48, 0.16), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.breadcrumb,
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.breadcrumb {
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin-bottom: 18px;
}

.lede {
  font-size: 1.15rem;
  color: #ddd4ee;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-row li {
  position: relative;
  padding-left: 16px;
}

.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
}

.hero-card {
  background:
    linear-gradient(180deg, rgba(244, 196, 48, 0.12), transparent 40%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-card__tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--gold-soft);
}

.hero-card__spins {
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  line-height: 0.9;
  margin: 8px 0 0;
  background: linear-gradient(180deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-card__label {
  font-size: 1.3rem;
  color: var(--text);
  margin: 6px 0 8px;
}

.hero-card__meta {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  text-align: left;
  color: var(--muted);
}

.hero-card__meta li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.fineprint {
  font-size: 0.75rem;
  color: #8d839e;
  margin-top: 12px;
}

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

.section-head h2,
.prose h2,
.claim-box h2,
.promo-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.offers {
  padding: 8px 0 72px;
}

.advantages,
.seasonal,
.faq,
.articles,
.claim,
.wheel-section,
.promos-cta,
.tournaments,
.checklist-section,
.prose-section {
  padding: 72px 0;
}

.offer-grid,
.adv-grid,
.season-grid,
.article-grid {
  display: grid;
  gap: 18px;
}

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

.offer-card,
.adv-grid article,
.season-grid article,
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.offer-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.offer-card h3,
.adv-grid h3,
.season-grid h3,
.article-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
}

.wheel-section {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.08), transparent);
}

.wheel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.wheel-prizes {
  color: var(--muted);
  padding-left: 18px;
}

.countdown-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--gold-soft);
  margin: 22px 0 4px;
}

.countdown {
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 18px;
}

.wheel-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.wheel-pointer {
  position: absolute;
  top: 8px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid var(--gold);
  z-index: 2;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}

.wheel {
  width: min(380px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(244, 196, 48, 0.08), var(--shadow);
  transition: transform 4s cubic-bezier(0.12, 0.7, 0.12, 1);
}

.wheel.is-spinning {
  pointer-events: none;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 0.4em;
}

.prose h3 {
  font-size: 1.25rem;
  margin-top: 1.4em;
}

.steps {
  color: var(--muted);
  padding-left: 20px;
}

.steps li {
  margin-bottom: 8px;
}

.note {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 14px;
  color: var(--text);
}

.adv-grid,
.season-grid {
  grid-template-columns: repeat(4, 1fr);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}

.checklist strong {
  color: var(--gold-soft);
}

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

.season-tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--magenta);
  margin-bottom: 8px;
}

.center-note {
  text-align: center;
  margin-top: 28px;
  color: var(--text);
}

.promo-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background:
    linear-gradient(120deg, rgba(225, 29, 143, 0.2), rgba(139, 92, 246, 0.18)),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
}

.promo-banner p:last-of-type {
  margin-bottom: 0;
}

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

details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 18px 4px;
}

summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}

details[open] summary::after {
  content: "–";
}

.article-grid {
  grid-template-columns: repeat(5, 1fr);
}

.article-card {
  color: inherit;
  display: block;
  min-height: 180px;
}

.article-card span {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.article-card h3 {
  color: var(--text);
}

.article-card:hover {
  border-color: rgba(244, 196, 48, 0.4);
}

.claim {
  padding-top: 24px;
}

.claim-box {
  text-align: center;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px 28px;
}

.claim-box p {
  max-width: 640px;
  margin-inline: auto;
}

.claim-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px auto 8px;
  max-width: 520px;
}

.claim-form input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #0c0816;
  color: var(--text);
  padding: 0.9rem 1.1rem;
  font: inherit;
}

.claim-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-status {
  min-height: 1.4em;
  color: var(--ok);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.footer-brand {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.site-footer h3 {
  font-family: Outfit, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

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

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--text);
  border-radius: 50%;
  font-weight: 700;
  color: var(--text);
}

.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .wheel-layout,
  .promo-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .adv-grid,
  .season-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .btn-ghost {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(var(--header-h) + 32px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    gap: 0;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
  }

  .nav a {
    padding: 12px;
  }

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

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .offer-grid,
  .adv-grid,
  .season-grid,
  .article-grid,
  .checklist li {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .claim-form {
    flex-direction: column;
  }

  .header-actions .btn-gold {
    display: none;
  }
}
