:root {
  --primary: #8A2BE2;
  --bg: #2C2C2C;
  --bg-elev: #333333;
  --text: #E0E0E0;
  --muted: #9E9E9E;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--bg);
}

.stats-page-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.stats-main-content {
  width: 100%;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
}

.stats-hero {
  width: 100%;
  text-align: center;
  margin: 16px 0 24px;
}

.stats-hero .hero-title {
  color: var(--text);
  font-size: clamp(20px, 4vw, 28px);
  margin: 0 0 8px;
}

.stats-hero .subtitle {
  color: var(--muted);
  margin: 0;
}

.stats-card {
  width: min(960px, 96vw);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.stats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.stats-label {
  color: var(--muted);
  font-size: 14px;
}

.status-pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}
.status-pill.neutral { color: #cbd5e1; background: rgba(148,163,184,0.16); }
.status-pill.live { color: #d1fae5; background: rgba(34,197,94,0.18); border-color: rgba(34,197,94,0.35); }
.status-pill.off { color: #fee2e2; background: rgba(239,68,68,0.18); border-color: rgba(239,68,68,0.35); }

.stats-value {
  color: var(--text);
  font-size: clamp(56px, 10vw, 92px);
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  margin: 4px 0 8px;
}

.stats-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.retry-button {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: transform 0.1s ease, filter 0.2s ease;
}
.retry-button:hover { filter: brightness(1.05); }
.retry-button:active { transform: translateY(1px); }

.secondary-link {
  color: var(--text);
  opacity: 0.8;
  text-decoration: none;
}
.secondary-link:hover { opacity: 1; text-decoration: underline; }

.recaptcha-section { margin-top: 18px; display: flex; justify-content: center; }
.recaptcha-card {
  width: min(960px, 96vw);
  background: var(--bg-elev);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.recaptcha-hint { color: var(--muted); margin: 0 0 12px; font-size: 14px; }

@media (max-width: 480px) {
  .stats-footer { flex-direction: column; gap: 12px; }
} 