
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root{
    --up-white-1: #FFFFFF;
    --up-white-2: rgb(255 255 255 / 75%);
    --up-white-3: rgb(255 255 255 / 75%);
    --up-white-4: rgb(255 255 255 / 75%);
    --up-white-5: rgb(255 255 255 / 8%);
}
body {
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; */

  /* background: linear-gradient(135deg, #24004b 0%, #5212a4 100%); */
  font-family: 'SF Pro' , 'Poppins';
  overflow: hidden;
}
.w-full {
    width: 100%;
}
.wheel-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  margin-bottom: 20px;
}
.wheel-bg {
    position: absolute;
    top: 0;
    width: 150%;
    height: 150%;
    transform: scale(2.2);
    transition: all .3s;
    left: -25%;
    animation: spin 20s linear infinite;
    top: -25%;
}
.wheel-girl {
    position: absolute;
    left: -133px;
    z-index: 2;
    top: -11%;
}
.canvas {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transition: transform 4s cubic-bezier(0.33, 1, 0.68, 1);
}
#outerWheel {
  width: 300px;
  height: 300px;
  z-index: 2;
}
#innerWheel {
  position: relative;
  width: 180px; /* 60% of 360px */
  height: 180px;
  z-index: 3;
  
}
.arrow {
    position: absolute;
    top: -9%;
    left: 45%;
    width: 33px;
    z-index: 3;
  /* transform: translateX(-50%) rotate(122deg);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 40px solid #ffdd00;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4)); */
  z-index: 3;
}
.bulb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 6px #ffd700;
  transform-origin: center center;
  animation: blink 1.5s infinite ease-in-out;
  z-index: 4;
}
.bulb::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* #spinBtn {
  padding: 12px 28px;
  font-size: 18px;
  background: linear-gradient(135deg, #ffd94a 0%, #ffb830 100%);
  border: none;
  border-radius: 30px;
  color: #333;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
#spinBtn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
#spinBtn:disabled {
  background: #aaa;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
} */
.outerspin-border{
  position: absolute;
  width: 100%;
  transform: scale(1.57);
  pointer-events: none;
  z-index: 1;
  /* filter: drop-shadow(3px 3px 60px #FFF478); */
}
.innerspin-border{ 
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scale(1.1);
  z-index: 2;
}
.innerspin-wrapper{
  position: absolute;
  top: 20%;
  left: 20%;
}
.center-spin__img{
    width: 80px;
    position: absolute;
    z-index: 3;
    top: 27%;
    left: 34%;
    filter: drop-shadow(0 3px 6px #ffc933)
}
.relative {
    position: relative;
}
.bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.bg-cover{
    background: linear-gradient(181deg, transparent 21.34%, #111120 99.18%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.logo {
    width: 93px;
}
.container {
    /* width: 1200px; */
    margin: 0 auto;
}
.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-col {
    flex-direction: column;
}
.content-container{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 60px;
    width: 600px;
    margin: 0 auto;
}
.title-1 {
    text-align: center;
    font-family: "SF Pro Text Bold";
    /* -webkit-text-stroke: 1px black; */
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 100% */
    text-transform: uppercase;
    letter-spacing: 0.1px;
    background: linear-gradient(180deg, #FFFFBE 25.48%, #FEB76F 75%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.title-2 {
    color: #FFF;

    text-align: center;
    text-shadow: 0px 1.42px 5.682px #000;
    font-family: "SF Pro";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 100% */
    font-variant: all-small-caps;
    letter-spacing: 0.1px;
    text-align: center;
}
.content-top {
    height: calc(100dvh - 166px);
}
.footer-wrapper {
    background: #111120;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--up-white-2);
    font-size: 14px;
    height: 166px;
    position: relative;

}
.footer-reserve{
    padding-top: 24px;
}
.footer-href {
    color: inherit;
    text-decoration: none;
}
.button-spin__img{
    width: 240px;
    z-index: 1;
    transition: all .3s;
    position: relative;
    top: 6px;
    cursor: pointer;
    filter: drop-shadow(1px -1px 16px rgba(229, 248, 255, 0.60));
}
.button-spin {
    transform: scale(.5);
    position: absolute;
    bottom: 2%;
    cursor: pointer;
}
.button-spin-1{
    z-index: 1;
    width: 60%;
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 20px;
    border-radius: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 4px solid var(--yellow-FFC933, #FFC933);
    background: linear-gradient(180deg, #FF3815 38.75%, #720002 100%);
    box-shadow: 0px 3px 1.958px 0px rgba(229, 248, 255, 0.60) inset, 0px -3.427px 1.958px 0px rgba(255, 184, 185, 0.50) inset, 0px 0px 13.165px 0px rgba(255, 12, 16, 0.85), 0px 2.191px 48.958px 0px rgba(255, 197, 198, 0.65);
    cursor: pointer;
}
/* .button-spin__img:hover:not(:disabled) {
    transform: translateY(-10px);
}

.button-spin__img:active:not(:disabled) {
    transform: scale(0.95);
}    */
.button-spin-text {
    background: linear-gradient(180deg, #FFFFBE 25.48%, #FEB76F 75%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "SF Pro Text Bold";
    font-size: 24px;
}
.header {
    padding-top: 20px;
    padding-bottom: 20px;
    background: linear-gradient(359deg, transparent 21.34%, #111120 99.18%);
    text-align: center;
}
.lang-wrapper{
    display: flex;
    padding: 15px 20px;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    cursor: pointer;
    background: var(--up-white-5, rgba(255, 255, 255, 0.08));
}
.lang-content__wrapper{
    display: flex;
    align-items: center;
    gap: 8px;
}
.lang-icon{
    width: 16px;
    font-family: "SF Pro";
    color: var(--up-white-1);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    letter-spacing: 0.08px;
}
.lang-text {
    color: var(--up-white-1);
}
.lang-icon__arrow{
    width: 16px;
    transition: all .3s;
}
.active .lang-icon__arrow {
    transform: rotate(-180deg);
}
.lang-list__wrapper{
    border-radius: 8px;
    border: 1px solid var(--white-white-ffffff-8, rgba(255, 255, 255, 0.08));
    background: #2D2A3A;
    padding: 12px;
    box-shadow: 1.63px 1.91px 1.304px 0px rgba(164, 196, 204, 0.60) inset, 0px -2.282px 1.304px 0px rgba(4, 18, 33, 0.50) inset, 0px 11px 15px -7px rgba(0, 0, 0, 0.25);
    position: absolute;
    width: 100%;
    bottom: 56px;
    transform: scale(0);
    transform-origin: 50% 100%;
    transition: all .3s;
    z-index: 1;
}
.lang-list__wrapper.active {
    transform: scale(1);
}
.lang-list__item{
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
}
.lang-list__item.active{
    color: #EDBF51;
}
.lang-list__item:hover{
    background: var(--up-white-5);
}
.modal-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background: rgba(0, 0, 0, 0.80);
}
.modal-container{
    border-radius: 16px;
    background: #2D2A3A;
    box-shadow: 1.63px 1.91px 1.304px 0px rgba(164, 196, 204, 0.60) inset, 0px -2.282px 1.304px 0px rgba(4, 18, 33, 0.50) inset;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 100px 40px 40px 40px;
    color: var(--up-white-1);
}
.modal-icon__gift{
    width: 200px;
    position: absolute;
    top: -84px;
}
.modal-title__1{
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}
.modal-title__3{
    background: linear-gradient(180deg, #FFFFBE 0%, #FEB76F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    font-family: "SF Pro Text Bold";
    margin-bottom: 8px;
    text-align: center;
}
.modal-title__2{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}
.modal-title__4{
    color: var(--up-white-2);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}
.modal-ray {
   
    width: 100%;
    transform: scale(2);

 
}
.modal-ray__container {
    animation: spin 40s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
}
.modal-button {
    border-radius: 16px;
    border: 4px solid var(--White-White-FFFFFF, #FFF);
    background: linear-gradient(180deg, #30C8FF 38.75%, #043A9D 100%);
    box-shadow: 1px 4px 1.958px 0px rgba(229, 248, 255, 0.60) inset, 0px -3.427px 1.958px 0px rgba(184, 244, 255, 0.50) inset;
    padding: 20px 40px;
    cursor: pointer;
}
.modal-button__text {
    /* background: linear-gradient(0deg, #DDD 54%, #FFF 55%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    text-align: center;

    font-family: "SF Pro Text Bold";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.561px; /* 98.172% */
    letter-spacing: 0.54px;
    /* -webkit-text-stroke: 1px #F8F8F8; */
	text-shadow: 0px 1px 4px #000000;
}
.title-scale-in {
    animation: title_scale_in .5s ease-in-out;
}
.loading-wrapper {
    background: #111120;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading-img {
    width: 5rem;
}
.pe-none{
    pointer-events: none;
}
.btn-effect__click:active{
    transform: scale(0.95);
}
@keyframes title_scale_in {
    0% {
        transform: scale(.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  
  @keyframes spin {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
@media (max-width: 768px) {
    .wheel-wrapper{
        width: 300px;
        height: 300px;
    }
    .wheel-girl{
        display: none;
    }
    .container{
        width: 100%;
    }
    .title-1{
        font-size: 24px;
        line-height: 24px;
    }
    .title-2{
        font-size: 24px;
        line-height: 24px;
    }
    .content-container{
        padding-top: 38px;
        width: 100%;
    }
    .modal-container{
        width: 90vw;
        padding: 90px 20px 40px 20px;
    }
    .center-spin__img{
        width: 58px;
    }
    .content-top{
        height: calc(100dvh - 170px);
    }
    .footer-wrapper{
        padding-top: 40px;
        padding-bottom: 40px;
        height: 170px;
    }
    .logo{
        width: 76px;
    }
    .footer-reserve{
        padding-top: 24px;
    }
    .arrow {
        top: -8%;
        left: 46%;
        width: 23px;
        height: 31px;
    }
    .modal-title__1{
        font-size: 12px;
    }
    .modal-title__2{
        font-size: 20px;
    }
    .modal-title__3{
        font-size: 20px;
    }
    .modal-title__4{
        font-size: 12px;
    }
    .modal-button{
        padding: 16px 40px;
    }
    .modal-button__text{
        font-size: 20px;
    }
    .header {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    /* .button-spin__img:hover:not(:disabled) {
        transform: translateY(0);
      } */
}
