/* ==========================================================================
   NX Arcade — mobile-first styles
   ========================================================================== */

:root {
  --bg: #0f1220;
  --bg-2: #151a2e;
  --card: #1c2240;
  --card-edge: #2a3157;
  --text: #f2f4ff;
  --muted: #9aa3c7;
  --accent: #ffb52e;        /* gold — reserved for personal-achievement cues */
  --accent-dark: #d68f0a;
  --accent-2: #22d3ee;      /* NX cyan — secondary actions / info (unified) */
  --nx-violet: #8b5cff;
  --nx-cyan: #22d3ee;
  --danger: #ff5d73;
  --good: #5dd39e;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html, body {
  height: 100%;
  overscroll-behavior: none;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
  touch-action: manipulation;
}

/* ---------- Screens ---------- */

.screen {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(76, 201, 240, 0.10), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(255, 181, 46, 0.07), transparent 60%),
    var(--bg);
  padding-bottom: calc(24px + var(--safe-bottom));
}

/* Bottom space is reserved only while the sticky ad bar is actually shown;
   when the slot is disabled the layout collapses — no blank gap. */
body.has-sticky-ad .screen {
  padding-bottom: calc(84px + var(--safe-bottom));
}

.screen[hidden] { display: none; }

.screen-game {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 0;
  touch-action: none;
}

/* While playing, kill page scroll entirely */
body.is-playing { overflow: hidden; position: fixed; width: 100%; }

/* ---------- Home ---------- */

.site-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: calc(20px + var(--safe-top)) 20px 16px;
  background: linear-gradient(180deg, #1c1547, #14112e);
  border-bottom: 1px solid rgba(139, 92, 255, 0.16);
  box-shadow: 0 2px 10px rgba(20, 12, 46, 0.3);
}

.logo-mark {
  line-height: 0;
  filter: drop-shadow(0 2px 8px rgba(139, 92, 255, 0.3));
}

.logo-text h1 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, var(--nx-violet), var(--nx-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nx-cyan);
  margin-bottom: 2px;
}

.logo-slogan {
  font-size: 13px;
  color: #c3c9e6;
  margin-top: 3px;
}

.game-cards {
  display: grid;
  gap: 16px;
  padding: 8px 16px 16px;
  max-width: 560px;
  margin: 0 auto;
}

.game-card {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 64px 1fr;
  /* Info row absorbs any extra height so the action row stays pinned to the
     bottom. Without this, equal-height cards (2-col desktop grid) stretch the
     shorter card's actions row and its Play button grows taller than the rest. */
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "icon info"
    "actions actions";
  gap: 6px 14px;
}

/* Buttons keep their natural height inside the action row — never stretch. */
.game-card-actions .btn { align-self: center; }

.game-card-icon {
  grid-area: icon;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-edge);
}

.game-card-info { grid-area: info; min-width: 0; }

.game-card-info h2 { font-size: 19px; font-weight: 700; }

.game-card-info p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.35;
}

.game-card-best {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255, 181, 46, 0.12);
  border-radius: 999px;
  padding: 4px 10px;
}

.game-card-actions {
  grid-area: actions;
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.game-card-actions .btn-play { flex: 1; }

.site-footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 8px 24px 24px;
}

