:root {
  --bg: #0e0f13;
  --card: #151823;
  --text: #e7eaf6;
  --muted: #a3acc7;
  --primary: #7c5cff;
  --primary-700: #6846ff;
  --secondary: #17c964;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: radial-gradient(1200px 800px at 10% -10%, #1a1f35, transparent), var(--bg); color: var(--text); font: 16px/1.6 Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(8px); background: rgba(14,15,19,.6); border-bottom: 1px solid rgba(255,255,255,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { font-weight: 800; letter-spacing: .5px; }
.nav a { color: var(--muted); text-decoration: none; margin-left: 18px; }
.nav a:hover { color: var(--text); }
.hero { padding: 64px 0 28px; text-align: center; }
.hero h1 { font-size: 40px; line-height: 1.15; margin: 0 0 12px; }
.hero p { color: var(--muted); margin: 0 0 18px; }
.hero-cta { display: inline-flex; gap: 12px; }
.button { display: inline-block; padding: 10px 16px; border-radius: 10px; text-decoration: none; color: #fff; border: 1px solid transparent; cursor: pointer; transition: transform .08s ease, background .2s ease, border-color .2s ease; }
.button:active { transform: translateY(1px); }
.button.primary { background: var(--primary); }
.button.primary:hover { background: var(--primary-700); }
.button.secondary { background: var(--secondary); color: #08150e; }
.button.ghost { background: transparent; border-color: rgba(255,255,255,.18); color: var(--text); }
.button.ghost:hover { border-color: rgba(255,255,255,.34); }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 28px 0; }
.feature { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
.feature h3 { margin: 0 0 8px; }
.highlight { text-align: center; padding: 36px 0 48px; }
.safety { padding: 18px 0 48px; }
.safety h2 { margin: 0 0 8px; }
.resources { display: inline-flex; gap: 12px; }
.resources a { color: var(--primary); text-decoration: none; }
.resources a:hover { text-decoration: underline; }
.site-footer { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; color: var(--muted); }
.footer-responsible { padding-bottom: 14px; margin-bottom: 12px; border-bottom: 1px dashed rgba(255,255,255,.08); }
.footer-responsible h2 { color: var(--text); margin: 0 0 8px; font-size: 18px; }
.footer-responsible p { margin: 0 0 8px; color: var(--muted); }
.age-gate { position: fixed; inset: 0; background: rgba(8,9,12,.8); display: flex; align-items: center; justify-content: center; padding: 20px; }
.age-card { width: min(460px, 96%); background: #0f1322; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 20px; box-shadow: var(--shadow); text-align: center; }
.age-actions { display: flex; gap: 10px; justify-content: center; margin-top: 12px; }
@media (max-width: 920px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } .hero h1 { font-size: 32px; } }

/* Game Console */
.game-console { background: var(--card); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); margin: 18px 0 22px; }
.gc-header { display: flex; align-items: center; justify-content: space-between; padding: 8px 8px 12px; border-bottom: 1px solid rgba(255,255,255,.12); }
.gc-title { font-weight: 700; }
.gc-status { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.gc-dot { width: 8px; height: 8px; background: var(--secondary); border-radius: 9999px; display: inline-block; box-shadow: 0 0 0 3px rgba(23,201,100,.15); }
.gc-viewport { aspect-ratio: 16/9; width: 100%; border-radius: 10px; overflow: hidden; background: #0b0f1c; border: 1px solid rgba(255,255,255,.06); }
.gc-viewport iframe { width: 100%; height: 100%; border: 0; display: block; }
.gc-controls { display: flex; gap: 10px; justify-content: flex-end; padding-top: 10px; }

/* Info Sections: Difference, Terms, Privacy, Disclaimer */
#difference, #terms, #privacy, #legal, .info-card { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); margin: 0; }
#difference h2, #terms h2, #privacy h2, #legal h2, .info-card h2 { margin: 0 0 10px; position: relative; }
#difference h2::after, #terms h2::after, #privacy h2::after, #legal h2::after, .info-card h2::after { content: ""; display: block; width: 64px; height: 3px; background: linear-gradient(90deg, var(--primary), transparent); border-radius: 2px; margin-top: 8px; }
#difference h3 { margin: 14px 0 6px; }
#difference p + h3 { margin-top: 16px; }
#terms p, #privacy p, #legal p { color: var(--muted); }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0; }
@media (max-width: 720px) { .info-grid { grid-template-columns: 1fr; } }


