@charset "UTF-8";

/* ═══════════════════════════════════════════════════
   BILION EASTER — OBSIDIAN LUXURY
   Inspiration: Balmain editorial, dark jewellery ads,
   ultra-premium hotel identity
   ═══════════════════════════════════════════════════ */

/* ── FONTS ── */
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-VariableFont.woff2") format("woff2"),
       url("../fonts/DMSans-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ── TOKENS ── */
:root {
  --black:    #070708;
  --s1:       #0d0d0f;
  --s2:       #131315;
  --s3:       #1a1a1d;
  --s4:       #222226;
  --border:   rgba(255,255,255,.06);
  --border-g: rgba(196,148,74,.15);

  --gold:     #c4944a;
  --gold-lt:  #e8cc88;
  --gold-dim: rgba(196,148,74,.12);

  --w1: #f2ede6;   /* warm near-white */
  --w2: #9a9490;   /* warm mid-grey */
  --w3: #4a4845;   /* dim warm grey */

  --max: 1180px;
  --r:   12px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--w1);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════
   ANIMATION SYSTEM
═══════════════════════════════════════ */

/* ── Hero: page-load stagger (hu = hero unit) ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

.hu {
  opacity: 0;
  animation: fadeUp .7s cubic-bezier(.22,.68,0,1) forwards;
}
.hu--1  { animation-delay: .05s; }
.hu--2  { animation-delay: .15s; }
.hu--3  { animation-delay: .28s; }
.hu--4  { animation-delay: .40s; }
.hu--5  { animation-delay: .50s; }
.hu--6  { animation-delay: .58s; }
.hu--7  { animation-delay: .68s; }
.hu--8  { animation-delay: .78s; }
.hu--9  { animation-delay: .86s; }
.hu--10 { animation-delay: .94s; }

/* Girl slides in from right */
.hg {
  opacity: 0;
  animation: fadeRight .9s cubic-bezier(.22,.68,0,1) .2s forwards;
}

/* ── Scroll reveal (data-reveal) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.22,.68,0,1),
              transform .65s cubic-bezier(.22,.68,0,1);
}
[data-reveal-dir="left"] {
  transform: translateX(-28px);
}
[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* ── UTILITY ── */
.label-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.label-tag--center { display: block; text-align: center; }

/* ─────────────────────────────────────
   PRIMARY BUTTON
───────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #0a0804;
  background: linear-gradient(145deg, #f0dfa0 0%, #d4a84c 45%, #9a6e1e 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset,
              0 6px 28px rgba(196,148,74,.28);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset,
              0 12px 40px rgba(196,148,74,.38);
}
.btn-primary--lg  { padding: 17px 40px; font-size: 13px; }
.btn-primary--full { width: 100%; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  height: 62px;
  background: rgba(7,7,8,.85);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { width: 104px; display: block; }
.nav__ctas { display: flex; align-items: center; gap: 12px; }
.nav__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--w2);
  padding: 8px 4px;
  transition: color .2s;
}
.nav__link:hover { color: var(--w1); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 90vh;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(196,148,74,.08);
}

/* Ambient background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.06);
  /* Key: very dark, barely visible — creates depth not distraction */
  filter: brightness(.28) saturate(.7);
  transition: transform 8s ease;
}

/* Layered overlays for depth */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 90% at 70% 80%, rgba(196,148,74,.06) 0%, transparent 60%),
    linear-gradient(115deg,
      rgba(7,7,8,.97)  0%,
      rgba(7,7,8,.85)  35%,
      rgba(7,7,8,.45)  58%,
      rgba(7,7,8,.15)  75%,
      rgba(7,7,8,.55) 100%),
    linear-gradient(180deg,
      rgba(7,7,8,.7) 0%,
      transparent 10%,
      transparent 65%,
      rgba(7,7,8,.6) 82%,
      rgba(7,7,8,1) 100%);
}

/* Two-column layout */
.hero__layout {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  height: 100%;
}

