.slots-container {
  text-align: center;
  margin-top: 2rem;
}

.reels {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reel {
  background: rgba(255,255,255,0.1);
  border: 3px solid var(--primary-blue);
  border-radius: 10px;
  padding: 2rem;
  font-size: 2.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px var(--primary-glow);
}

.controls {
  margin: 1rem;
}

#result-message {
  font-size: 1.2rem;
  margin-top: 1rem;
  min-height: 1.5rem;
}
body {
  background: radial-gradient(circle at center, #0a0f2c, #000);
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  text-align: center;
}

h1 {
  color: #00cfff; /* Electric blue */
  text-shadow: 0 0 15px #00cfff, 0 0 30px #007a99;
}

.slot-machine {
  display: inline-block;
  background: #111;
  border: 4px solid #00cfff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 20px #00cfff, inset 0 0 15px #004d66;
}

.reel {
  width: 100px;
  height: 100px;
  margin: 10px;
  background: #000;
  border: 3px solid #00cfff;
  border-radius: 8px;
  display: inline-block;
}

button {
  background: #00cfff;
  border: none;
  color: #000;
  padding: 10px 20px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 15px #00cfff;
  transition: transform 0.2s;
}

button:hover {
  transform: scale(1.05);
}
.chip-selector {
  background-color: #000;
  border: 2px solid #00cfff;
  color: #00cfff;
  font-size: 1.2em;
  font-family: 'Orbitron', sans-serif;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 0 10px #00cfff;
  outline: none;
  cursor: pointer;
}

.chip-selector option {
  background-color: #000;
  color: #00cfff;
}
.bet-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2em;
  color: #00cfff;
  text-shadow: 0 0 8px #00cfff, 0 0 15px #007a99;
  margin-right: 10px;
}

.bet-input {
  background-color: #000;
  border: 2px solid #00cfff;
  color: #00cfff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2em;
  padding: 6px 10px;
  border-radius: 8px;
  width: 80px;
  box-shadow: 0 0 12px #00cfff;
  text-align: center;
  outline: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.bet-input:focus {
  box-shadow: 0 0 18px #00e6ff, 0 0 25px #008fb3;
  transform: scale(1.05);
}
