/* ---------- TyneServers brand palette (storefront + auth pages only) ----------
   Overrides the shared amber/cyan/font tokens from style.css with the
   "tyne-v2" brand system, scoped to body.store-body / body.login-body so the
   admin control deck (which has neither class) keeps its original amber
   cyberpunk look untouched. */
body.store-body, body.login-body {
  --amber: #2f6bff;
  --amber-dim: #1c4fd6;
  --cyan: #3fd0ff;
  --bg-base: #070b14;
  --bg-panel: #0d1424;
  --bg-panel-raised: #0f1729;
  --border: #1c2740;
  --border-bright: #2a3a5c;
  --text-primary: #eef2fb;
  --text-dim: #93a0bd;
  --text-dimmer: #5c6889;
  --green: #33e07a;
  --red: #ff5c72;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'Inter', sans-serif;
}

/* tyne-v2 pages don't use the CRT scanline texture */
body.store-body .scanlines, body.login-body .scanlines { display: none; }

/* ---------- Shared shape overrides (buttons/cards/inputs) so components
   defined in style.css pick up the rounder, gradient-panel tyne-v2 look
   without touching style.css itself (which the amber control deck still
   uses as-is). ---------- */
body.store-body .btn, body.login-body .btn {
  border-radius: 8px;
  font-size: 14px;
  padding: 13px 22px;
  border-color: transparent;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
body.store-body .btn:hover, body.login-body .btn:hover { border-color: #2a3a5c; background: rgba(255,255,255,.05); }
body.store-body .btn-primary, body.login-body .btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-dim));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(47,107,255,.6);
}
body.store-body .btn-primary:hover, body.login-body .btn-primary:hover {
  background: linear-gradient(135deg, var(--amber), var(--amber-dim));
  box-shadow: 0 10px 28px -6px rgba(47,107,255,.75);
}
body.store-body .btn-ghost, body.login-body .btn-ghost { background: rgba(255,255,255,.02); color: var(--text-primary); }
body.store-body .btn:focus-visible, body.login-body .btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
body.store-body .btn-sm, body.login-body .btn-sm { padding: 8px 14px; font-size: 12.5px; border-radius: 7px; }

