:root {
  --bg: #1b1b1b;
  --panel: #2a2a2a;
  --text: #f2f2f2;
  --accent: #d32f2f;
  --muted: #9e9e9e;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background: var(--bg);
  color: var(--text);
}

header {
  padding: 16px;
  text-align: center;
  background: #111;
  border-bottom: 1px solid #333;
}

#container {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
}

#game-canvas {
  width: 100%;
  height: 480px;
  background: #111;
  border: 2px solid #333;
  border-radius: 8px;
  display: block;
}

.controls {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: bold;
}

button:disabled {
  background: #555;
}

#status {
  margin-top: 8px;
  color: var(--muted);
}

#consent-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
}

#consent-card {
  width: 90%;
  max-width: 520px;
  background: var(--panel);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #444;
}

#consent-card a { color: #8ab4f8; }
