/* ============================================================
   LottoIQ — Hero Section
   Full-width hero with game title, metadata, and stat strip.
   ============================================================ */

.hero {
  background: linear-gradient(180deg, #060810 0%, #0A0E1A 60%, var(--navy) 100%);
  border-bottom: 1px solid var(--gold-bd);
  padding: 48px 20px 36px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-title-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  flex: 1;
  min-width: 0;
}

/* "Updated: Jun 18, 2025" pill */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #13192B;
  border: 1px solid #2A3A60;
  border-radius: 6px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 8px;
  flex-shrink: 0;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 4px;
}

.hero-disclaimer {
  font-style: italic;
  color: var(--text-dim);
  font-size: 12px;
  margin-bottom: 32px;
}

/* ── Stat Strip ── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.stat-card {
  background: #0E1525;
  border: 1px solid #1C2845;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}

.stat-card-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}

.stat-card-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-card-value.ball-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

/* Small ball used in stat strip */
.ball-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.ball-gold {
  background: var(--gold);
  color: var(--navy);
}

.ball-outline {
  background: transparent;
  border: 2px solid var(--navy-5);
  color: var(--text-muted);
}