body.login-body { background: radial-gradient(ellipse 900px 500px at 50% 0%, rgba(47,107,255,.14), transparent 60%), linear-gradient(180deg, #070b16 0%, #05070d 100%); }
body.store-body .login-card, body.login-body .login-card {
  background: linear-gradient(180deg, var(--bg-panel), #0a0f1c);
  border: 1px solid var(--border);
  border-radius: 16px;
}

body.store-body .field-input, body.login-body .field-input {
  background: var(--bg-panel-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
}
body.store-body .field-input:focus, body.login-body .field-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(47,107,255,.15);
}
body.store-body .field-label, body.login-body .field-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .05em;
}

/* ---------- Storefront shell (marketing site, games catalog, checkout) ---------- */

body.store-body {
  background: var(--bg-base);
  min-height: 100%;
}

.store-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(11,13,16,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.store-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.3px;
}
.store-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.store-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.store-nav a:hover { color: var(--text-primary); }
.store-nav-actions { display: flex; gap: 10px; align-items: center; }
.store-nav-logo { height: 30px; width: auto; display: block; }

.store-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 40px 60px;
  background:
    linear-gradient(180deg, rgba(6,10,18,0.75) 0%, rgba(6,10,18,0.94) 65%, var(--bg-base) 100%),
    radial-gradient(circle at 50% 0%, #0f1c33 0%, var(--bg-base) 60%),
    url('/images/hero-serverroom.jpg') center 30% / cover no-repeat;
  border-bottom: 1px solid var(--border);
}
.hero-columns {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { text-align: left; }
.hero-art { text-align: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--amber);
  border: 1px solid var(--amber-dim);
  background: rgba(6,10,18,0.6);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 22px;
}
.hero-logo { height: 180px; width: auto; margin: 0 auto 18px; display: block; filter: drop-shadow(0 8px 40px rgba(30,143,255,0.25)); }
.hero-art-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-dim);
  border: 1px solid var(--border-bright);
  background: rgba(13,19,31,0.8);
  border-radius: 20px;
  padding: 8px 16px;
}
.hero-art-badge b { color: var(--amber); font-weight: 600; }
.hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.hero p.hero-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 0 30px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 8px; }
.hero-quickstats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-dim);
}
.hero-quickstats span { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Supported-games bar (single-row strip under hero) ---------- */
.games-bar-wrap { border-bottom: 1px solid var(--border); background: var(--bg-panel); }
.games-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.games-bar .game-icon-item {
  flex-direction: row;
  gap: 10px;
}
.games-bar .game-icon-circle { width: 34px; height: 34px; border-radius: 8px; }
.games-bar .game-icon-circle svg { width: 18px; height: 18px; }
.games-bar .game-icon-label { font-size: 11.5px; }

/* ---------- Trust / stats strip ---------- */
.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--bg-panel);
  padding: 22px 40px;
}
.trust-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.trust-strip-inner span { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Supported games icon strip ---------- */
.game-icon-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.game-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  text-decoration: none;
}
.game-icon-item:hover { color: var(--text-primary); }
.game-icon-circle {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bg-panel-raised);
  border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--amber);
  overflow: hidden;
}
.game-icon-circle svg { width: 26px; height: 26px; }
.game-icon-circle img { width: 100%; height: 100%; object-fit: cover; }
.game-icon-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Full-width visual banner sections ---------- */
.visual-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.visual-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,10,18,0.96) 0%, rgba(6,10,18,0.75) 45%, rgba(6,10,18,0.35) 100%);
}
.visual-banner-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.visual-banner-content h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  margin: 0 0 12px;
  max-width: 460px;
}
.visual-banner-content p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 0 24px;
}
.visual-banner-reverse::before {
  background: linear-gradient(270deg, rgba(6,10,18,0.96) 0%, rgba(6,10,18,0.75) 45%, rgba(6,10,18,0.35) 100%);
}
.visual-banner-reverse .visual-banner-content { margin-left: auto; text-align: right; }
.visual-banner-reverse .visual-banner-content p { margin-left: auto; }