/* ── LEFT COPY ── */
.hero__left {
  padding: 100px 0 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
/* Elegant thin first word */
.t-serif {
  display: block;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: .05em;
  color: var(--w1);
  font-style: italic;
}
/* Bold heavy second word */
.t-bold {
  display: block;
  font-size: clamp(58px, 7.5vw, 100px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: .9;
  background: linear-gradient(160deg, #f5e8c0 0%, var(--gold) 55%, #7a5218 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__brand {
  font-size: 15px;
  font-weight: 300;
  color: var(--w2);
  letter-spacing: .06em;
  margin-top: -10px;
}
.hero__brand strong {
  font-weight: 700;
  color: var(--w1);
}

/* Thin horizontal rule */
.hero__divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Big number + label */
.hero__reward {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reward__n {
  font-size: clamp(68px, 8vw, 108px);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  /* subtle inner glow on the number */
  text-shadow: 0 0 60px rgba(196,148,74,.2);
}
.reward__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reward__text > span:first-child {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--w1);
}
.reward__game {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-lt);
  letter-spacing: .04em;
}

/* Specs row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 18px;
}
.hero__stats li:first-child { padding-left: 0; }
.stat__dot {
  width: 3px !important;
  height: 3px !important;
  border-radius: 50%;
  background: var(--w3);
  padding: 0 !important;
  flex-direction: row !important;
  flex-shrink: 0;
  align-self: center;
}
.stat__k {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--w3);
  font-weight: 600;
}
.stat__v {
  font-size: 17px;
  font-weight: 800;
  color: var(--w1);
}

/* Promo code pill */
.hero__code {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 22px;
  border: 1px solid var(--border-g);
  border-radius: 3px;
  background: var(--gold-dim);
  backdrop-filter: blur(8px);
}
.hero__code-hint {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--w2);
}
.hero__code-val {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--gold-lt);
}

/* Actions: code on top, button below */
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

/* Copy code pill */
.hero__copy {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--border-g);
  border-radius: 3px;
  background: var(--gold-dim);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
  overflow: hidden;
}
.hero__copy:hover {
  background: rgba(196,148,74,.18);
  border-color: rgba(196,148,74,.35);
}
.hero__copy-hint {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--w2);
}
.hero__copy-val {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--gold-lt);
  transition: opacity .2s;
}
.hero__copy-icon {
  color: var(--w3);
  display: flex;
  align-items: center;
  transition: opacity .2s, color .2s;
}
.hero__copy:hover .hero__copy-icon { color: var(--gold); }

/* Success state */
.hero__copy-ok {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-lt);
  background: rgba(196,148,74,.18);
  opacity: 0;
  transform: scale(.94);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.hero__copy.is-copied .hero__copy-ok {
  opacity: 1;
  transform: scale(1);
}
.hero__copy.is-copied .hero__copy-val,
.hero__copy.is-copied .hero__copy-hint,
.hero__copy.is-copied .hero__copy-icon {
  opacity: 0;
}

.hero__legal {
  font-size: 11px;
  color: var(--w3);
}
.hero__legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--w3);
}

/* ── RIGHT VISUAL ── */
.hero__right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 90vh;
  padding-bottom: 0;
  margin-top: -40px;
}
.hero__halo {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,148,74,.14) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.hero__girl {
  position: relative;
  z-index: 2;
  height: min(88vh, 760px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.9))
          drop-shadow(0 0 120px rgba(196,148,74,.06));
}

/* Scroll indicator */
.hero__scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(196,148,74,.4));
  z-index: 3;
  animation: scrollFade 2.5s ease-in-out infinite;
}
@keyframes scrollFade {
  0%, 100% { opacity: 0; transform: translateX(-50%) scaleY(.5) translateY(-10px); }
  50%       { opacity: 1; transform: translateX(-50%) scaleY(1)  translateY(0); }
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.how {
  background: var(--s1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.how__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
.how__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 60px;
}
.how__title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--w1);
}

/* Steps: clean horizontal layout */
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.how__step {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  position: relative;
}
/* Individual gold accent — animated, different lengths per step */
.how__step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(196,148,74,.3));
  width: 0;
  transition: width 1s cubic-bezier(.22,.68,0,1) var(--line-delay, 0s);
}
.how__step.is-visible::before { width: var(--line-w, 60px); }

.how__step:nth-child(1) { --line-w: 72px;  --line-delay: 0.1s; }
.how__step:nth-child(2) { --line-w: 140px; --line-delay: 0.25s; }
.how__step:nth-child(3) { --line-w: 220px; --line-delay: 0.4s; }

/* Step body fade-up */
.how__step .how__num,
.how__step h3,
.how__step p {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.how__step.is-visible .how__num { opacity: 1; transform: none; transition-delay: calc(var(--line-delay) + 0.15s); }
.how__step.is-visible h3       { opacity: 1; transform: none; transition-delay: calc(var(--line-delay) + 0.28s); }
.how__step.is-visible p        { opacity: 1; transform: none; transition-delay: calc(var(--line-delay) + 0.38s); }

.how__num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.how__line { display: none; }

.how__step h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--w1);
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.how__step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--w2);
}
.how__step mark {
  background: none;
  color: var(--gold-lt);
  font-weight: 700;
}

/* ═══════════════════════════════════════
   OFFER SECTION
═══════════════════════════════════════ */
.offer {
  padding: 80px 0;
  background: var(--black);
}
.offer__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--s2);
}

