body {
  font-family: 'Playfair Display', sans-serif;
  background: #1a1a1a;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-image: url("file:///Users/johnzapata/slot-machine2025/Images/Image%209-14-25%20at%207.55%E2%80%AFPM.jpg");
  background-repeat: no-repeat; 
  background-size: cover; 
}

.slot-machine-container {
  text-align: center;
  background-color: color-mix(in srgb, gray 60%, transparent);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
  max-width: 500px;
  width: 100%;
}

h1 {
  margin-bottom: 10px;
}

h2#balance {
  margin-bottom: 20px;
  color: #00ffcc;
}

.reels {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.reel {
  width: 120px;
  height: 120px;
  background-color: #222;
  border: 3px solid #fff;
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
}

.reel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.controls {
  margin-bottom: 20px;
}

select {
  padding: 8px;
  font-size: 16px;
  margin: 0 10px;
  border-radius: 5px;
}

button {
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lever {
  background-color: #FFD700;
}

.lever:active {
  transform: scale(0.95);
}

.lever:disabled {
  background-color: #777;
  cursor: not-allowed;
}

.restart {
  background-color: #00ccff;
  color: #000;
  margin-left: 10px;
}

#result {
  font-size: 20px;
  margin-top: 15px;
  min-height: 24px;
}
