#spin_the_wheel_wrapper{
    /*display: flex;*/
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }

  #spin_the_wheel {
    /*margin-left: 250px;*/
    display: inline-block;
    position: relative;
    overflow: hidden;
  }
  
    #wheel {
        display: block;
        padding: 30px;
    }
    .wheel-bg{
        background-image: url(https://cryptofuturesclub.com/wp-content/uploads/2025/07/golden-lottery-wheel-background-casino-gambling_1017-44820-removebg-preview-1.png);
        background-size: 600px;
        background-position: center;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: -4px;
    }
  
  #spin {
    font: 14px "Lato", sans-serif;
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #fff;
    box-shadow: 0 0 0 8px currentColor, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transition: 0.8s;
  }
  
  #spin::after {
    content: "";
    position: absolute;
    top: -17px;
    border: 10px solid transparent;
    border-bottom-color: currentColor;
    border-top: none;
  }

  .result-wrapper{
    font-size: 30px;
    visibility: hidden;
  }

  @keyframes flash {
    0%,100% { transform: scale(1); }
    50%    { transform: scale(1.2); }
  }
  #result.flash {
    animation: flash 0.5s ease-in-out;
  }
  
  @media (max-width:767px){
      #spin_the_wheel_wrapper{
    flex-direction: column;
  }
  }
  
  
  @media (max-width: 600px){
      #spin_the_wheel {
        display: block;
        margin: auto;
    }
    
    .wheel-bg {
    background-size: 430px;
}
#wheel {
    width: 350px;
    margin: auto;
}
  }