/* ── Game col ── */
.offer__game {
  background: var(--s1);
  border-right: 1px solid var(--border);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.offer__game-img {
  position: relative;
  width: 108px;
  border-radius: 11px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border-g),
    0 14px 36px rgba(0,0,0,.7);
  transition: transform .3s, box-shadow .3s;
}
.offer__game-img:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(196,148,74,.3),
    0 22px 48px rgba(0,0,0,.8);
}
.offer__game-img img { width: 100%; }
.offer__game-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,.12) 0%,
    rgba(255,255,255,.04) 40%,
    transparent 60%);
  border-radius: 11px;
  pointer-events: none;
}
.offer__game-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--w1);
  text-align: center;
  line-height: 1.3;
}
.offer__game-by {
  font-size: 10px;
  color: var(--w3);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── Main card col ── */
.offer__card {
  position: relative;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.offer__card-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(196,148,74,.07) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(20px);
}

/* Big number */
.offer__big {
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer__big-n {
  font-size: clamp(44px, 5vw, 62px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(160deg, #fff 0%, var(--gold-lt) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.offer__big-label {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--w1);
}

/* Detail rows — compact inline */
.offer__meta {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.offer__meta-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 11px 10px;
  font-size: 12px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.offer__meta-row:last-child { border-right: none; }
.offer__meta-row:hover { background: rgba(255,255,255,.02); }
.offer__meta-row span:first-child {
  color: var(--w3);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.offer__meta-row span:last-child {
  font-weight: 800;
  font-size: 15px;
  color: var(--w1);
}

/* Promo code + CTA on same row — equal height */
.offer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

/* Promo code — кнопка с копированием */
.offer__promo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 16px;
  border: 1px solid var(--border-g);
  border-radius: 8px;
  background: var(--gold-dim);
  height: 100%;
  justify-content: center;
  width: 100%;
  text-align: left;
}
.offer__promo > span:first-child {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--w3);
}
.offer__promo-row {
  display: flex;
  align-items: center;
  gap: 2px;
}
.offer__promo-row .hero__copy-val {
  font-size: 22px;
}
.offer__promo-row .hero__copy-icon {
  color: var(--w3);
}
.offer__promo:hover .hero__copy-icon { color: var(--gold); }

.offer__tc {
  font-size: 11px;
  color: var(--w3);
  text-align: center;
}
.offer__tc a { text-decoration: underline; text-underline-offset: 2px; }

/* ═══════════════════════════════════════
   SEO TEXT
═══════════════════════════════════════ */
.seo {
  border-top: 1px solid var(--border);
  background: var(--s1);
}
.seo__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 80px 48px;
}
.seo__inner h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold-lt);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.seo__inner h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-lt);
  margin: 36px 0 10px;
}
.seo__inner p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--w2);
}
.seo__inner strong { color: var(--w1); font-weight: 600; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--s1);
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 48px 40px;
}

.footer__providers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding-bottom: 8px;
}
.footer__providers a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: clamp(90px, 11vw, 148px);
}
.footer__providers img {
  max-height: 100%;
  width: auto;
  opacity: .45;
  filter: grayscale(.5);
  transition: opacity .25s, filter .25s, transform .25s;
}
.footer__providers img:hover {
  opacity: .85;
  filter: grayscale(0);
  transform: translateY(-1px);
}

