@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Rubik:wght@400;500;700&display=swap');

:root {
  --bg-panel: #0b0b1e;
  --accent: #00e5ff;
  --yellow: #ffd400;
  --text: #e8e8ff;
  --text-dim: #9090b0;
  font-size: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 50% 0%, #10102a 0%, #050510 55%, #020208 100%);
  color: var(--text);
  font-family: 'Rubik', system-ui, sans-serif;
  min-height: 100%;
}

.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand {
  font-family: 'Press Start 2P', monospace;
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 0;
  color: var(--yellow);
  text-shadow: 0 0 16px rgba(255, 212, 0, 0.45);
}
.brand span { color: var(--accent); text-shadow: 0 0 16px rgba(0, 229, 255, 0.45); }

.tagline {
  color: var(--text-dim);
  font-size: 1rem;
  margin: 0;
}

.grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--bg-panel);
  border: 1px solid #1c1c3d;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #33335e;
  box-shadow: 0 18px 40px -18px rgba(0, 229, 255, 0.35);
}

.thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 240 / 150;
  display: block;
  background: #050510;
}
.thumb svg { width: 100%; height: 100%; display: block; }

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.6rem;
  padding: 4px 7px;
  border-radius: 6px;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.5);
  color: var(--accent);
  letter-spacing: 1px;
  z-index: 1;
}

.card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-body h2 {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.95rem;
  margin: 0 0 4px;
  color: var(--text);
}

.card-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-dim);
}

.play {
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent);
}

.footnote {
  color: var(--text-dim);
  font-size: 0.78rem;
  text-align: center;
  margin: 0;
}

@media (max-width: 420px) {
  .brand { font-size: 1.4rem; }
}
