/* Base settings and font styling */
body {
  background-color: #0b0c10;
  color: #c5c6c7;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  user-select: none;
}

/* Master container mimicking an arcade cabinet window */
.arcade-container {
  background: #1f2833;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(102, 252, 241, 0.3);
  border: 4px solid #66fcf1;
}

.game-header h1 {
  text-align: center;
  color: #66fcf1;
  letter-spacing: 6px;
  margin-top: 0;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(102, 252, 241, 0.6);
}

/* Main gameplay horizontal configuration */
.game-layout {
  display: flex;
  gap: 25px;
}

/* Canvas styling with sharp pixels */
.canvas-wrapper {
  background: #000;
  border: 4px solid #45a29e;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
}

canvas {
  display: block;
  image-rendering: pixelated;
}

/* Side dashboard layout */
.side-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 160px;
}

.stat-box {
  background: #0b0c10;
  border: 2px solid #45a29e;
  padding: 10px;
  text-align: center;
  margin-bottom: 12px;
}

.stat-box h2 {
  font-size: 14px;
  margin: 0 0 5px 0;
  color: #45a29e;
}

.digital-text {
  font-size: 22px;
  font-weight: bold;
  color: #66fcf1;
  text-shadow: 0 0 5px rgba(102, 252, 241, 0.5);
}

/* Key control guide details */
.controls-box {
  font-size: 11px;
  background: #0b0c10;
  border: 2px dashed #45a29e;
  padding: 10px;
  line-height: 1.6;
}

.controls-box h3 {
  margin: 0 0 8px 0;
  color: #66fcf1;
  text-align: center;
}

.controls-box p {
  margin: 4px 0;
  display: flex;
  justify-content: space-between;
}

.controls-box span {
  color: #66fcf1;
  font-weight: bold;
}
