/* ============================================================
   Homepage-specific styles
   ============================================================ */

/* ---- Hero extras ---- */
.home-hero .hero__title .highlight {
  position: relative;
  white-space: nowrap;
}
.home-hero .bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(212, 178, 106, 0.1);
  border: 1px solid rgba(212, 178, 106, 0.4);
  color: var(--color-gold-bright);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
}

/* ---- Marquee logos / providers strip ---- */
.provider-strip {
  border-block: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  padding-block: 1.25rem;
  overflow: hidden;
}
.provider-strip__track {
  display: flex;
  gap: 3rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.provider-strip__track span {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.1rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  opacity: 0.7;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .provider-strip__track { animation: none; flex-wrap: wrap; white-space: normal; justify-content: center; }
}

/* ---- Games section header w/ view all ---- */
.games-preview__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* ---- How it works ---- */
.steps {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  padding: 2rem 1.4rem 1.6rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-mid), transform var(--dur-mid);
}
.step:hover { border-color: var(--color-border-strong); transform: translateY(-4px); }
.step__num {
  counter-increment: step;
  position: absolute;
  top: -18px;
  left: 1.4rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 1.15rem;
  color: #04140D;
  background: var(--gradient-accent);
  border-radius: 12px;
  box-shadow: var(--shadow-glow);
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: var(--fs-h4); margin: 0.75rem 0 0.5rem; }
.step p { font-size: var(--fs-sm); color: var(--color-text-secondary); }
.step::after {
  content: "";
  position: absolute;
  top: 4px; right: -0.75rem;
  width: 1.5rem; height: 2px;
  background: var(--gradient-line);
  display: none;
}
@media (min-width: 1000px) {
  .step:not(:last-child)::after { display: block; }
}

/* ---- Bonus / promo banner ---- */
.promo-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-strong);
  background:
    radial-gradient(120% 160% at 85% 20%, rgba(0,199,118,0.2), transparent 55%),
    var(--gradient-surface);
  padding: clamp(1.75rem, 5vw, 3.25rem);
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) { .promo-banner { grid-template-columns: 1.4fr 1fr; } }
.promo-banner__badge { margin-bottom: 1rem; }
.promo-banner h2 { font-size: var(--fs-h2); margin-bottom: 0.85rem; }
.promo-banner h2 .amt { color: var(--color-gold-bright); }
.promo-banner p { color: var(--color-text-secondary); margin-bottom: 1.5rem; max-width: 46ch; }
.promo-banner__list { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.75rem; }
.promo-banner__list li { display: flex; align-items: center; gap: 0.6rem; font-size: var(--fs-sm); color: var(--color-text-secondary); }
.promo-banner__list svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; }
.promo-banner__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.promo-banner__visual img { width: 100%; height: 100%; object-fit: cover; }

/* ---- OG banner showcase ---- */
.og-showcase__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-card-lg), var(--shadow-glow);
}
.og-showcase__frame img { width: 100%; height: auto; display: block; }
.og-showcase__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(0, 199, 118, 0.12);
  pointer-events: none;
}
.og-showcase__cta { text-align: center; margin-top: 2rem; }

/* ---- Screenshots swiper ---- */
.shots {
  position: relative;
}
.shots__viewport {
  overflow: hidden;
  padding-block: 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.shots__track {
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  transition: transform var(--dur-slow) var(--ease-out);
  will-change: transform;
}
.shots__slide {
  flex: 0 0 auto;
  width: clamp(180px, 46vw, 240px);
}
.shot-frame {
  position: relative;
  border-radius: 26px;
  padding: 8px;
  background: linear-gradient(155deg, #232C28, #10160F 60%);
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid);
}
.shots__slide:hover .shot-frame { transform: translateY(-8px); box-shadow: var(--shadow-card-lg), var(--shadow-glow); }
.shot-frame__screen {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1280 / 2688;
  background: #0d150f;
}
.shot-frame__screen img { width: 100%; height: 100%; object-fit: cover; }
.shots__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.shots__btn {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-primary);
  background: var(--color-surface);
  transition: all var(--dur-fast) var(--ease-out);
}
.shots__btn:hover { background: rgba(0,199,118,0.12); box-shadow: var(--shadow-glow); }
.shots__btn svg { width: 22px; height: 22px; }
.shots__dots { display: flex; gap: 0.5rem; }
.shots__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--color-border-strong);
  transition: all var(--dur-fast);
}
.shots__dot[aria-current="true"] { background: var(--color-accent); width: 26px; border-radius: var(--radius-pill); }

/* ---- Trust / why choose split ---- */
.why-split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .why-split { grid-template-columns: 1fr 1fr; } }
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-list li { display: flex; gap: 0.85rem; }
.check-list__ico {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: rgba(0,199,118,0.14);
  border: 1px solid var(--color-border-strong);
  color: var(--color-accent-bright);
}
.check-list__ico svg { width: 17px; height: 17px; }
.check-list h3 { font-size: 1.02rem; margin-bottom: 0.25rem; }
.check-list p { font-size: var(--fs-sm); color: var(--color-text-secondary); }

/* ---- SEO content block ---- */
.seo-content { color: var(--color-text-secondary); }
.seo-content .grid-2 { align-items: start; }
.seo-content h2 { font-size: var(--fs-h3); color: var(--color-text-primary); margin-bottom: 0.75rem; }
.seo-content h3 { font-size: var(--fs-h4); color: var(--color-text-primary); margin: 1.5rem 0 0.5rem; }
.seo-content p { line-height: var(--lh-relaxed); font-size: var(--fs-sm); }
.seo-content p + p { margin-top: 0.9rem; }
.keyword-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.keyword-cloud span {
  font-size: var(--fs-xs);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-secondary);
}

/* ---- Final CTA band ---- */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(100% 140% at 50% 0%, rgba(0,199,118,0.18), transparent 55%),
    var(--color-surface);
  border: 1px solid var(--color-border-strong);
}
.cta-band h2 { font-size: var(--fs-h1); margin-bottom: 1rem; }
.cta-band p { color: var(--color-text-secondary); max-width: 52ch; margin: 0 auto 1.75rem; font-size: var(--fs-lead); }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
