/* ==========================================================================
   pages/home.css — index.html overrides
   ========================================================================== */

/* Telegram CTA sits directly under the primary button group */
.hero__tg {
  margin-top: var(--space-sm);
}

@media (max-width: 559px) {
  .hero__tg {
    width: 100%;
  }
}

/* The mockup should never force the page wider than the viewport. */
.hero__grid > .mockup {
  min-width: 0;
  max-width: 100%;
}

/* Slightly tighter stat strip under the hero */
.stats + .stats {
  margin-top: var(--space-sm);
}

/* Screenshot supporting notes */
.shots__notes .card {
  text-align: left;
}

.shots__notes .card__title {
  color: var(--color-gold-bright);
}

/* Jackpot section: keep the meter from stretching absurdly wide on desktop */
@media (min-width: 1000px) {
  #bonus .jackpot {
    max-width: 560px;
    margin-left: auto;
  }
}

/* OG banner band gets a little extra presence */
.ogband {
  --shadow-card: 0 26px 70px rgba(0, 0, 0, 0.6);
}

@media (min-width: 900px) {
  .ogband__caption {
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: var(--space-lg);
  }

  .ogband__caption-title {
    grid-column: 1 / -1;
  }

  .ogband__pills {
    grid-column: 1;
  }

  .ogband__caption > .text-muted {
    grid-column: 1;
  }

  .ogband__caption > .btn-group {
    grid-column: 2;
    grid-row: 2 / 4;
    flex-direction: column;
    align-items: stretch;
  }
}

/* Payments table keeps rupee figures aligned */
#payments .table td:not(:first-child) {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Long-form column: cap the measure for comfortable reading */
.prose {
  max-width: 72ch;
}

/* Final CTA band breathes a little more */
.cta-band {
  padding-block: clamp(3.4rem, 7vw, 6rem);
}
