/* ===== GAMES PAGE ===== */

/* Page hero */
.games-page-hero {
  padding: 160px 24px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.games-page-hero-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(93,95,239,0.14) 0%, transparent 70%);
  top: 40px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(60px);
}
.games-page-hero .section-label { display: block; margin-bottom: 14px; }
.games-page-title {
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin-bottom: 20px;
}
.games-page-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

/* Mini stats bar in hero */
.games-page-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(11,11,20,0.5);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
}
.gph-stat { padding: 0 28px; text-align: center; }
.gph-num {
  display: block;
  font-size: 1.7rem; font-weight: 700;
  font-family: 'DM Mono', monospace;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(93,95,239,0.3);
}
.gph-label {
  font-size: 0.7rem; font-weight: 600;
  font-family: 'DM Mono', monospace;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.gph-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* Games grid section */
.games-page-section { padding: 24px 24px 100px; }

/* Games page uses same 2-col grid as homepage */
.games-grid--full {
  gap: 20px;
}

/* Live status indicator */
.games-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted2);
  margin-bottom: 32px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 99px;
}
.games-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted2);
  flex-shrink: 0;
}
.games-status--live .games-status-dot { background: #4ade80; animation: live-pulse 1.8s ease-in-out infinite; }
.games-status--live { color: var(--muted); border-color: rgba(74,222,128,0.15); }
.games-status--cached .games-status-dot { background: #f59e0b; }

/* Nav active link */
.nav-active { color: #fff !important; }

/* CTA section at bottom */
.games-cta-section { padding: 0 24px 100px; }
.games-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 64px;
  background: linear-gradient(135deg, rgba(93,95,239,0.08) 0%, rgba(168,85,247,0.04) 100%);
  border: 1px solid rgba(93,95,239,0.2);
  border-radius: var(--radius-lg);
}
.games-cta-left p { font-size: 1rem; margin-top: 12px; max-width: 440px; }
.games-cta-card .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .games-page-hero { padding: 110px 20px 56px; }
  .games-page-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .gph-stat { padding: 12px; }
  .gph-divider { display: none; }
  .gph-num { font-size: 1.4rem; }
  .games-page-section { padding: 16px 20px 72px; }
  .games-grid--full { grid-template-columns: 1fr; }
  .games-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
    gap: 28px;
  }
  .games-cta-card .btn-primary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .games-page-title { font-size: 2.2rem; }
}
