/* Road to Omaha — Base Styles */

/* CSS Custom Properties are set dynamically by src/ui/theme.js */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  background-color: var(--bg-primary, #0a0a0a);
  color: var(--text-primary, #f0f0f0);
}

#game-container {
  width: 100vw;
  height: 100vh;
  position: relative;
}

#game-canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: default;
}