.stats-bar-wrap { padding: 0 40px 70px; }
.stats-bar {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  background: var(--bg-panel);
  padding: 32px 20px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 0;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-icon { font-size: 20px; color: var(--amber); margin-bottom: 8px; }
.hero-stat-value {
  font-family: var(--font-mono);
  font-size: 30px;
  color: var(--amber);
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ---------- Section headers ---------- */
.section { padding: 70px 40px; }
.section-alt { background: var(--bg-panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  margin: 0 0 10px;
}
.section-head p { color: var(--text-dim); font-size: 15px; line-height: 1.6; margin: 0; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.feature-card {
  background: linear-gradient(180deg, var(--bg-panel), #0a0f1c);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
}
.feature-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(47,107,255,0.12);
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 16px;
  margin-bottom: 16px;
}
.feature-card h3 { font-family: var(--font-display); font-size: 19px; margin: 0 0 8px; font-weight: 600; }

/* ---------- Long-form content pages (legal, about, status) ---------- */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 70px 40px 90px; }
.legal-wrap .page-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 10px;
}
.legal-wrap h1 { font-family: var(--font-display); font-size: 34px; margin: 0 0 8px; }
.legal-wrap .page-updated { color: var(--text-faint); font-size: 13px; margin-bottom: 40px; }
.legal-wrap h2 { font-family: var(--font-display); font-size: 21px; margin: 38px 0 12px; }
.legal-wrap h3 { font-family: var(--font-display); font-size: 16px; margin: 24px 0 8px; color: var(--text); }
.legal-wrap p { color: var(--text-dim); font-size: 14.5px; line-height: 1.75; margin: 0 0 14px; }
.legal-wrap ul, .legal-wrap ol { color: var(--text-dim); font-size: 14.5px; line-height: 1.75; margin: 0 0 14px; padding-left: 22px; }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap a { color: var(--blue-light); }
.legal-wrap strong { color: var(--text); }
.legal-wrap .legal-note {
  background: var(--panel); border: 1px solid var(--border); border-left: 3px solid var(--blue);
  border-radius: 6px; padding: 14px 18px; font-size: 13.5px; color: var(--text-dim); margin: 24px 0;
}
.status-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 20px; border: 1px solid var(--border); border-radius: 10px; background: var(--panel); margin-bottom: 10px;
}
.status-row .name { font-family: var(--font-display); font-size: 16px; }
.status-row .badge {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 12px;
  color: #33e07a; text-transform: uppercase; letter-spacing: .5px;
}
.status-row .badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #33e07a; box-shadow: 0 0 8px #33e07a; }
.status-banner {
  display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-radius: 10px;
  background: rgba(51, 224, 122, 0.1); border: 1px solid rgba(51, 224, 122, 0.35); margin-bottom: 30px;
  font-family: var(--font-display); font-size: 17px;
}
.status-banner::before { content: ''; width: 12px; height: 12px; border-radius: 50%; background: #33e07a; box-shadow: 0 0 10px #33e07a; flex-shrink: 0; }
.feature-card p { color: var(--text-dim); font-size: 13.5px; line-height: 1.6; margin: 0; }

/* ---------- Game tiles (homepage teaser + catalog page) ---------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.game-contact-tile {
  grid-column: span 2;
  background: var(--bg-panel);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.game-contact-tile h3 { font-family: var(--font-display); font-size: 17px; margin: 0 0 6px; font-weight: 600; }
.game-contact-tile p { color: var(--text-dim); font-size: 13px; margin: 0; max-width: 260px; line-height: 1.5; }
.game-tile {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.15s ease, transform 0.1s ease;
}
.game-tile:hover { border-color: var(--amber); transform: translateY(-3px); }

/* Cover-art banner on top of each homepage game tile (pulled from Steam's
   CDN where available - see gameImageSources() in store.js). Portrait
   aspect ratio matches Steam's own library capsule art. */
.game-tile-banner {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--bg-panel-raised);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.game-tile-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-tile-banner svg { width: 46px; height: 46px; color: var(--amber); }

.game-tile-body { padding: 16px 18px 20px; }
.game-tile-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.game-tile-from { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); }
.game-tile-from b { color: var(--amber); font-size: 15px; }

/* Small square thumbnail used inline next to each game's heading on the
   games.html catalog page (not the big homepage tile banner above). */
.game-tile-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--bg-panel-raised);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  overflow: hidden;
  margin-bottom: 12px;
}
.game-tile-icon svg { width: 26px; height: 26px; }
.game-tile-icon img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Pricing cards (per-game tier picker on catalog + game detail) ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.tier-card {
  background: linear-gradient(180deg, var(--bg-panel), #0a0f1c);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.tier-card:hover { transform: translateY(-3px); border-color: var(--border-bright); }
.tier-card.tier-popular { border-color: var(--amber); position: relative; }
.tier-popular-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber), var(--amber-dim)); color: #fff; font-family: var(--font-body);
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
}
.tier-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.tier-price { font-family: var(--font-display); font-size: 34px; color: var(--amber); margin-bottom: 2px; }
.tier-price span { font-size: 13px; color: var(--text-dim); font-family: var(--font-body); }
.tier-specs { list-style: none; padding: 0; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 9px; }
.tier-specs li { font-size: 13px; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.tier-specs li::before { content: '✓'; color: var(--green); font-weight: 700; }
.tier-card .btn { margin-top: auto; }

/* ---------- Games catalog page ---------- */
.catalog-game-block { margin-bottom: 56px; }
.catalog-game-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.catalog-game-head h2 { font-family: var(--font-display); font-size: 26px; font-weight: 600; margin: 0; }
.catalog-game-head .tag { font-size: 11px; }
.catalog-filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px;
}
.filter-chip {
  font-family: var(--font-body); font-weight: 600; font-size: 12.5px; padding: 8px 16px; border-radius: 20px;
  border: 1px solid var(--border-bright); color: var(--text-dim); cursor: pointer; background: transparent;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.filter-chip.active { border-color: var(--amber); color: #fff; background: linear-gradient(135deg, var(--amber), var(--amber-dim)); }

/* ---------- Checkout ---------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
  padding: 48px 40px 90px;
  max-width: 1000px;
  margin: 0 auto;
}
.checkout-panel {
  background: linear-gradient(180deg, var(--bg-panel), #0a0f1c);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.checkout-panel h2 { font-family: var(--font-display); font-size: 22px; margin: 0 0 4px; font-weight: 600; }
.checkout-panel .sub { color: var(--text-dim); font-size: 13px; margin: 0 0 20px; }
.summary-card {
  background: linear-gradient(180deg, var(--bg-panel), #0a0f1c);
  border: 1px solid var(--border-bright);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 90px;
}
.summary-card h3 { font-family: var(--font-display); font-size: 18px; margin: 0 0 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--text-dim); }
.summary-row b { color: var(--text-primary); font-weight: 500; }
.summary-total { display: flex; justify-content: space-between; padding-top: 16px; font-family: var(--font-display); font-size: 22px; color: var(--amber); }

.method-toggle { display: flex; gap: 10px; margin: 8px 0 22px; }
.method-option {
  flex: 1; border: 1px solid var(--border-bright); border-radius: 10px; padding: 14px;
  cursor: pointer; text-align: center; font-size: 13px; font-weight: 600; color: var(--text-dim);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.method-option.selected { border-color: var(--amber); color: var(--amber); background: rgba(47,107,255,0.08); }

.pay-panel { border: 1px solid var(--border); border-radius: 12px; padding: 20px; margin-top: 18px; background: var(--bg-base); }
.btc-address-box {
  font-family: var(--font-mono); font-size: 13px; word-break: break-all;
  background: var(--bg-panel-raised); border: 1px solid var(--border-bright); border-radius: 8px;
  padding: 12px; margin: 10px 0; color: var(--cyan); cursor: pointer;
}
.pay-amount { font-family: var(--font-display); font-size: 26px; color: var(--amber); margin: 4px 0 14px; }

.result-card {
  max-width: 480px; margin: 90px auto; text-align: center; padding: 44px;
  background: linear-gradient(180deg, var(--bg-panel), #0a0f1c); border: 1px solid var(--border-bright); border-radius: 18px;
}
.result-icon { font-size: 44px; margin-bottom: 14px; }
.result-card h1 { font-family: var(--font-display); font-size: 28px; margin: 0 0 10px; }
.result-card p { color: var(--text-dim); font-size: 14px; line-height: 1.6; margin: 0 0 26px; }

/* ---------- Footer ---------- */
.store-footer {
  border-top: 1px solid var(--border-soft, var(--border));
  background: var(--bg-panel);
  padding: 40px;
  text-align: center;
  color: var(--text-dimmer);
  font-size: 12.5px;
}
.store-footer a { color: var(--text-dim); text-decoration: none; margin: 0 10px; }
.store-footer a:hover { color: var(--amber); }

@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 38px; }
  .hero-columns { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-ctas, .hero-quickstats { justify-content: center; }
  .hero p.hero-sub { margin-left: auto; margin-right: auto; }
  .hero-logo { height: 130px; }
  .games-bar { justify-content: center; }
  .game-contact-tile { grid-column: 1 / -1; }
  .visual-banner-content { text-align: left !important; margin-left: 0 !important; }
  .visual-banner-content p { margin-left: 0 !important; }
  .visual-banner::before, .visual-banner-reverse::before {
    background: linear-gradient(180deg, rgba(6,10,18,0.55) 0%, rgba(6,10,18,0.96) 70%);
  }
}
@media (max-width: 640px) {
  .store-topbar { padding: 14px 18px; }
  .store-nav { display: none; }
  .hero { padding: 60px 18px 50px; }
  .hero h1 { font-size: 32px; }
  .hero-logo { height: 90px; }
  .section { padding: 50px 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .store-wrap, .checkout-grid { padding: 0 18px; }
  .game-icon-strip { gap: 20px; }
  .games-bar { padding: 16px 18px; gap: 16px; }
  .stats-bar-wrap { padding: 0 18px 50px; }
  .hero-stats { gap: 28px; }
  .visual-banner { min-height: 260px; padding: 30px 0; }
  .trust-strip-inner { gap: 18px; }
}
