.game-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 6rem 2rem 4rem;
}
.game-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
#gameCanvas {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  display: block;
  max-width: 100%;
}
.game-ui { display: flex; gap: 3rem; }
.game-stat { font-family: var(--font-mono); font-size: 1rem; color: var(--text-muted); }
.game-stat span { color: var(--accent); font-weight: 700; }
.game-controls { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.game-hint { font-size: 0.8rem; color: var(--text-muted); font-family: var(--font-mono); }