body {
  font-family: "Courier New", monospace;
  text-align: center;
  background: radial-gradient(#2b2b2b, #0f0f0f);
  color: #e6e6e6;
  zoom: 150%;
  overflow: hidden;
}

h1 {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffb347;
  text-shadow: 0 0 8px #ff7a00;
}

.subtitle {
  font-size: 0.9em;
  opacity: 0.8;
  margin-bottom: 30px;
}

#game {
  display: flex;
  justify-content: center;
  gap: 50px;
}

#character {
  position: relative;
  width: 300px;
  height: 400px;
  background: linear-gradient(#444, #222);
  border: 2px solid #666;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.hidden {
  display: none;
}

#controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #1a1a1a;
  padding: 16px;
  border: 1px solid #555;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.control span {
  width: 60px;
  text-align: left;
}

button {
  background: #333;
  color: #ffb347;
  border: 1px solid #666;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 14px;
}

button:hover {
  background: #444;
  box-shadow: 0 0 6px #ff7a00;

}
