/* Base styles for Boombot Games site */
:root {
  --bg: #0b0e12;
  --panel: #12161d;
  --panel-2: #1a2030;
  --text: #e6ebf3;
  --muted: #a9b3c1;
  --accent: #6cf1ff;
  --accent-2: #ff68d7;
  --ok: #5cf26c;
  --warn: #ffd166;
  --glow-1: rgba(108, 241, 255, 0.12);
  --glow-2: rgba(255, 104, 215, 0.12);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 800px at 12% -10%, #18202c 0%, transparent 55%),
    radial-gradient(1000px 700px at 110% 10%, #1c1630 0%, transparent 60%),
    linear-gradient(180deg, #0b0e12 0%, #0a0c10 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

/* subtle animated glow orbs */
body::before, body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  inset: auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
body::before { background: var(--glow-1); left: -120px; top: 120px; }
body::after { background: var(--glow-2); right: -120px; bottom: 120px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px;
}

header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(11,14,18,0.6);
  border-bottom: 1px solid #1f2633;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand img { display: block; }
.brand .logo-icon { height: 36px; width: 36px; border-radius: 8px; }
.brand .logo-text { height: 26px; width: auto; border-radius: 0; filter: drop-shadow(0 1px 0 rgba(0,0,0,.3)); }
.brand span { display:none; }

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover { color: var(--text); }

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: 36px 0 12px;
}

.hero-card {
  background: linear-gradient(180deg, var(--panel) 0%, rgba(18,22,29,0.6) 100%);
  border: 1px solid #212a39;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.02);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 14px;
}

.game {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid #212a39;
  border-radius: 12px;
  overflow: hidden;
}

.game-thumb { aspect-ratio: 16/9; object-fit: cover; width: 100%; display: block; border-bottom: 1px solid #212a39; }
.game-body { padding: 14px 14px 16px; }
.game h3 { margin: 0 0 4px; font-size: 18px; }
.game p { margin: 0 0 10px; color: var(--muted); font-size: 14px; }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.badge {
  font-size: 12px;
  color: #0a1118;
  background: linear-gradient(180deg, var(--accent) 0%, #31cfe0 100%);
  border: 0;
  padding: 4px 8px;
  border-radius: 999px;
}
.badge-subtle { background: #222a38; color: var(--muted); }

.actions { display: flex; gap: 10px; margin-top: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #263246;
  background: linear-gradient(180deg, #1a2130 0%, #141b26 100%);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: transform .06s ease, box-shadow .18s ease, filter .12s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
}
.btn:hover { border-color: #33445f; filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.45), 0 0 0 6px rgba(51, 68, 95, .12), inset 0 1px 0 rgba(255,255,255,.05); }
.btn:active { transform: translateY(0); filter: brightness(1.0); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(108,241,255,.6), 0 10px 24px rgba(0,0,0,.45); }
.btn.primary {
  background: linear-gradient(180deg, var(--accent-2) 0%, #c43bbb 100%);
  color: #0a0a0a;
  border-color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,.2);
}
.btn.success {
  background: linear-gradient(180deg, var(--ok) 0%, #1fd657 100%);
  color: #06110a;
  border-color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,.2);
}
.btn.ghost { background: transparent; border-color: #273347; }
.btn.ghost:hover { background: #1a2130; }

footer {
  margin-top: 48px;
  padding: 28px 0 48px;
  color: var(--muted);
  border-top: 1px solid #1f2633;
}

/* Presskit */
.press-hero {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  padding: 20px 0 8px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.fact {
  background: var(--panel);
  border: 1px solid #212a39;
  border-radius: 12px;
  padding: 14px;
}
.fact h4 { margin: 0 0 6px; font-size: 14px; color: var(--muted); font-weight: 600; }
.fact p { margin: 0; font-size: 16px; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.media-grid img, .media-grid video { width: 100%; border-radius: 12px; border: 1px solid #212a39; background: #0a0f16; }

@media (max-width: 1024px) {
  .container { padding: 22px 16px; }
  .hero { grid-template-columns: 1fr; gap: 20px; padding: 24px 0 8px; }
  .brand .logo-icon { height: 32px; width: 32px; }
  .brand .logo-text { height: 22px; }
}


