body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #111;
Background-image:url(https://aviator.com.in/wp-content/uploads/2025/07/aviator-game-main.webp);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.slot-machine {
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, 70px);
  grid-template-rows: repeat(5, 70px);
  gap: 10px;
  margin: 20px auto;
  justify-content: center;
}

.cell {
  background: #2c3e50;
  border-radius: 10px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  animation: spinAnimation 0.5s ease;
  box-shadow: 0 0 5px rgba(255,255,255,0.2);
}

.winning {
  background: #27ae60;
  box-shadow: 0 0 10px #2ecc71;
}

button {
  background: #e67e22;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #d35400;
}

#result, #prize {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #f1c40f;
}

@keyframes spinAnimation {
  0%   { transform: rotateX(0deg); }
  50%  { transform: rotateX(90deg); opacity: 0.5; }
  100% { transform: rotateX(0deg); opacity: 1; }
}

