/* Gamby Pro marketing — game landing pages */
:root {
  --gold: #d4a843;
  --lgold: #f0c96a;
  --bg: #070b0f;
  --bg2: #0c1118;
  --card: #131d2a;
  --border: #1e2e40;
  --text: #f0f2f4;
  --muted: #7a8a9a;
  --accent: #a855f7;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 11, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.site-nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; }
.site-nav-logo span { color: var(--gold); }
.site-nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.site-nav-links { display: flex; gap: 18px; font-size: 14px; color: var(--muted); }
.site-nav-links a:hover { color: var(--gold); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--lgold));
  color: #0a0d12; font-weight: 700; font-size: 14px;
  padding: 10px 18px; border-radius: 10px; border: none; cursor: pointer;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  border: 1px solid var(--border); font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: 10px;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.game-hero { padding: 56px 0 40px; text-align: center; }
.game-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 99px; margin-bottom: 16px;
}
.game-hero-badge.live {
  background: rgba(26, 122, 60, 0.2); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.35);
}
.game-hero-badge.soon {
  background: rgba(124, 58, 237, 0.15); color: #c4b5fd; border: 1px solid rgba(168, 85, 247, 0.35);
}
.game-hero-icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--gold);
  background: rgba(212, 168, 67, 0.1); border: 1px solid rgba(212, 168, 67, 0.25);
}
.game-hero h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 900; margin-bottom: 10px; }
.game-hero-tagline { font-size: 18px; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.game-hero-sub { color: var(--muted); max-width: 640px; margin: 0 auto 28px; font-size: 16px; }
.game-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.game-card-block {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; margin-bottom: 20px;
}
.game-card-block h2 { font-size: 16px; color: var(--gold); margin-bottom: 12px; font-weight: 700; }
.game-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.game-pill {
  font-size: 12px; padding: 6px 12px; border-radius: 99px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--muted);
}
.game-pill.gold { border-color: rgba(212,168,67,0.35); color: var(--gold); }
.game-features { list-style: none; }
.game-features li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid rgba(30, 46, 64, 0.6); font-size: 14px; color: var(--muted);
}
.game-features li:last-child { border-bottom: none; }
.game-features i { color: var(--gold); margin-top: 3px; width: 16px; }

.breadcrumb {
  font-size: 13px; color: var(--muted); padding: 16px 0 0;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text); }

.games-grid-page {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px;
  padding: 32px 0 64px;
}
.games-grid-page .game-tile {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 20px; transition: border-color 0.2s, transform 0.2s;
}
.games-grid-page .game-tile:hover { border-color: rgba(212,168,67,0.35); transform: translateY(-3px); }
.games-grid-page .game-tile h3 { font-size: 18px; margin: 10px 0 6px; }
.games-grid-page .game-tile p { font-size: 13px; color: var(--muted); line-height: 1.5; }

.site-footer {
  border-top: 1px solid var(--border); padding: 32px 0; margin-top: 40px;
  font-size: 13px; color: var(--muted);
}
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--gold); }
.site-footer-links { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px; }

@media (max-width: 640px) {
  .site-nav-links { display: none; }
}

/* ── 404 page ── */
.page-404 { min-height: 100vh; display: flex; flex-direction: column; }
.error-page {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 72px;
  text-align: center;
}
.error-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 20%, rgba(212, 168, 67, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(168, 85, 247, 0.08), transparent 60%);
}
.error-card {
  position: relative;
  max-width: 520px;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
.error-code {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--lgold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.error-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.25);
}
.error-card h1 {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  margin-bottom: 12px;
}
.error-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.error-path {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
  word-break: break-all;
}
.error-path code {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: #94a3b8;
  font-size: 11px;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.error-suggestions {
  position: relative;
  margin-top: 40px;
  max-width: 640px;
  width: 100%;
}
.error-suggestions h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 700;
}
.error-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.error-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 14px 12px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.error-links a i { color: var(--gold); font-size: 14px; }
.error-links a:hover {
  border-color: rgba(212, 168, 67, 0.35);
  color: var(--text);
  transform: translateY(-2px);
}

