#_1 {
  fill: #ffd700;
}

#_2 {
  fill: #ffd700;
}

#_3 {
  fill: #ffd700;
}

#_4 {
  fill: #20b2aa;
}

#_5 {
  fill: #20b2aa;
}

#_6 {
  fill: #20b2aa;
}

#_7 {
  fill: #20b2aa;
}

#_8 {
  fill: #20b2aa;
}

#_9 {
  fill: #20b2aa;
}

#_10 {
  fill: #20b2aa;
}

#_11 {
  fill: #20b2aa;
}

#_12 {
  fill: #20b2aa;
}

.frame,
.sticks {
  fill: #fff;
}

.winIndicator {
  fill: #fff;
}

.wheelMiddle {
  fill: #fff;
}

body {
  text-align: center;
  margin: auto;
  background-color: rgb(240, 236, 212);
}

.luckywheel {
  transform: scale(0.8); /* Scale down to 80% of the original size */
  transform-origin: center; /* Ensure it scales from the center */
}

.btn,
.btn:visited {
  font-weight: 800;
  margin: 10px;
  height: 40px;
  width: 140px;
  box-shadow: 4px 4px 20px 0 #cc4c45;
  border-radius: 0;
  border: 2px solid #000;
  background-color: #fff;
  color: #000;
}

.btn:hover,
.btn:active {
  color: #fff;
  background-color: #000;
  border: none;
  text-decoration: none;
  box-shadow: 4px 4px 5px 0 #cc4c45;
}

svg {
  width: 50vw; /* 50% of the viewport width */
  height: auto; /* maintain the aspect ratio */
}

.deal-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.deal-content {
  background-color: #fefefe;
  margin: auto; /* Auto margins for auto centering */
  padding: 20px;
  border: 1px solid #888;
  width: 40%; /* Adjust as per your design */
  max-width: 400px; 
  margin: auto;
  padding: 20px;

  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); /* 3D effect */

  /* Centering horizontally and vertically */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.deal-box img {
  width: 100%; /* Set a fixed width */
  height: 200px; /* Set a fixed height */
  object-fit: contain; /* Ensures the whole image is visible */
  border-radius: 10px; /* Optional: for rounded corners */
  background: #f0f0f0; /* Background color for empty space around the image */
  display: block; /* To remove bottom spacing/margin */
  margin: 0 auto; /* Center the image in the container */
}



.deal-title {
  text-align: center;
  margin-bottom: 15px;
  color: #333;
  font-size: 24px;
  /* Add any additional styling you want for the title */
}

.deal-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff; /* Choose your button color */
  color: white;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px #0056b3; /* Shadow to create 3D effect */
  cursor: pointer;
  transition: all 0.3s ease;
}

.deal-button:hover {
  background-color: #0056b3; /* Slightly darker shade on hover */
}

.deal-button:active {
  box-shadow: 0 1px #0056b3; /* Smaller shadow for click effect */
  transform: translateY(3px); /* Slightly move down the button */
}

/* WINNING ANIMATION */
@keyframes bounce {
  0%, 100% {
      transform: scale(1);
      opacity: 1;
  }
  50% {
      transform: scale(1.2);
      opacity: 0.8;
  }
}

.winning-animation {
  animation: bounce 1s ease-in-out;
}