.footer-links {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.footer-links a {
  color: var(--nx-cyan);
  text-decoration: none;
  font-weight: 600;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:active { opacity: 0.7; }

.footer-copy { margin-top: 6px; color: var(--muted); }

/* ---------- Static pages (privacy / contact) ---------- */

.page {
  min-height: 100vh;
  padding-bottom: calc(30px + var(--safe-bottom));
}

.page-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: calc(16px + var(--safe-top)) 20px 16px;
  background: linear-gradient(180deg, #1c1547, #14112e);
  border-bottom: 1px solid rgba(139, 92, 255, 0.16);
}

.page-header .logo-mark {
  line-height: 0;
  filter: drop-shadow(0 2px 8px rgba(139, 92, 255, 0.3));
}

.page-header .brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-decoration: none;
  background: linear-gradient(90deg, var(--nx-violet), var(--nx-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 20px;
}

.legal h1 { font-size: 26px; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 13px; margin-bottom: 22px; }
.legal h2 { font-size: 18px; margin: 26px 0 8px; color: var(--nx-cyan); }
.legal p, .legal li { color: #cfd5ee; font-size: 15px; line-height: 1.65; }
.legal ul { margin: 8px 0 8px 20px; }
.legal li { margin-bottom: 6px; }
/* Inline text links are violet — but NOT button links, which must keep their
   own high-contrast button text colour. */
.legal a:not(.btn) { color: var(--nx-violet); font-weight: 600; }
.legal strong { color: var(--text); }

.legal .contact-card {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 18px 0;
}

.legal .contact-card a { font-size: 17px; }

.legal-actions { margin-top: 28px; }

.legal-footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 16px 20px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.08s ease, filter 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
}

.btn:active { transform: scale(0.96); }

/* Primary action = the NX brand violet (matches the logo wordmark).
   Flat fill — no drop-glow — so every button reads as the same shape. */
.btn-primary {
  background: linear-gradient(180deg, #8b5cff, #6a3ff0);
  color: #ffffff;
}

/* Secondary action = NX cyan. */
.btn-secondary {
  background: linear-gradient(180deg, #34d3ee, #18b6d6);
  color: #04222b;
}

/* Ghost = neutral, with a subtle violet tint so it still feels on-brand. */
.btn-ghost {
  background: rgba(139, 92, 255, 0.08);
  border: 1px solid rgba(139, 92, 255, 0.32);
  color: var(--text);
}

/* ---------- Game screen chrome ---------- */

.game-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: calc(8px + var(--safe-top)) 10px 8px;
  background: rgba(15, 18, 32, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--card-edge);
  z-index: 10;
  flex: none;
}

.topbar-btn {
  min-height: 42px;
  min-width: 42px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--card-edge);
}

.topbar-btn:active { transform: scale(0.95); }

.game-topbar-title {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-spacer { min-width: 42px; }

.game-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  touch-action: none;
  padding-bottom: var(--safe-bottom);
}

/* ---------- Ad placeholders ---------- */

.ad-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(154, 163, 199, 0.4);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.ad-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-slot-banner {
  min-height: 60px;
  margin: 4px 16px 12px;
  max-width: 528px;
}

@media (min-width: 560px) {
  .ad-slot-banner { margin-left: auto; margin-right: auto; }
}

.ad-slot-rect {
  min-height: 120px;
  margin: 16px 0 0;
}

.ad-slot-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: calc(54px + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  background: rgba(15, 18, 32, 0.95);
  backdrop-filter: blur(8px);
  z-index: 50;
}

.ad-slot[hidden], .ad-slot-sticky[hidden] { display: none; }

/* A slot with real content (AdSense / sponsor HTML / image) drops the
   dashed placeholder look. */
.ad-slot.ad-live {
  border: none;
  background: transparent;
  display: block;
  min-height: 0;
  overflow: hidden;
}

.ad-slot.ad-live img { max-width: 100%; }

/* ---------- Status/preview chips (admin & testing views) ---------- */

.preview-chip {
  display: inline-block;
  vertical-align: middle;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(76, 201, 240, 0.15);
  border: 1px solid rgba(76, 201, 240, 0.4);
  border-radius: 999px;
  padding: 3px 8px;
  margin-left: 6px;
}

.home-empty {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  padding: 60px 20px;
}

.game-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
}

.game-error {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px;
  text-align: center;
}

.game-error-icon { font-size: 40px; }

.game-error p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 320px;
}

.game-error code {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--danger);
  word-break: break-word;
}

/* ---------- Leaderboard ---------- */

.lb-body {
  max-width: 560px;
  margin: 0 auto;
  padding: 16px;
}

.lb-game-select {
  display: block;
  margin-bottom: 14px;
}

.lb-game-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.lb-game-select select {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-edge);
}

.lb-period-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-edge);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 14px;
}

