body {
  background: #111;
  color: #fff;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#container {
  margin-top: 10px;
}

#scaleContainer {
  width: 600px;
}

#pongCanvas {
  background: #000;
  border: 4px solid gold;
  border-radius: 10px;
  width: 600px;
  height: 400px;
}

#buttonRow {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#buttonRow button {
  padding: 10px 22px;
  font-size: 18px;
  border-radius: 8px;
  border: 2px solid #ff0000;
  background: #220000;
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
}

#buttonRow button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#messagePanel {
  margin-top: 10px;
  min-height: 24px;
  text-align: center;
  font-family: 'Orbitron', monospace;
}

#messages.divine {
  color: gold;
  font-size: 24px;
}

#messages.infernal {
  color: crimson;
  font-size: 24px;
}
