body {
  background: linear-gradient(rgba(0, 0, 0, 0.597), rgba(0, 0, 0, 0.467)),
    url("../images/animals.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: Arial, sans-serif;
  background-color: #2c3e50;
  color: #ecf0f1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.game-container {
  width: 70%;
  text-align: center;
  background-color: #4d010133;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1 {
  margin-bottom: 20px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  grid-template-rows: repeat(3, 130px);
  gap: 10px;
  margin-bottom: 20px;
}

.slot {
  background-color: #11ef0575;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  font-weight: bold;
  color: #2c3e50;
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.balance,
.bet {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bet input {
  border-radius: 100%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: rgb(121, 2, 87);
}

#spin-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #27ae60;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#spin-button:hover {
  background-color: #2ecc71;
}

#result-message {
  margin-top: 10px;
  font-size: 18px;
  color: #f1c40f;
}