.footer__hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.footer__pay {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.footer__pay img { height: 24px; opacity: .45; }

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer__links a {
  font-size: 12px;
  color: var(--w3);
  transition: color .2s;
}
.footer__links a:hover { color: var(--w2); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.footer__trust img { height: 34px; object-fit: contain; opacity: .6; }
.footer__trust img[alt="18+"] { height: 28px; }

.footer__text {
  font-size: 11px;
  color: var(--w3);
  line-height: 1.8;
  max-width: 820px;
  text-align: center;
}
.footer__text a { text-decoration: underline; text-underline-offset: 2px; color: var(--w3); }
.footer__text a:hover { color: var(--w2); }
.footer__text strong { color: var(--w2); font-weight: 600; }

.footer__copy {
  font-size: 11px;
  color: var(--w3);
  letter-spacing: .07em;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* ── Tablet L ── */
@media (max-width: 1024px) {
  .hero__layout { padding: 0 32px; }
  .how__inner   { padding: 0 32px; }
  .offer__inner { margin: 0 32px; grid-template-columns: 170px 1fr; }
  .offer__card  { padding: 40px 36px; }
  .offer__game  { padding: 40px 20px; }
  .offer__game-img { width: 110px; }
  .seo__inner   { padding: 72px 32px; }
  .footer__inner { padding: 48px 32px 36px; }
}

/* ── Tablet ── */
@media (max-width: 840px) {
  /* Hero: single column, girl stays absolute on the right */
  .hero__layout {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 0 24px;
    position: relative;
  }
  .hero__left {
    padding: 88px 0 52px;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
    position: relative;
    z-index: 3;
    max-width: 58%;
    height: 100%;
  }
  /* 2 группы через auto-margin:
     [лейбл · заголовок · подзаголовок · разделитель · 30] ← авто → [кнопка + код] */
  .hero__left .hero__actions { margin-top: auto; }
  .hero__left .hero__title   { margin-top: 4px; }
  .hero__left .hero__reward  { margin-top: 10px; justify-content: flex-start; }

  /* Girl: absolute, right side, fills full height */
  .hero__right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    pointer-events: none;
  }
  .hero__halo { display: none; }
  .hero__girl {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    margin-bottom: 0;
    opacity: .9;
    filter: drop-shadow(-20px 0 60px rgba(0,0,0,.8));
  }

  /* Steps stack */
  .how__steps { grid-template-columns: 1fr; gap: 32px; }

  /* Offer stacks */
  .offer__inner {
    grid-template-columns: 1fr;
    margin: 0 24px;
  }
  .offer__game {
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 32px;
  }
  .offer__game-img  { width: 78px; flex-shrink: 0; }
  .offer__game-title, .offer__game-by { text-align: left; }
  .offer__card { padding: 32px; }
}

/* ── Mobile ── */
@media (max-width: 580px) {
  .nav__inner  { padding: 0 18px; }
  .nav__link   { display: none; }
  .nav__logo   { width: 88px; }

  /* Stronger overlay: left for text readability + bottom to ground the girl */
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg,
        rgba(7,7,8,.96) 0%,
        rgba(7,7,8,.82) 42%,
        rgba(7,7,8,.22) 65%,
        transparent    100%),
      linear-gradient(180deg,
        transparent 55%,
        rgba(7,7,8,.5) 78%,
        rgba(7,7,8,.95) 100%);
    pointer-events: none;
  }

  .hero__layout { padding: 0 20px; }
  .hero__left {
    max-width: 62%;
    padding: 320px 0 44px;
    gap: 6px;
  }
  /* Шрифты — нормальный читаемый размер */
  .t-serif   { font-size: clamp(32px, 9vw, 48px); }
  .t-bold    { font-size: clamp(40px, 11vw, 58px); }
  .hero__brand { font-size: 14px; }
  .reward__n { font-size: clamp(50px, 13vw, 68px); }
  .reward__text > span:first-child { font-size: 14px; }
  .reward__game { font-size: 12px; }
  .hero__stats li { padding: 0 8px; }
  .stat__v   { font-size: 15px; }
  .stat__k   { font-size: 10px; }
  .hero__code { padding: 10px 16px; }
  .hero__code-val { font-size: 20px; }
  .hero__legal { display: none; }
  .hero__right { width: 100%; }
  .hero__girl  { height: 100%; }
  .hero__scroll-line { display: none; }

  .how { padding: 64px 0; }
  .how__inner { padding: 0 18px; }
  .how__step h3 { font-size: 17px; }

  .offer { padding: 56px 0; }
  .offer__inner { margin: 0 16px; border-radius: 12px; }
  .offer__game  { padding: 20px 16px; }
  .offer__game-img { width: 80px; }
  .offer__card  { padding: 20px 18px; gap: 14px; }
  .offer__big-n { font-size: 40px; }
  .offer__big-label { font-size: 13px; }
  /* Rows become vertical on mobile */
  .offer__meta  { flex-direction: column; }
  .offer__meta-row {
    flex-direction: row;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .offer__meta-row:last-child { border-bottom: none; }
  .offer__meta-row span:first-child { font-size: 11px; }
  /* Bottom: stack code + button */
  .offer__bottom { grid-template-columns: 1fr; }
  .offer__promo  { flex-direction: row; align-items: center; justify-content: space-between; }
  .offer__promo strong { font-size: 18px; }
  .btn-primary--lg { padding: 15px 20px; font-size: 12px; }

  .seo__inner   { padding: 56px 18px; }
  .footer__inner { padding: 40px 18px 28px; }
  .footer__providers a { width: clamp(78px, 20vw, 116px); height: 22px; }
}

/* ── Small mobile ── */
@media (max-width: 380px) {
  .hero__left { max-width: 66%; padding: 250px 0 40px; gap: 5px; }
  .t-serif { font-size: 28px; }
  .t-bold  { font-size: 36px; }
  .reward__n { font-size: 42px; }
  .reward__text > span:first-child { font-size: 13px; }
  .reward__game { font-size: 11px; }
  .hero__code { padding: 8px 12px; }
  .hero__code-val { font-size: 16px; }
  .hero__right { width: 100%; }
  .offer__meta-row { padding: 12px 14px; }
  .offer__promo { flex-direction: column; gap: 4px; text-align: center; }
}
