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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #1a1a2e;
  font-family: 'Courier New', monospace;
  color: #fff;
}

#game-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#pong {
  border: 2px solid #e94560;
  border-radius: 4px;
  background: #0f0f23;
  display: block;
}

#score-board {
  font-size: 48px;
  font-weight: bold;
  color: #e94560;
  text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
  display: flex;
  gap: 24px;
  align-items: center;
}

#score-board .divider {
  color: #533483;
}

#message {
  font-size: 18px;
  color: #a0a0a0;
  margin-top: 8px;
  min-height: 1.2em;
}
