:root {
  --ch-bg: #09090b;
  --ch-safe: #18181b;
  --ch-lane: #111114;
  --ch-player: #4cc9f0;
  --ch-hazard: #8b6cff;
  --ch-goal: rgba(76, 201, 240, 0.1);
}

.game-board-wrapper {
  position: relative;
  background: #050507;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.8),
              0 24px 60px rgba(0,0,0,0.5);
  overflow: hidden;
}

#game-canvas {
  display: block;
  outline: none;
}

/* Crosshush Overlay specific overrides */
.game-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  color: var(--ch-player);
  text-shadow: 0 0 20px rgba(76, 201, 240, 0.4);
}



/* INSTÄLLNING - Global Mobile Fallback Fix */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
}
@media (max-width: 800px) {
    canvas, .game-canvas, #game-container, #game-stage, #app {
        max-width: 100% !important;
        height: auto;
    }
    .panel, .sidebar, .menu, #ui, #overlay {
        max-width: 100% !important;
        box-sizing: border-box;
    }
}
