/* Punch Pop - Styles */

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #111;
  color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: bold;
}

.version {
  font-size: 1rem;
  font-weight: normal;
  color: #888;
}

.canvas-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.canvas-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.canvas-label {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

canvas {
  background: #000;
  border-radius: 4px;
  border: 1px solid #333;
}

#game-canvas {
  background: #1b2a3a;
}

#status-bar {
  font-size: 0.9rem;
  color: #aaa;
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 1300px;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

@media (max-width: 1400px) {
  .canvas-container {
    flex-direction: column;
  }
}
