:root {
  --bg-deep: #08080a;
  --bg-surface: #111114;
  --bg-card: #16161a;
  --bg-elevated: #1e1e24;
  --border: #2a2a32;
  --border-hover: #6c5ce7;
  --accent: #6c5ce7;
  --accent-glow: rgba(108, 92, 231, 0.35);
  --accent-soft: #a29bfe;
  --text: #e8e6f0;
  --text-dim: #8b8a96;
  --text-muted: #5c5b66;
  --font-display: 'Chakra Petch', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 600px;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }

/* ─── Loading ─── */
.progress-container {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.progress-bar-outer {
  width: 100%;
  max-width: 320px;
  height: 4px;
  background: var(--bg-elevated);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 0%;
  box-shadow: 0 0 12px var(--accent-glow);
}
.progress-text {
  font-family: var(--font-display);
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── Content ─── */
.content {
  position: relative;
  z-index: 1;
  padding: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.stats {
  font-family: var(--font-display);
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-left: 4px;
}

.no-results {
  text-align: center;
  color: var(--text-muted);
  padding: 80px 20px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.load-sentinel {
  height: 1px;
  grid-column: 1 / -1;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.game-card, .vod-card {
  animation: fadeUp 0.4s ease both;
}

@media (max-width: 768px) {
  .content { padding: 20px 16px; }
}
