        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background-image: url('images/bg.jpg');
            background-size: contain;
            background-position: center;
            font-family: Arial, sans-serif;
            background-repeat: no-repeat;
            background-color: black;
            flex-direction: column;
        }
        img{
            width: 100%;
            margin: 0 auto;
        }
        
  .wheel-container {
    position: relative;
    width: 90vw;
    max-width: 350px;
    aspect-ratio: 1/1;
    top: 150px;
  }

  .wheel-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
  }

  .wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 91%;
    height: 91%;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform 5s cubic-bezier(0.25, 1, 0.25, 1);
    z-index: 2;
  }

  .arrow {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translateX(-50%);
    width: 8%;
    z-index: 4;
  }

  .spin-button {
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    max-width:600px;
    position: relative;
    top: 200px;
  }
  button{
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transform: translateY(-50%);
  }

  .popup-content-lose,.popup-content-win {
    background: transparent;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 400px;
  }
  .btn{
    display: flex;
    width: 100%;
    max-width: 500px;
    justify-content: space-evenly;
  }
  
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); /* zoom in */
  }
  100% {
    transform: scale(1); /* zoom out */
  }
}

.zoom-effect {
  animation: zoomInOut 1.5s infinite ease-in-out;
}


  @media (min-width:1400px) {
    .wheel-container{
      max-width: 400px;
    }
  }
  @media (max-width:500px){
    body{
        background-size: cover;
    }
  }
