@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff"), url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-base: "Montserrat", sans-serif;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-accent: #FFE60E;
}

* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  padding: 0 4rem;
  max-width: 124rem;
  z-index: 15;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 580px) {
  .container {
    padding: 0 0.9rem;
  }
}

html {
  font-size: 0.6944444444vw;
}
html.js-lock {
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  html {
    font-size: 1.1990407674vw;
  }
}
@media only screen and (max-width: 580px) {
  html {
    font-size: 2.5445292621vw;
  }
}

body {
  position: relative;
  font-size: 1.2rem;
  font-family: var(--font-base);
}
body.js-lock {
  overflow-x: hidden;
  overflow-y: scroll;
}

input,
textarea,
button {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
  color: inherit;
  font-family: inherit;
}

main {
  display: block;
}

button {
  background-color: transparent;
  cursor: pointer;
}

a {
  color: inherit;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration: none;
}

.inline {
  font-size: 0;
}
.inline > * {
  display: inline-block;
  vertical-align: middle;
}

.icon {
  width: 100%;
}

.clear:after {
  content: "";
  display: block;
  clear: both;
}
.clear__left {
  float: left;
}
.clear__right {
  float: right;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex_inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.flex_justify {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex_left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex_right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex_start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex_bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex_vertical {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.css-text-left {
  text-align: left;
}

.css-text-center {
  text-align: center;
}

.css-text-right {
  text-align: right;
}

img,
svg {
  vertical-align: top;
  max-width: 100%;
}

.css-scrollbar {
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.css-scrollbar::-webkit-scrollbar {
  width: 3px;
}
.css-scrollbar::-webkit-scrollbar-track {
  background: rgba(196, 196, 196, 0.4);
}
.css-scrollbar::-webkit-scrollbar-thumb {
  background: gray;
}

.absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.object-fit {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes zoomIn {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoomIn {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
}
@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
}
@keyframes swing {
  0% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
}
@-webkit-keyframes fadeUpDown {
  from {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
  to {
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
}
@keyframes fadeUpDown {
  from {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
  to {
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
}
@-webkit-keyframes wheelShake {
  0% {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
  50% {
    -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
}
@keyframes wheelShake {
  0% {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
  50% {
    -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
}
@-webkit-keyframes wheelShake2 {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
}
@keyframes wheelShake2 {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
}
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 4rem;
  color: #000000;
  font-weight: 800;
  background: var(--color-accent);
  font-size: 2.4rem;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  border-radius: 0.8rem;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  opacity: 0;
  visibility: visible;
  z-index: 1;
  background: #FFF066;
  border-radius: 0.8rem;
}
.btn:hover::before {
  opacity: 1;
}
@media only screen and (max-width: 580px) {
  .btn {
    font-size: 1.8rem;
  }
}

.intro {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.intro::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.intro__coins {
  -webkit-animation: zoomIn 7s ease infinite alternate;
          animation: zoomIn 7s ease infinite alternate;
}
.intro__bg {
  z-index: -1;
}
.intro__bg::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  left: 0;
}
.intro__inner {
  height: 100vh;
  padding: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-y: auto;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .intro__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media only screen and (max-width: 580px) {
  .intro__inner {
    overflow-x: hidden;
    padding: 2.4rem 0.9rem;
  }
}
.intro__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -7rem auto 3rem;
  width: 44rem;
  position: relative;
  z-index: 4;
}
.intro__logo img {
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .intro__logo {
    margin-top: 1rem;
    width: 60rem;
  }
}
@media only screen and (max-width: 580px) {
  .intro__logo {
    width: 32rem;
  }
}
.intro__payments {
  max-width: 105.7rem;
  margin: auto auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem;
}
@media only screen and (max-width: 992px) {
  .intro__payments {
    max-width: 66.7rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 580px) {
  .intro__payments {
    gap: 1.4rem;
  }
}
.intro__payment {
  display: inline-block;
}
.intro__payment img {
  height: 2.4rem;
}
@media only screen and (max-width: 580px) {
  .intro__payment img {
    height: 2rem;
  }
}
.intro__copyright {
  opacity: 0.4;
  margin: 3rem auto 0;
  text-align: center;
  color: var(--color-white);
}
@media only screen and (max-width: 580px) {
  .intro__copyright {
    font-size: 1rem;
  }
}
.intro__box {
  gap: 6rem;
}
.intro__title {
  color: #FFF;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 120%; /* 4.8rem */
  letter-spacing: -0.16rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20.07%, #FFE0A3), color-stop(73.19%, #D49B39)), #FFFFFF;
  background: linear-gradient(180deg, #FFE0A3 20.07%, #D49B39 73.19%), #FFFFFF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.6rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.popup.is-open {
  opacity: 1;
  visibility: visible;
}
.popup.is-open .popup__content {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
.popup__bg {
  background-color: #1A1A1A;
  opacity: 0.5;
}
.popup__content {
  position: relative;
  max-width: 51.5rem;
  background: #011934;
  width: 100%;
  padding: 4rem;
  color: var(--color-white);
  text-align: center;
  -webkit-transform: translateY(2.4rem) scale(0.95);
          transform: translateY(2.4rem) scale(0.95);
  border: 0.4rem solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  -webkit-box-shadow: 0px 0px 20rem 0px #D6002A;
          box-shadow: 0px 0px 20rem 0px #D6002A;
  border-radius: 4.8rem;
}
@media only screen and (max-width: 580px) {
  .popup__content {
    padding: 3rem 1.5rem;
  }
}
.popup__title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 4rem;
  letter-spacing: -0.128rem;
}
@media only screen and (max-width: 580px) {
  .popup__title {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    letter-spacing: -0.064rem;
  }
}
.popup__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.4rem;
}
.popup__row span {
  color: var(--color-accent);
  font-size: 6.4rem;
  white-space: nowrap;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1em;
  text-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.256rem;
}
@media only screen and (max-width: 580px) {
  .popup__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup__row span {
    margin-bottom: 0;
  }
}
.popup__cell {
  font-weight: 500;
}
.popup__text {
  font-size: 2rem;
  font-weight: 700;
}
.popup__btn {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  width: calc(100% - 4rem);
  margin-top: 4.5rem;
}
.popup__decor {
  position: absolute;
  z-index: -1;
}
.popup__decor_left {
  top: 2rem;
  left: 0;
}
.popup__decor_right {
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 580px) {
  .popup__decor_right {
    display: none;
  }
}

.wheel {
  position: relative;
  z-index: 100;
  padding-top: 33.908045977%;
  width: 33.908045977%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 992px) {
  .wheel {
    padding-top: 60.0508905852%;
    width: 60.0508905852%;
  }
}
@media only screen and (max-width: 580px) {
  .wheel {
    padding-top: 95.6743002545%;
    width: 95.6743002545%;
  }
}
.wheel__golden {
  width: calc(100% + 4rem);
  height: calc(100% + 4rem);
  margin: -2rem;
  z-index: 2;
  pointer-events: none;
}
.wheel__golden img {
  -webkit-animation: rotate 10s infinite ease-in-out;
          animation: rotate 10s infinite ease-in-out;
}
.wheel:not(.is-sticky) .wheel__image img {
  -webkit-animation-name: wheelShake;
          animation-name: wheelShake;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.wheel:not(.is-sticky) .wheel__items {
  -webkit-animation-name: wheelShake;
          animation-name: wheelShake;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.wheel__btn {
  width: 40rem;
  height: 40rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280' fill='none'%3E%3Cg filter='url(%23filter0_d_7030_2691)'%3E%3Ccircle cx='140' cy='140' r='60' fill='url(%23paint0_linear_7030_2691)'/%3E%3Ccircle cx='140' cy='140' r='58' stroke='url(%23paint1_linear_7030_2691)' stroke-width='4'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_7030_2691' x='0' y='0' width='280' height='280' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeMorphology radius='16' operator='dilate' in='SourceAlpha' result='effect1_dropShadow_7030_2691'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='32'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 0.670652 0 0 0 0 0.17663 0 0 0 1 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_7030_2691'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_7030_2691' result='shape'/%3E%3C/filter%3E%3ClinearGradient id='paint0_linear_7030_2691' x1='101' y1='90.5' x2='178.5' y2='189.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFB800'/%3E%3Cstop offset='0.32505' stop-color='%23FFF0C8'/%3E%3Cstop offset='0.68505' stop-color='%23FFB800'/%3E%3Cstop offset='1' stop-color='%239A6600'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_7030_2691' x1='178.5' y1='93' x2='100.5' y2='186.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239A6600'/%3E%3Cstop offset='0.31495' stop-color='%23FFB800'/%3E%3Cstop offset='0.67495' stop-color='%23FFF0C8'/%3E%3Cstop offset='1' stop-color='%23FFB800'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28rem 28rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 800;
  cursor: auto;
  -webkit-filter: drop-shadow(0px 0px 6.4rem #FFAB2D);
          filter: drop-shadow(0px 0px 6.4rem #FFAB2D);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wheel__btn span {
  opacity: 0.9;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(#666));
  background: linear-gradient(0deg, #000 0%, #666 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: hard-light;
  width: 12rem;
  height: 12rem;
  cursor: pointer;
  line-height: 12rem;
}
@media only screen and (max-width: 580px) {
  .wheel__btn {
    background-size: 25rem 25rem;
    font-size: 1.2rem;
    width: 25rem;
    height: 25rem;
  }
  .wheel__btn span {
    width: 8.8rem;
    height: 8.8rem;
    line-height: 8.8rem;
  }
}
.wheel__items {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.wheel__item {
  position: absolute;
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0px 1.6rem rgba(0, 0, 0, 0.15);
  -webkit-text-stroke-width: 2;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.08rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  white-space: nowrap;
}
@media only screen and (max-width: 580px) {
  .wheel__item {
    font-size: 1.6rem;
  }
}
.wheel__item:nth-child(1) {
  left: 17rem;
  top: 7rem;
}
@media only screen and (max-width: 580px) {
  .wheel__item:nth-child(1) {
    left: 12.4rem;
    top: 5rem;
  }
}
.wheel__item:nth-child(2) {
  left: 23rem;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
  top: 11rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 580px) {
  .wheel__item:nth-child(2) {
    font-size: 1.4rem;
    left: 17.7rem;
    top: 7rem;
  }
}
.wheel__item:nth-child(3) {
  left: 29rem;
  top: 15rem;
  font-size: 2rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media only screen and (max-width: 580px) {
  .wheel__item:nth-child(3) {
    font-size: 1.6rem;
    left: 21.6rem;
    top: 11.2rem;
  }
}
.wheel__item:nth-child(4) {
  left: 32rem;
  top: 22rem;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  font-size: 3.2rem;
}
@media only screen and (max-width: 580px) {
  .wheel__item:nth-child(4) {
    left: 25rem;
    top: 16.5rem;
    font-size: 2.6rem;
  }
}
.wheel__item:nth-child(5) {
  left: 31rem;
  top: 29rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  font-size: 3rem;
}
@media only screen and (max-width: 580px) {
  .wheel__item:nth-child(5) {
    left: 23rem;
    top: 22.1rem;
  }
}
.wheel__item:nth-child(6) {
  left: 24rem;
  top: 35rem;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
@media only screen and (max-width: 580px) {
  .wheel__item:nth-child(6) {
    left: 18rem;
    top: 27rem;
  }
}
.wheel__item:nth-child(7) {
  left: 17rem;
  top: 37rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media only screen and (max-width: 580px) {
  .wheel__item:nth-child(7) {
    left: 12.5rem;
    top: 28rem;
  }
}
.wheel__item:nth-child(8) {
  font-size: 1.7rem;
  left: 9rem;
  top: 35rem;
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
}
@media only screen and (max-width: 580px) {
  .wheel__item:nth-child(8) {
    font-size: 1.4rem;
    left: 6rem;
    top: 27rem;
  }
}
.wheel__item:nth-child(9) {
  font-size: 2rem;
  left: 3rem;
  top: 30rem;
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
}
@media only screen and (max-width: 580px) {
  .wheel__item:nth-child(9) {
    font-size: 1.6rem;
    left: 1.4rem;
    top: 23rem;
  }
}
.wheel__item:nth-child(10) {
  left: 2rem;
  top: 21.7rem;
  font-size: 3rem;
  -webkit-transform: rotate(182deg);
          transform: rotate(182deg);
}
@media only screen and (max-width: 580px) {
  .wheel__item:nth-child(10) {
    left: 1rem;
    top: 16rem;
    font-size: 2.6rem;
  }
}
.wheel__item:nth-child(11) {
  left: 4rem;
  font-size: 3rem;
  top: 13.4rem;
  -webkit-transform: rotate(-150deg);
          transform: rotate(-150deg);
}
@media only screen and (max-width: 580px) {
  .wheel__item:nth-child(11) {
    left: 3rem;
    top: 10.4rem;
  }
}
.wheel__item:nth-child(12) {
  left: 9rem;
  top: 10rem;
  -webkit-transform: rotate(-120deg);
          transform: rotate(-120deg);
}
@media only screen and (max-width: 580px) {
  .wheel__item:nth-child(12) {
    left: 7.6rem;
    top: 7rem;
  }
}
.wheel.is-sticky .wheel__image img {
  -webkit-animation-name: wheelShake2;
          animation-name: wheelShake2;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.wheel.is-sticky .wheel__items {
  -webkit-animation-name: wheelShake2;
          animation-name: wheelShake2;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.popup__prize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0 30px;
  text-align: center;
}

.popup__prize-main {
  font-size: 42px;
  font-weight: 800;
  color: #ffd24a;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.popup__prize-sub {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.9;
}

/* === FIX: wheel animations stability (paste to the end) === */
/* 1) Always define base transform so browser doesn't "inherit" old transform state */
.wheel__image img,
.wheel__items {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* 2) When spinning (is-sticky) – keep end state during popup open, avoid jump back */
.wheel.is-sticky .wheel__image img,
.wheel.is-sticky .wheel__items {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/* 3) Prevent mixing shake + spin on the same tick (removes random glitches) */
.wheel.is-sticky .wheel__image img {
  -webkit-animation-name: wheelShake2 !important;
          animation-name: wheelShake2 !important;
}

.wheel.is-sticky .wheel__items {
  -webkit-animation-name: wheelShake2 !important;
          animation-name: wheelShake2 !important;
}

/* 4) Smooth state switching */
.wheel:not(.is-sticky) .wheel__image img,
.wheel:not(.is-sticky) .wheel__items {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/* === dynamic spin angle (keep your logic, just add variable) === */
@keyframes wheelShake2 {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(var(--spin-deg, 720deg));
            transform: rotate(var(--spin-deg, 720deg));
  }
}