:root {
  --bg-deep: #0a0714;
  --bg-panel: #150c28;
  --accent: #ff5d7a;
  --accent-2: #33e6ff;
  --gold: #ffd93d;
  --text-dim: #b6adcf;
}

body {
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(80, 30, 130, 0.45), transparent 60%),
    radial-gradient(900px 600px at 110% 10%, rgba(255, 93, 122, 0.18), transparent 55%),
    var(--bg-deep);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 1.05rem;
}
.site-header .brand .logo-badge {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--accent), #ff2e6c);
  display: grid; place-items: center;
  font-size: 15px;
  box-shadow: 0 0 16px rgba(255, 93, 122, 0.55);
}
.site-header nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 16px;
}
.site-header nav a:hover { color: #fff; }

.ad-slot {
  max-width: 1100px;
  margin: 0 auto 10px;
  min-height: 90px;
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.seo-content {
  max-width: 880px;
  margin: 48px auto 0;
  padding: 0 20px 40px;
  color: var(--text-dim);
  line-height: 1.7;
}
.seo-content h1 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.seo-content h2 {
  font-size: 1.25rem;
  color: #fff;
  margin: 28px 0 10px;
}
.seo-content p { margin: 0 0 12px; }
.seo-content ul { margin: 0 0 12px 0; padding-left: 0; }
.seo-content li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}
.seo-content li::before {
  content: '💥';
  position: absolute; left: 0; top: 0;
  font-size: 0.85em;
}
.seo-content details {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
}
.seo-content summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
}
.seo-content .related-games {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.seo-content .related-games a {
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.seo-content .related-games a:hover { background: rgba(255,255,255,0.12); }

.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

body.in-game .site-header,
body.in-game .ad-slot,
body.in-game .seo-content,
body.in-game .site-footer {
  display: none;
}

@media (min-width: 761px) {
  body.in-game .site-header,
  body.in-game .site-footer { display: flex; }
  body.in-game .ad-slot-inline { display: none; }
}
