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

body {
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Courier New', monospace;
  overflow: hidden;
}

#game-container {
  position: relative;
  width: 800px;
  height: 600px;
}

#game-canvas {
  display: block;
  border: 3px solid #444;
  border-radius: 4px;
  image-rendering: pixelated;
}

#dialog-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border: 4px solid #333;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 10;
}

#dialog-box.hidden {
  display: none;
}

#dialog-name {
  font-weight: bold;
  color: #d32f2f;
  margin-bottom: 6px;
  font-size: 16px;
  text-transform: uppercase;
}

#dialog-text {
  min-height: 48px;
}

#dialog-prompt {
  text-align: right;
  font-size: 14px;
  color: #888;
  margin-top: 8px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

#controls-info {
  position: absolute;
  bottom: -32px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #666;
  font-size: 13px;
}
