:root { color-scheme: dark; font-family: system-ui, sans-serif; }
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at top, #334155, #020617 65%); color: #f8fafc; display: grid; place-items: center; }
.game-shell { width: min(920px, calc(100% - 32px)); }
.back-link { color: #93c5fd; text-decoration: none; }
.card { margin-top: 16px; padding: 28px; border: 1px solid #475569; border-radius: 24px; background: rgba(15, 23, 42, .86); box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.eyebrow { color: #facc15; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
h1 { font-size: clamp(2rem, 6vw, 4rem); margin: 0 0 12px; }
.meters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.meters div { background: #0f172a; border-radius: 16px; padding: 16px; border: 1px solid #334155; }
.meters span { display: block; color: #cbd5e1; font-size: .9rem; }
.meters strong { font-size: 2rem; }
.message { min-height: 3em; line-height: 1.7; }
.choices { display: grid; gap: 12px; }
button { cursor: pointer; border: 0; border-radius: 14px; padding: 14px 16px; font-weight: 700; color: #0f172a; background: #a7f3d0; }
button:hover { transform: translateY(-1px); }
.restart { margin-top: 18px; background: #facc15; }
@media (max-width: 640px) { .meters { grid-template-columns: 1fr; } }
