/* 🌌 Base Styles */
body {
  font-family: 'Courier New', monospace;
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.game-container {
  max-width: 500px;
  margin: auto;
  border: 2px solid #f00;
  padding: 20px;
  background-color: #222;
  border-radius: 10px;
}

/* 🎰 Reels */
.reels {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.reel {
  font-size: 3rem;
  margin: 0 10px;
  padding: 10px;
  background: #333;
  border: 2px solid #fff;
  border-radius: 8px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔘 Button */
button {
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #f00;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* 📊 Status */
.status p {
  margin: 10px 0;
}

/* 🧠 Mission Briefing */
.mission-briefing {
  font-size: 1rem;
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #fff;
  animation: typing 3s steps(30, end), blink 0.75s step-end infinite;
}

/* 📖 Chapter Title */
#chapterTitle {
  font-size: 1.2rem;
  color: #0ff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ✨ Animations */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent }
}
