/* Basic styling for canvas and HUD */
:root {
  --bg1: #1e1f26;
  --bg2: #2a2c36;
  --accent: #ffd24a;
  --danger: #f25f5c;
  --ok: #4caf50;
  --ink: #e6e6e6;
}
body { color: var(--ink); font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
#game { background: linear-gradient(#6ec1ff, #aee1ff 40%, #e8f7ff 60%); border: 2px solid var(--bg2); border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
