:root {
  --bg: #0f172a;
  --surface: #1e293b;
  --surface-2: #111827;
  --text: #f8fafc;
  --muted: #94a3b8;
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --border: rgba(255,255,255,.1);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(99,102,241,.28), transparent 35%),
    linear-gradient(135deg, #0f172a, #020617);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.portal {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 32px 18px;
}
.hero {
  text-align: center;
  padding: 35px 10px 28px;
}
.brand {
  font-size: clamp(3rem, 8vw, 5rem);
  filter: drop-shadow(0 0 20px rgba(99,102,241,.55));
}
.hero h1 {
  font-size: clamp(2rem, 7vw, 4rem);
  letter-spacing: -1.5px;
  margin-top: 10px;
}
.hero p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: clamp(.98rem, 2vw, 1.1rem);
  line-height: 1.5;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.game-card {
  min-height: 230px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,.55);
  background: linear-gradient(180deg, rgba(99,102,241,.18), rgba(255,255,255,.04));
}
.game-card.disabled {
  opacity: .55;
  cursor: not-allowed;
}
.game-card.disabled:hover {
  transform: none;
  border-color: var(--border);
}
.game-icon { font-size: 3rem; }
.game-card h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.game-card p {
  color: var(--muted);
  line-height: 1.45;
}
.play-chip,
.soon-chip {
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .85rem;
}
.play-chip {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.soon-chip {
  background: rgba(255,255,255,.08);
  color: var(--muted);
}
@media (max-width: 850px) {
  .games-grid { grid-template-columns: 1fr; }
  .game-card { min-height: 190px; }
}