.lb-tab {
  flex: 1;
  min-height: 40px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.lb-tab.is-active {
  background: var(--nx-violet);
  color: #ffffff;
}

.lb-mybest {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255, 181, 46, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 12px;
}

.lb-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.lb-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.lb-row.is-me {
  border-color: var(--accent);
  background: rgba(255, 181, 46, 0.08);
}

.lb-rank {
  width: 34px;
  font-weight: 800;
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  flex: none;
}

.lb-row:nth-child(1) .lb-rank { color: #ffd700; }
.lb-row:nth-child(2) .lb-rank { color: #c0c8d8; }
.lb-row:nth-child(3) .lb-rank { color: #cd7f32; }

.lb-name {
  flex: 1;
  font-weight: 600;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lb-score {
  font-weight: 800;
  font-size: 16px;
  color: var(--accent-2);
}

.lb-date {
  font-size: 11px;
  color: var(--muted);
  flex: none;
  width: 62px;
  text-align: right;
}

.lb-empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
  font-size: 15px;
  line-height: 1.5;
}

.lb-empty-icon { font-size: 44px; margin-bottom: 10px; opacity: 0.5; }

.lb-loading {
  text-align: center;
  color: var(--muted);
  padding: 30px;
  font-size: 14px;
}

/* ---------- Game Over modal ---------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 20, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 100;
  animation: fade-in 0.25s ease;
}

.modal-backdrop[hidden] { display: none; }

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  width: 100%;
  max-width: 380px;
  max-height: calc(100dvh - 32px - var(--safe-bottom));
  overflow-y: auto;
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--card-edge);
  border-radius: 22px;
  padding: 24px 20px calc(20px + var(--safe-bottom) / 2);
  box-shadow: var(--shadow);
  text-align: center;
  animation: pop-in 0.3s cubic-bezier(0.2, 1.4, 0.4, 1);
}

@keyframes pop-in {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.go-newbest {
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
  font-size: 15px;
  animation: best-pulse 1.2s ease infinite;
}

@keyframes best-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

.go-scores {
  display: flex;
  gap: 10px;
  margin: 18px 0 6px;
}

.go-stat {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
}

.go-stat-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.go-stat-value {
  display: block;
  font-size: 25px;
  font-weight: 800;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.go-rank-note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.go-rank-note[hidden], .go-submit[hidden] { display: none; }

.go-submit { margin-top: 14px; text-align: left; }

.go-submit-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.go-submit-row { display: flex; gap: 8px; }

.go-submit-row input {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--card-edge);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 16px; /* prevents iOS zoom */
}

.go-submit-row input:focus {
  outline: 2px solid var(--accent-2);
  outline-offset: -1px;
}

.go-submit-status {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--good);
}

.go-submit-status.is-error { color: var(--danger); }

.go-actions { margin-top: 18px; display: grid; gap: 10px; }

.go-actions .btn-primary { width: 100%; }

.go-actions-row { display: flex; gap: 10px; }

.go-actions-row .btn { flex: 1; }

/* ==========================================================================
   Sky Hopper (tap-to-fly)
   ========================================================================== */

.st-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.st-canvas { display: block; width: 100%; height: 100%; }

.st-score {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  text-shadow:
    -3px -3px 0 #17324d, 3px -3px 0 #17324d,
    -3px 3px 0 #17324d, 3px 3px 0 #17324d,
    0 -3px 0 #17324d, 0 3px 0 #17324d,
    -3px 0 0 #17324d, 3px 0 0 #17324d,
    0 6px 0 rgba(23, 50, 77, 0.35);
  pointer-events: none;
  z-index: 3;
}

.st-score.pop { animation: score-pop 0.25s ease; }

@keyframes score-pop {
  50% { transform: scale(1.25); }
}

.st-ready {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  padding: 20px;
}

.st-ready-box {
  background: rgba(255, 249, 201, 0.94);
  border: 4px solid #17324d;
  border-radius: 20px;
  padding: 22px 24px;
  text-align: center;
  width: min(320px, 100%);
  color: #17324d;
  box-shadow: 0 14px 35px rgba(23, 50, 77, 0.28);
  animation: pop-in 0.3s cubic-bezier(0.2, 1.4, 0.4, 1);
}

.st-ready-box h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #17324d;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
}

.st-char-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.st-char-preview {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: rgba(184, 239, 246, 0.65);
  border: 3px solid #17324d;
}

.st-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  background: #fff7bf;
  border: 3px solid #17324d;
  color: #17324d;
  flex: none;
}

.st-arrow:active { transform: scale(0.9); background: #ffe98a; }

.st-char-name {
  margin-top: 10px;
  font-weight: 800;
  font-size: 15px;
  color: #17324d;
}

.st-start {
  width: 100%;
  margin-top: 16px;
  background: #f28c4b;
  border: 3px solid #17324d;
  color: #fff;
  box-shadow: 0 4px 0 #b95f27;
}

.st-start:active { transform: translateY(2px); box-shadow: 0 2px 0 #b95f27; }

.st-hint {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #5b6f85;
  animation: hint-blink 1.6s ease infinite;
}

@keyframes hint-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ==========================================================================
   Timber Drop (wood block puzzle)
   ========================================================================== */

.wd-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  background: linear-gradient(180deg, #241408, #1a0e05);
}

.wd-hud {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 6px 16px 4px;
  flex: none;
}

.wd-best {
  font-size: 13px;
  font-weight: 700;
  color: #c9a173;
}

.wd-score {
  font-size: 26px;
  font-weight: 800;
  color: #ffd9a0;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
}

/* Board is top-aligned so the vertical slack pools BELOW it, giving the
   thumb somewhere to rest and drag without covering play — the board size
   itself is unchanged. */
.wd-board {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  padding: 4px 6px 0;
}

.wd-canvas {
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.wd-bottom {
  flex: none;
  padding: 12px 12px calc(14px + var(--safe-bottom));
}

.wd-next {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}

.wd-hint {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 224, 178, 0.55);
  margin: 0;
}

.wd-next-box {
  width: 66px;
  height: 66px;
  border-radius: 12px;
  background: rgba(255, 224, 178, 0.07);
  border: 1px solid rgba(201, 161, 115, 0.35);
}

.wd-next-box canvas { display: block; width: 100%; height: 100%; }

/* ---------- Small phones / short screens ---------- */

@media (max-height: 620px) {
  .st-score { font-size: 34px; }
  .wd-next-box { width: 52px; height: 52px; }
  .wd-hint { display: none; }
  .wd-score { font-size: 22px; }
}

/* ---------- Desktop niceties ---------- */

@media (min-width: 768px) {
  .game-cards { grid-template-columns: 1fr 1fr; }
  .logo-text h1 { font-size: 32px; }
}
