a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Regular */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/Montserrat-Regular.ttf") format("truetype");
}

/* Medium */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/Montserrat-Medium.ttf") format("truetype");
}

/* Bold */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/Montserrat-Bold.ttf") format("truetype");
}

/* FS Elliot Pro */
@font-face {
  font-family: "FS Elliot Pro";
  font-display: swap;
  font-weight: 400;
  src: url("/fonts/FSElliotPro-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "FS Elliot Pro";
  font-display: swap;
  font-weight: 700;
  src: url("/fonts/FSElliotPro-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "FS Elliot Pro";
  font-display: swap;
  font-weight: 900;
  src: url("/fonts/FSElliotPro-Heavy.woff2") format("woff2");
}

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

a {
  display: block;
  cursor: pointer;
  background-color: transparent;
  text-decoration: none;

  user-drag: none;
  -webkit-user-drag: none;
}

.undraggable {
  user-drag: none;
  -webkit-user-drag: none;
}

[hidden] {
  display: none;
}

::selection {
  background-color: rgba(122, 36, 228, 0.6);
  color: #ffffff;
}

html, body {
  overscroll-behavior: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.preloader {
  position: absolute;
  margin: 30vh auto auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 20vw;
  height: 20vw;
}
.preloader-circle-1::before,
.preloader-circle-1::after,
.preloader-circle-2::before,
.preloader-circle-2::after {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  border-radius: 50%;
  background: rgba(138, 43, 226, 0.02);
}
.preloader-circle-1::before {
  content: "";
  width: 15vw;
  height: 20vw;
  animation: rt 6s infinite linear;
  box-shadow: 0 0 1px 0 blueviolet, inset 0 0 10px 0 blueviolet;
}
.preloader-circle-1::after {
  content: "";
  width: 20vw;
  height: 15vh;
  animation: rt 10s infinite linear;
  box-shadow: 0 0 1px 0 darkviolet, inset 0 0 10px 0 darkviolet;
}
.preloader-circle-2::before {
  content: "";
  width: 15vw;
  height: 20vw;
  animation: rt 5s infinite linear;
  box-shadow: 0 0 1px 0 darkmagenta, inset 0 0 10px 0 darkmagenta;
}
.preloader-circle-2::after {
  content: "";
  width: 20vw;
  height: 15vh;
  animation: rt 15s infinite linear;
  box-shadow: 0 0 1px 0 magenta, inset 0 0 10px 0 magenta;
}
.preloader.hide {
  display: none;
}

@keyframes rt {
  100% {
    transform: rotate(360deg);
  }
}





/* hand */
.handbox {
  padding-top: 12vh;
  min-height: 480px;
  height: 90vh;
  display: none;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 10vw;
}
.handbox.show {
  display: flex;
}
.left-part, .right-part {
  width: 33%;
  height: 100%;
  position: relative;
  padding-bottom: 40px;
}
.hand {
  cursor: pointer;
  position: absolute;
  left: 55%;
  top: 51%;
  transform: scale(1) translate(-50%, -50%);
  transition: 1s;
  width: 25vw;
  z-index: 5;
}
.right-part .hand {
  left: 42%;
}
.left-part:hover .hand {
  transform: scale(1.3) translate(-40%, -40%);
  opacity: 1;
}
.right-part:hover .hand {
  transform: scale(1.3) translate(-40%, -40%);
  opacity: 1;
}

.hand-left-top {
  cursor: pointer;
  position: absolute;
  left: 55%;
  top: 51%;
  transform: scale(1) translate(-50%, -50%);
  transition: 1s;
  width: 25vw;
  z-index: 15;
}
.hand-right-top {
  cursor: pointer;
  position: absolute;
  left: 42%;
  top: 51%;
  transform: scale(1) translate(-50%, -50%);
  transition: 1s;
  width: 25vw;
  z-index: 15;
}
.left-part:hover .hand-left-top {
  transform: scale(1.3) translate(-40%, -40%);
  opacity: 1;
}
.right-part:hover .hand-right-top {
  transform: scale(1.3) translate(-40%, -40%);
  opacity: 1;
}

.package {
  position: absolute;
  left: 66%;
  top: 40%;
  transform: scale(1) translate(-50%,-50%);
  transition: 1s;
  z-index: 4;
  width: 17.6vw;
  height: 20vw;
  border-radius: 1.67vw;
  border: 0.052vw solid #AEE0FF;
  background:
          linear-gradient(0deg, rgba(11, 11, 11, 0.50) 0%, rgba(11, 11, 11, 0.50) 100%),
          linear-gradient(0deg, rgba(41, 12, 125, 0.00) 0%, rgba(41, 12, 125, 0.00) 100%),
          rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(1.67vw);
}
.package-right {
  left: 33%;
}
.package-text {
  padding-top: 1vw;
  text-align: center;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 2.08vw;
  font-style: normal;
  font-weight: 900;
  line-height: 110%;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFF 17.5%, #B2A7F9 91.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.package-left .package-text .grad {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to bottom, #fff, #7019FF);
}
.package-right .package-text .grad {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to bottom, #fff, #D4002A);
}

.left-part:hover .package-left, 
.right-part:hover .package-right {
  transform: scale(1.1) translate(-50%, -50%);
}

.shine {
  mix-blend-mode: color-dodge;
  position: absolute;
  top: 55%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  width: 25vw;
  -webkit-mask-image: radial-gradient(
          circle at center,
          black 60%,
          transparent 75%);
  mask-image: radial-gradient(
          circle at center,
          black 60%,
          transparent 71%);
  opacity: .4;
}
.shine-left {
  left: 28%;
}
.shine-right {
  left: 70%;
}

.handbox.left .left-hand,
.handbox.left .left-part .item,
.handbox.left .hand-left-top,
.handbox.left .package-left,
.handbox.right .right-hand,
.handbox.right .right-part .item,
.handbox.right .hand-right-top,
.handbox.right .package-right
 {
  filter: blur(2px);
  transform: scale(.8) translate(-50%, -50%);
}
.handbox.left .left-part .shine,
.handbox.right .right-part .shine
 {
  opacity: .2;
}
.handbox.left .left-part .item,
.handbox.right .right-part .item {
  animation: none;
}


.text-top {
  position: absolute;
  z-index: 13;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}
.text-top-title {
  padding: 15px 30px;
  width: max-content;
  background:
          linear-gradient(0deg, rgba(11, 11, 11, 0.50) 0%, rgba(11, 11, 11, 0.50) 100%),
          linear-gradient(0deg, rgba(41, 12, 125, 0.00) 0%, rgba(41, 12, 125, 0.00) 100%),
          rgba(255, 255, 255, 0.02);
  border: 0.10vw solid #AEE0FF;
  border-radius: 1.2vw;
  backdrop-filter: blur(0.30vw);
  color: #FFF;
  text-align: center;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 2.5vw;
  font-style: normal;
  font-weight: 800;
  line-height: 3.02vw;
  text-transform: uppercase;
  position: relative;
}
.gradient {
  color: transparent;    
	-webkit-background-clip: text;
	background-clip: text;
	background-image: linear-gradient(to right, #A066FF, #FA4064);
}


.hover-zone {
  cursor: pointer;
  position: absolute;
  width: 34vw;
  height: 30vw;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(255,0,0,0.1);
}
.hover-zone.right {
  left: 50%;
}


.btn-wrap {
  opacity: 0;
  border: unset;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
  z-index: 20;
  text-transform: uppercase;
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.017vw;
  white-space: nowrap;
  border-radius: 1em;
  padding: .8em 2.2em;
  cursor: pointer;
}
.btn-left {
  position: absolute;
  top: 23vw;
  left: 8vw;
  background-color: #6f71ed;
  background-image: radial-gradient(ellipse 50% 90% at 20% 50%, #1f21e2 10%, #875dc100 100%), radial-gradient(ellipse 50% 90% at 80% 50%, #1f21e2 10%, #875dc100 100%);
  box-shadow: 0 .4ex .2ex #1f22e2, inset 0 -.1ex .5ex #6f71ed;
  text-shadow: .1ex .1ex .1ex #1f22e2;
}
.btn-right {
  position: absolute;
  top: 23vw;
  left: 8vw;
  background-color: #ec6668;
  background-image: radial-gradient(ellipse 50% 90% at 20% 50%, #e22124 10%, #875dc100 100%), radial-gradient(ellipse 50% 90% at 80% 50%, #e22124 10%, #875dc100 100%);
  box-shadow: 0 .4ex .2ex #e22124, inset 0 -.1ex .5ex #ec6668;
  text-shadow: .1ex .1ex .1ex #e22124;
}
.left-part:hover .btn-wrap,
.right-part:hover .btn-wrap {
  opacity: 1;
}
.btn-platform,
.btn-open,
.btn-claim,
.btn-login,
.btn-go {
  background-color: #875dc1;
  background-image: radial-gradient(ellipse 50% 90% at 20% 50%, #5d25acff 10%, #875dc100 100%), radial-gradient(ellipse 50% 90% at 80% 50%, #5d25acff 10%, #875dc100 100%);
  box-shadow: 0 .4ex .2ex #4d25b2, inset 0 -.1ex .5ex #916bc7;
  text-shadow: .1ex .1ex .1ex #371a7f;
}
.btn-again {
  background: linear-gradient(271deg, #ffffff00 -29.95%, #ffffff33 51.12%, #ffffff00 105.87%), #616161;
  box-shadow: 0px 0px 18.567px 0px #ffffff78 inset, 0px 5.461px 65.529px 0px #61616100;
  text-shadow: .1ex .1ex .1ex #616161;
}
.btn-platform {
  position: absolute;
  top: 23vw;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 150;
}
.btn-open,
.btn-again,
.btn-claim,
.btn-login,
.btn-go {
  opacity: 1;
}
.platform-box.show .btn-platform {
  transition: opacity 0.5s ease 1s;
  opacity: 1;
}
.btn-open:hover,
.btn-again:hover, 
.btn-claim:hover,
.btn-login:hover,
.btn-go:hover {
  filter: drop-shadow(0 0 1.53vw rgb(122, 76, 187, 0.75));
}
.roll .buttons .random_end {
  display: none;
}
.roll[data-item_show=""] .buttons .btn-claim {
  display: none;
}
.btn-login, 
.btn-go {
  position: relative;
  margin: 0 auto;
  top: 0;
  opacity: 1;
}

.btn-wrap:hover  {
  animation-play-state: paused;
}


.btn-claim {
  display: none;
}
.btn-claim.show,
.random_end + .btn-claim {
  display: block;
}

.btn-text-again {
  display: none;
}
.btn-again .btn-text-again {
  display: block;
}
.btn-again .btn-text-open {
  display: none;
}

@keyframes glowLeft {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(0, 4, 227, 0.5));
  }
  100% {
    transform: scale(1.015);
    filter: drop-shadow(0 0 0.70vw rgba(0, 4, 227, 1));
  }
}

@keyframes glowRight {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(227, 0, 4, 0.5));
  }
  100% {
    transform: scale(1.015);
    filter: drop-shadow(0 0 0.70vw rgba(227, 0, 4, 1));
  }
}

@keyframes glowL {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(122, 76, 187, 0.5));
  }
  100% {
    transform: scale(1.015);
    filter: drop-shadow(0 0 0.70vw rgba(122, 76, 187, 1));
  }
}

.mb {
  display: none;
}


.item {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: transform .3s ease-in-out;
}
.item:hover {
  transform: translate(-50%, -50%) scale(1.05);
  transition: transform .3s ease-in-out;
}
.item-1 {
  left: 61%;
  top: 52%;
  width: 26vw;
  z-index: 12;
}
.item-2 {
  width: 17vw;
  left: 75%;
  top: 55%;
}
.item-3 {
  width: 23vw;
  left: 40%;
  top: 55%;
  z-index: 12;
}
.item-4 {
  width: 16vw;
  left: 29%;
  top: 51%;
}
.item-5 {
  width: 21vw;
  left: 54%;
  top: 52%;
}
.left-part:hover .item-1 {
  animation: leftitemCycle1 6s ease-in-out infinite;
}
.left-part:hover .item-2 {
  animation: leftitemCycle2 6s ease-in-out infinite;
}

@keyframes leftitemCycle1 {
  0%, 100% {
    left: 61%;
    top: 52%;
    width: 26vw;
    z-index: 12;
  }
  50% {
    left: 64%;
    top: 48%;
    width: 22vw;
    z-index: 11;
  }
}

@keyframes leftitemCycle2 {
  0%, 100% {
    left: 75%;
    top: 55%;
    width: 17vw;
    z-index: 11;
  }
  50% {
    left: 47%;
    top: 55%;
    width: 22vw;
    z-index: 12;
  }
}

.right-part:hover .item-3 {
  animation: rightitemCycle1 6s ease-in-out infinite;
}
.right-part:hover .item-4 {
  animation: rightitemCycle2 6s ease-in-out infinite;
}
.right-part:hover .item-5 {
  animation: rightitemCycle3 6s ease-in-out infinite;
}

@keyframes rightitemCycle1 {
  0%, 100% {
    left: 40%;
    top: 55%;
    width: 23vw;
    z-index: 12;
  }
  33% {
    left: 20%;
    top: 48%;
    width: 14vw;
    z-index: 11;
  }
  66% {
    left: 65%;
    top: 47%;
    width: 16vw;
    z-index: 11;
  }
}

@keyframes rightitemCycle2 {
  0%, 100% {
    left: 29%;
    top: 51%;
    width: 16vw;
    z-index: 11;
  }
  33% {
    left: 76%;
    top: 47%;
    width: 21vw;
    z-index: 11;
  }
  66% {
    left: 57%;
    top: 49%;
    width: 25vw;
    z-index: 12;
  }
}

@keyframes rightitemCycle3 {
  0%, 100% {
    left: 54%;
    top: 52%;
    width: 21vw;
    z-index: 11;
  }
  33% {
    left: 37%;
    top: 57%;
    width: 35vw;
    z-index: 12;
  }
  66% {
    left: 20%;
    top: 51%;
    width: 25vw;
    z-index: 11;
  }
}


.tabletop,
.handler {
  margin-top: -5vh;
  min-height: 480px;
  max-width: 100%;
  display: none;
  position: relative;
}
.handler {
  padding-bottom: 10vh;
}
.tabletop {
  min-height: 80vh;
  padding-bottom: 10vh;
}

.tabletop.show,
.handler.show {
  display: block;
}

.note {
  position: relative;
  padding: 2vh 0;
  margin: 0 auto;
  color: #fff;
  font-size: 1vw;
  width: max-content;
  font-weight: normal;
}

.handbox .note {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  top: auto;
  bottom: 11vh;
}

.platform-wrap {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  gap: 5vw;
}
.tabletop-wrap {
  padding-top: 2vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  gap: 5vw;
}


.tabletop-ad {
  position: relative;
  width: 13vw;
  height: 8.04vw;
  padding: 0 3vw;
  will-change: opacity, transform;
  transform: translate3d(0, 70%, 0);
  opacity: 0;
  text-decoration: none;
  border-radius: 1.2vw;
  z-index: 10;
  cursor: pointer;
  box-shadow: rgba(12, 7, 37, 0.02) 0px 7rem 2.3rem 0px, rgba(12, 7, 37, 0.1) 0px 4.5rem 2.1rem 0px, rgba(12, 7, 37, 0.3) 0px 2.5rem 1.7rem 0px, rgba(12, 7, 37, 0.4) 0px 1.1rem 1.3rem 0px, rgba(12, 7, 37, 0.6) 0px 0.3rem 0.7rem 0px;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(66, 138, 240);
  border-image: initial;
  background: radial-gradient(115.96% 111.07% at 50.31% 0%, rgba(66, 138, 240) 0%, rgba(26, 26, 26, 0) 100%), 
            linear-gradient(rgba(26, 26, 26) 0%, rgba(14, 14, 14) 100%);
  transition: box-shadow 0.22s ease-out, opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}
.tabletop.show .tabletop-ad {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.tabletop-ad:hover, .tabletop-ad.show  {
  box-shadow: 0 0 17rem 0 rgba(66, 138, 240, 0.2), 0 0 14rem 0 rgba(66, 138, 240, 0.3), 0 0 11rem 0 rgba(66, 138, 240, 0.4), 0 0 9rem 0 rgba(66, 138, 240, 0.6), 0 0 6rem 0 rgba(66, 138, 240, 0.7), 0 0 4rem 0 rgba(66, 138, 240, 0.8);
}
.tabletop-ad-img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  position: relative;
  display: block;
  transform: scale(1);
  transition: 1s;
  z-index: 10;
}
.tabletop-ad:hover .tabletop-ad-img {
  position: relative;
  transform: scale(1.1);
}


.platform {
  width: 65vw;
  height: 30vw;
  background: url(/images/platform-2.avif) no-repeat center center;
  background-size: 55% auto;
  position: relative;
  margin: 0 auto;
  z-index: 100;
}
.platform::before {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 10%;
  background: radial-gradient(circle at center,    rgba(66, 66, 255, 0.85),    rgba(138, 43, 226, 0.65) 40%, transparent 100%);
  filter: blur(18px);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
  animation: glowPulseBottom 4s ease-in-out infinite;
}
.platform::after {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 20%;
  background: radial-gradient(circle at center,
    rgba(66, 66, 255, 0.85),
    rgba(138, 43, 226, 0.65) 40%,
    rgba(255, 140, 0, 0.5) 75%,
    transparent 100%);
  filter: blur(18px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}
@keyframes glowPulseBottom {
  0%, 100% {
    opacity: 0.8;
    transform: translateX(-50%);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%);
  }
}

.platform-box {
  width: 36%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 36%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
  opacity: 0;
}
.platform-box.show {
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  animation-duration: 1.1s;
  animation-name: fly;
} 
.platform-box-img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  position: relative;
  display: block;
  transform: scale(1);
  transition: 1s;
  z-index: 10;
}
.platform-items {
  width: 9vh;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(0, -50%) rotate(0deg);
  z-index: 102;
}

.platform-item {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, -50%) rotate(0deg);
  width: 9vw;
  height: 9vw;
  opacity: 0;
}
.platform-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 2px solid #7d82eb;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 80%);
  mask-image: linear-gradient(to left, transparent 0%, black 80%);
  background: radial-gradient(circle, rgba(64, 146, 230, 1), rgba(113, 22, 244, .6) 100%);
  /*background: radial-gradient(circle, rgba(240, 205, 179, 1), rgba(240, 205, 179, 0.6) 70%);*/
  display: block;
  opacity: .7;
}
.platform-item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(80% - 2px);
  height: calc(80% - 2px);
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: #ee7e2a;
  transform-origin: center;
  z-index: 26;
  display: block;
  opacity: .7;
}
.platform-item img {
  position: relative;
  z-index: 30;
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.platform-box.show .platform-item {
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  animation-duration: 1.1s;
  animation-delay: 0.5s;
}
.platform-box-1.show .platform-item-1 {
  animation-name: flyDrop11;
}
.platform-box-1.show .platform-item-2 {
  animation-name: flyDrop12;
}
.platform-box-1.show .platform-item-3 {
  animation-name: flyDrop13;
}
.platform-box-1.show .platform-item-4 {
  animation-name: flyDrop14;
}
.platform-box-1.show .platform-item-5 {
  animation-name: flyDrop15;
}

.platform-box-2.show .platform-item-1 {
  animation-name: flyDrop21;
}
.platform-box-2.show .platform-item-2 {
  animation-name: flyDrop22;
}
.platform-box-2.show .platform-item-3 {
  animation-name: flyDrop23;
}
.platform-box-2.show .platform-item-4 {
  animation-name: flyDrop24;
}
.platform-box-2.show .platform-item-5 {
  animation-name: flyDrop25;
}

.platform-box-3.show .platform-item-1 {
  animation-name: flyDrop31;
}
.platform-box-3.show .platform-item-2 {
  animation-name: flyDrop32;
}
.platform-box-3.show .platform-item-3 {
  animation-name: flyDrop33;
}
.platform-box-3.show .platform-item-4 {
  animation-name: flyDrop34;
}
.platform-box-3.show .platform-item-5 {
  animation-name: flyDrop35;
}

@keyframes fly {
  0% {
    transform: translate(-50%, -80%);
    opacity: 0;
  }
  35% {
    transform: translate(-50%, -50%);
    opacity: 0.5;
  }
  45% {
    transform: translate(-50%, -60%);
    opacity: 1;
  }
  65% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  85% {
    transform: translate(-50%, -55%);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes flyDrop11 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  25% {
    transform: translate(-28vw, -25vh) rotate(250deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(-28vw, -44%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes flyDrop12 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  46% {
    transform: translate(-25vw, -46vh) rotate(5deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(-25vw, 51%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes flyDrop13 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  22% {
    transform: translate(17vw, -22vh) rotate(205deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(17vw, 79%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes flyDrop14 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  34% {
    transform: translate(12vw, -34vh) rotate(200deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(12vw, -65%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes flyDrop15 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  38% {
    transform: translate(20vw, -38vh) rotate(105deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(20vw, -20%) rotate(360deg);
    opacity: 1;
  }
}






@keyframes flyDrop21 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  47% {
    transform: translate(-29vw, -47vh) rotate(250deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(-29vw, 12%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes flyDrop22 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  32% {
    transform: translate(-22vw, -32vh) rotate(5deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(-22vw, -52%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes flyDrop23 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  51% {
    transform: translate(16vw, -51vh) rotate(205deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(16vw, 83%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes flyDrop24 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  26% {
    transform: translate(22vw, -26vh) rotate(200deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(22vw, 33%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes flyDrop25 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  21% {
    transform: translate(17vw, -21vh) rotate(105deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(17vw, -43%) rotate(360deg);
    opacity: 1;
  }
}





@keyframes flyDrop31 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  47% {
    transform: translate(-22vw, -47vh) rotate(250deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(-22vw, -45%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes flyDrop32 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  32% {
    transform: translate(-29vw, -32vh) rotate(5deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(-29vw, -9%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes flyDrop33 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  51% {
    transform: translate(19vw, -51vh) rotate(205deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(19vw, 79%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes flyDrop34 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  26% {
    transform: translate(12vw, -26vh) rotate(200deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(12vw, -57%) rotate(360deg);
    opacity: 1;
  }
}
@keyframes flyDrop35 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  21% {
    transform: translate(17vw, -21vh) rotate(105deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(17vw, -6%) rotate(360deg);
    opacity: 1;
  }
}





.hand-title {
  position: relative;
  text-align: center;
  
}
.hand-title-text {
  display: inline;
  color: #fff;
  text-align: center;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 2vw;
  font-weight: 400;
  text-transform: uppercase;
}
.hand-title-text:before, .hand-title-text:after {
  content: "";
  margin: .5vw 1vw;
  width: .5vw;
  height: .5vw;
  border-radius: 50%;
  background: #f8865c;
  display: inline-block;
}







.in-handler {
  padding-top: 5vw;
}
.in-handler-box {
  max-width: 86vw;
  margin: 2vw auto 0;
  padding: 0 2vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: .6vw;
}
.handler-item {
  position: relative;
  width: 10.729vw;
  height: 12.344vw;
  padding: 0.417vw;
  border-radius: 1.2vw;
  border: 2px solid #428af050;
  background: radial-gradient(115.96% 111.07% at 50.31% 0%, rgba(66, 138, 240, 50%) 0%, rgba(26, 26, 26, 0) 100%), 
            linear-gradient(rgba(26, 26, 26, 50%) 0%, rgba(14, 14, 14) 100%);
  box-shadow: rgba(12, 7, 37, 0.02) 0px 7rem 2.3rem 0px, rgba(12, 7, 37, 0.1) 0px 4.5rem 2.1rem 0px, rgba(12, 7, 37, 0.3) 0px 2.5rem 1.7rem 0px, rgba(12, 7, 37, 0.4) 0px 1.1rem 1.3rem 0px, rgba(12, 7, 37, 0.6) 0px 0.3rem 0.7rem 0px;
  flex-shrink: 0;
  cursor: pointer;
}
.roll .handler-item {
  cursor: pointer;
}
.in-handler .handler-item:hover {
  border: 1px solid #afafaf;
  border: 2px solid #428af0;
  background: radial-gradient(115.96% 111.07% at 50.31% 0%, rgba(66, 138, 240, 90%) 0%, rgba(26, 26, 26, 0) 100%), 
            linear-gradient(rgba(26, 26, 26, 90%) 0%, rgba(14, 14, 14) 100%);
  box-shadow: rgba(12, 7, 37, 0.02) 0px 7rem 2.3rem 0px, rgba(12, 7, 37, 0.1) 0px 4.5rem 2.1rem 0px, rgba(12, 7, 37, 0.3) 0px 2.5rem 1.7rem 0px, rgba(12, 7, 37, 0.4) 0px 1.1rem 1.3rem 0px, rgba(12, 7, 37, 0.6) 0px 0.3rem 0.7rem 0px;
  transition: all .3s ease-in;
  transform: scale(1.03);
}
.handler-item-light {
  border: 1px solid #afafaf;
  background: #090e1e66;
  box-shadow: 0px 10px 47.4px 0px #ff875766, 0px 0px 20px 0px #5671fe33 inset;
}
.handler-item-content {
  z-index: 80;
  width: 100%;
  padding-bottom: .7vw;
  display: flex;
  flex-direction: column;
  gap: .4vw;
  justify-content: center;
}
.roll .handler-item-content {
  padding-bottom: 1.5vw;
}
.handler-item-type {
  color: #4b4b4b;
  text-align: center;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: .625vw;
  line-height: 1;
}
.handler-item-name {
  color: #fff;
  text-align: center;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: .729vw;
  line-height: 1;
}
.handler-item-cat {
  color: #4b4b4b;
  text-align: center;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: .625vw;
  line-height: 1;
}
.handler-item-cost {
  margin-top: .2vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-handler-items: center;
  align-content: center;
  gap: .4vw;
}
.handler-item-cost-text {
  color: #fc9a74;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: .729vw;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.handler-item-cost:before {
  content: "";
  width: 0.781vw;
  height: 0.781vw;
  display: inline-block;
  background: url("/images/cost.png") no-repeat center center;
  background-size: contain;
}
.roll .handler-item-cost {
  position: absolute;
  top: .5vw;
  right: .5vw;
  z-index: 88;
  margin-top: 0;
  padding: .2vw .4vw;
  border-radius: 1vw;
  background: #0e3f82;
  box-shadow: 0px 0px 18.371px 0px #ffffff78 inset, 0px 5.403px 28px 0px #ffaa3333;
  gap: .2vw;
}
.roll .handler-item-cost-text {
  color: #fff;
}
.handler-item-pic {
  width: 100%;
  padding-top: .5vw;
  position: relative;
  z-index: 80;
}
.handler-item-pic:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 49;
  height: 2vw;
  width: 2vw;
  border-radius: 50%;
  background: #db3736;
  filter: blur(1vw);
  transform: translate(-50%, -50%);
  opacity: .7;
}
.handler-item-pic:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 50;
  height: 4vw;
  width: 4vw;
  border-radius: 50%;
  border-right: 1px solid #db3736;
  border-bottom: 1px solid #db3736;
  transform: translate(-50%, -50%);
  opacity: .7;
}
.light-rarity-Ancient:before {
  background-color: #db3736;
}
.light-rarity-Ancient:after {
  border-color: #db3736;
}
.light-rarity-Legendary:before {
  background-color: #ff3c7b;
}
.light-rarity-Legendary:after {
  border-color: #ff3c7b;
}
.light-rarity-Mythical:before {
  background-color: #6c31e9;
}
.light-rarity-Mythical:after {
  border-color: #6c31e9;
}
.light-rarity-Rare:before {
  background-color: #353dff;
}
.light-rarity-Rare:after {
  border-color: #353dff;
}
.light-rarity-Immortal:before {
  background-color: #d29827;
}
.light-rarity-Immortal:after {
  border-color: #d29827;
}
.handler-item-pic img {
  width: 80%;
  height: auto;
  position: relative;
  z-index: 51;
  margin: 0 auto;
  display: block;
}

.roll-wrapper {
  width: 80vw;
  padding: 0 4vw;
  margin: 4vw auto 0;
  position: relative;
}
.roll-wrapper::after,
.roll-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 110;
  width: 4vw;
  height: 100%;
  background: url(/images/arrow.svg) no-repeat top center;
  background-size: 100% auto;
  flex-shrink: 0;
  cursor: pointer;
}
.roll-wrapper::before {
  left: 0;
}
.roll-wrapper::after {
  background: url(/images/arrow.svg) no-repeat bottom center;
  background-size: 100% auto;
  right: 0;
  transform: scale(-1);
}

.roll {
  width: 72vw;
  margin: 0 auto;
  position: relative;
  padding: 2px 0;
  box-sizing: border-box;
}

.roll .bar-wrapper {
  position: relative;
  width: 100%;
  height: 12.344vw;
  overflow: hidden;
}
.roll .bar-wrapper:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 1.6vw;
  background: url(../images/arrow-highlight.svg) no-repeat center top;
  background-size: auto 100%;
  transform: scale(-1);
  z-index: 100;
}
.roll .bar-wrapper:after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 11vw;
  height: 2px;
  background: linear-gradient(90deg, #87493400 0%, #d16d3c 50.2%, #87493400 100%);
  z-index: 100;
}
.roll-view-highlighter-bottom {
    margin: 0 auto;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.6vw;
    background: url(../images/arrow-highlight.svg) no-repeat center top;
    background-size: auto 100%;
    z-index: 100;
}


.img-roll {
  display: block;
  max-height: 100%;
  max-width: 100%;
  display: block;
  transition: all .5s ease-in;
  transform: translate(-50%, -20%) scale(1.1);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 200;
}
.roll-wrapper.show .img-roll {
  display: none;
}
.bar {
  display: none;
}
.roll-wrapper.show .bar {
  display: block;
}
.roll .bar {
  transform: translateX(0);
}
.roll .elements {
  display: flex;
  gap: .6vw;
  overflow: visible;
  transform: translateX(0);
  transform: translateX( calc( (-10.729vw*(var(--items-count--left,0) + var(--random-num--left,0) + 0.5 )) - (0.6vw*(var(--items-count--left,0) + var(--random-num--left,0))) + 36vw ) )
}

.roll .bar:not(.first) .handler-item.show {
  border: 1px solid #afafaf;
  border: 2px solid #428af0;
  background: radial-gradient(115.96% 111.07% at 50.31% 0%, rgba(66, 138, 240, 90%) 0%, rgba(26, 26, 26, 0) 100%), 
            linear-gradient(rgba(26, 26, 26, 90%) 0%, rgba(14, 14, 14) 100%);
  box-shadow: rgba(12, 7, 37, 0.02) 0px 7rem 2.3rem 0px, rgba(12, 7, 37, 0.1) 0px 4.5rem 2.1rem 0px, rgba(12, 7, 37, 0.3) 0px 2.5rem 1.7rem 0px, rgba(12, 7, 37, 0.4) 0px 1.1rem 1.3rem 0px, rgba(12, 7, 37, 0.6) 0px 0.3rem 0.7rem 0px;
  transition: all .3s ease-in;
}

.roll .bar.first {
  animation: efirst 1s linear 6 forwards, efirst 1.5s ease-out 4.5s 1 forwards;
}

@keyframes efirst {
  0% { transform: translateX(0); }
  100% { 
    transform: translateX( calc( (-10.729vw*var(--items-count--left,0)) - (.6vw*(var(--items-count--left,0) - 1)) ) );
  }
}

.roll .buttons {
  display: flex;
  gap: 2vw;
  align-items: center;
  justify-content: center;
  padding: 4vw 0 0;
}
/* roll */


.popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  background: #00000090;
  filter: sepia(1);
  overflow: hidden;
  display: none;
}
.popup-wrap.show {
  display: block;
}
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: 60vw;
  padding: 2vw;
  border-radius: 2vw;
  border: 2px solid #252525;
  background: linear-gradient(150deg, #ffce6520 0%, #0b0d15 20%), #0b0d15;
  box-shadow: 0px 10px 80px 0px #4b3d2340;
  display: none;
}
.popup.show {
  display: block;
}
.popup-box {
  display: flex;
}
.popup-pic-wrap {
  width: 20vw;
}
.popup-pic {
  width: 100%;
  padding: 20px;
  position: relative;
}
.popup-pic img {
  max-width: 100%;
  position: relative;
  display: block;
  margin: 0 auto;
  z-index: 51;
}
.popup-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
.popup-title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 2.2vw;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.popup-text {
  color: #fff;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 1.8vw;
  font-weight: 700;
  line-height: 1;
}
.popup-reward-text {
  color: #fff;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 1;
}





@media (max-width: 767px) {
  .text-top-title {
    width: 83vw;
    background: transparent;
    font-size: 4.5vw;
    line-height: 1.5;
    padding: 8vw 0;
    border: none;
  }
  .text-top-title .gradient {
    font-size: 5.6vw;
  }
  .handbox {
    height: 80vh;
    flex-direction: column;
    gap: 1vw;
    padding-bottom: 10vw;
  }
  .handbox .note {
    font-size: 3vw;
    bottom: 4vw;
  }
  .left-part, .right-part {
    width: 100%;
  }
  .left-part .package {
    width: 100%;
    height: 18vw;
    transform: none;
    left: 0;
    left: auto;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    top: 10vw;
  }
  .left-part .package-text {
    font-size: 5.2vw;
    position: absolute;
    top: 2vw;
    right: 5vw;
    text-align: right;
  }
  .left-part .shine {
    width: 65vw;
    left: 20%;
  }
  .left-part .hand {
    left: 5%;
    top: 5vw;
    width: 55vw;
    transform: none;
  }
  .hand-left-top {
    left: 5%;
    top: 5vw;
    width: 55vw;
    transform: none;
  }
  .left-part .item-1 {
    width: 53vw;
    left: 5%;
    top: 7vw;
    transform: none;
  }
  .left-part .item-1 {
    animation: leftitemCycle1M 6s ease-in-out infinite;
  }
  @keyframes leftitemCycle1M {
    0%, 100% {
      width: 53vw;
      left: 5%;
      top: 7vw;
    }
    50% {
      width: 50vw;
      left: 10%;
      top: 5vw;
    }
  }

  .right-part .package {
    width: 100%;
    height: 18vw;
    transform: none;
    left: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    top: 10vw;
  }
  .right-part .package-text {
    font-size: 5.2vw;
    position: absolute;
    top: 2vw;
    left: 5vw;
    text-align: left;
  }
  .right-part .shine {
    width: 65vw;
    right: 20%;
  }
  .right-part .hand {
    left: auto;
    right: 5%;
    top: 5vw;
    width: 55vw;
    transform: none;
  }
  .hand-right-top {
    left: auto;
    right: 5%;
    top: 5vw;
    width: 55vw;
    transform: none;
  }
  .right-part .item-3 {
    width: 53vw;
    left: 35%;
    top: 7vw;
    transform: none;
  }
  .right-part .item-4 {
    width: 55vw;
    left: 35%;
    top: 7vw;
    transform: none;
  }
  .right-part .item-5 {
    width: 45vw;
    left: 65%;
    top: 7vw;
    transform: none;
  }
  .right-part .item-3 {
    animation: rightitemCycle3M 6s ease-in-out infinite;
  }
  .right-part .item-4 {
    animation: rightitemCycle4M 6s ease-in-out infinite;
  }
  .right-part .item-5 {
    animation: rightitemCycle5M 6s ease-in-out infinite;
  }
  @keyframes rightitemCycle3M {
    0%, 100% {
      left: 35%;
      top: 7vw;
      width: 53vw;
      z-index: 12;
    }
    33% {
      left: 45%;
      top: 10vw;
      width: 50vw;
      z-index: 11;
    }
    66% {
      left: 55%;
      top: 5vw;
      width: 45vw;
      z-index: 11;
    }
  }
  @keyframes rightitemCycle4M {
    0%, 100% {
      left: 35%;
      top: 5vw;
      width: 50vw;
      z-index: 11;
    }
    33% {
      left: 40%;
      top: 8vw;
      width: 45vw;
      z-index: 11;
    }
    66% {
      left: 45%;
      top: 3vw;
      width: 55vw;
      z-index: 12;
    }
  }
  @keyframes rightitemCycle5M {
    0%, 100% {
      left: 45%;
      top: 10vw;
      width: 45vw;
      z-index: 11;
    }
    33% {
      left: 40%;
      top: 15vw;
      width: 50vw;
      z-index: 12;
    }
    66% {
      left: 35%;
      top: 5vw;
      width: 45vw;
      z-index: 11;
    }
  }

  .btn-left {
    opacity: 1;
    left: auto;
    right: 8vw;
    top: 35vw;
  }
  .btn-right {
    opacity: 1;
    top: 35vw;
  }

  .hand-title-text {
    font-size: 5vw;
  }
  .hand-title-text:before, 
  .hand-title-text:after {
    margin: 1.5vw 1vw;
    width: 1.5vw;
    height: 1.5vw;
  }
  .tabletop {
    margin-top: 0;
  }
  .platform {
    margin: 5vh auto 3vh;
    width: 100vw;
    height: 70vw;
    background-size: 85% auto;
  }
  .platform-box {
    width: 60%;
  }
  .tabletop-wrap {
    padding-top: 10vw;
  }
  .tabletop-ad {
    width: 22vw;
    height: 13.6vw;
  }

  .platform-item {
    width: 20vw;
    height: 20vw;
  }

  .platform-box-1.show .platform-item-1 {
    animation-name: flyDrop11M;
  }
  .platform-box-1.show .platform-item-2 {
    animation-name: flyDrop12M;
  }
  .platform-box-1.show .platform-item-3 {
    animation-name: flyDrop13M;
  }
  .platform-box-1.show .platform-item-4 {
    animation-name: flyDrop14M;
  }
  .platform-box-1.show .platform-item-5 {
    animation-name: flyDrop15M;
  }
  @keyframes flyDrop11M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    25% {
      transform: translate(-28vw, -25vh) rotate(250deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(-28vw, -182%) rotate(360deg);
      opacity: 1;
    }
  }
  @keyframes flyDrop12M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    46% {
        transform: translate(-45vw, -46vh) rotate(5deg);
        opacity: 0.8;
    }
    100% {
        transform: translate(-45vw, -137%) rotate(360deg);
        opacity: 1;
    }
  }
  @keyframes flyDrop13M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    22% {
      transform: translate(30vw, -22vh) rotate(205deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(30vw, -60%) rotate(360deg);
      opacity: 1;
    }
  }
  @keyframes flyDrop14M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    34% {
      transform: translate(20vw, -34vh) rotate(200deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(20vw, -145%) rotate(360deg);
      opacity: 1;
    }
  }
  @keyframes flyDrop15M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    38% {
      transform: translate(0vw, -38vh) rotate(105deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(0vw, -186%) rotate(360deg);
      opacity: 1;
    }
  }

  .platform-box-2.show .platform-item-1 {
    animation-name: flyDrop21M;
  }
  .platform-box-2.show .platform-item-2 {
    animation-name: flyDrop22M;
  }
  .platform-box-2.show .platform-item-3 {
    animation-name: flyDrop23M;
  }
  .platform-box-2.show .platform-item-4 {
    animation-name: flyDrop24M;
  }
  .platform-box-2.show .platform-item-5 {
    animation-name: flyDrop25M;
  }
  @keyframes flyDrop21M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    47% {
      transform: translate(-48vw, -47vh) rotate(250deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(-48vw, -75%) rotate(360deg);
      opacity: 1;
    }
  }
  @keyframes flyDrop22M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    32% {
      transform: translate(-34vw, -32vh) rotate(5deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(-34vw, -179%) rotate(360deg);
      opacity: 1;
    }
  }
  @keyframes flyDrop23M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    51% {
      transform: translate(-8vw, -51vh) rotate(205deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(-8vw, -195%) rotate(360deg);
      opacity: 1;
    }
  }
  @keyframes flyDrop24M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    26% {
      transform: translate(12vw, -26vh) rotate(200deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(12vw, -210%) rotate(360deg);
      opacity: 1;
    }
  }
  @keyframes flyDrop25M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    21% {
      transform: translate(29vw, -21vh) rotate(105deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(29vw, -130%) rotate(360deg);
      opacity: 1;
    }
  }

  .platform-box-3.show .platform-item-1 {
    animation-name: flyDrop31M;
  }
  .platform-box-3.show .platform-item-2 {
    animation-name: flyDrop32M;
  }
  .platform-box-3.show .platform-item-3 {
    animation-name: flyDrop33M;
  }
  .platform-box-3.show .platform-item-4 {
    animation-name: flyDrop34M;
  }
  .platform-box-3.show .platform-item-5 {
    animation-name: flyDrop35M;
  }
  @keyframes flyDrop31M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    47% {
      transform: translate(-50vw, -47vh) rotate(250deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(-50vw, -47%) rotate(360deg);
      opacity: 1;
    }
  }
  @keyframes flyDrop32M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    32% {
      transform: translate(-37vw, -32vh) rotate(5deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(-37vw, -159%) rotate(360deg);
      opacity: 1;
    }
  }
  @keyframes flyDrop33M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    51% {
      transform: translate(-15vw, -51vh) rotate(205deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(-15vw, -172%) rotate(360deg);
      opacity: 1;
    }
  }
  @keyframes flyDrop34M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    26% {
      transform: translate(6vw, -26vh) rotate(200deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(6vw, -187%) rotate(360deg);
      opacity: 1;
    }
  }
  @keyframes flyDrop35M {
    0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
    }
    21% {
      transform: translate(22vw, -21vh) rotate(105deg);
      opacity: 0.8;
    }
    100% {
      transform: translate(22vw, -88%) rotate(360deg);
      opacity: 1;
    }
  }

  .tabletop, .handler {
    margin-top: 0;
    padding-top: 6vw;
  }

  .note {
    font-size: 4vw;
    width: 80%;
    text-align: center;
  }

  .roll-wrapper {
    padding: 0;
    margin-top: 6vw;
    width: 90vw;
    max-width: 100%;
  }
  .roll-wrapper::after, 
  .roll-wrapper::before {
    display: none;
  }
  .img-roll {
    max-width: 80%;
    transform: translate(-50%, 0) scale(1.1);
  }
  .roll {
      width: 90vw;
  }
  .roll .bar-wrapper {
    height: 49.47vw;
  }
  .roll .bar {
    height: 49.47vw;
  }
  .in-handler {
    padding-top: 20vw;
  }
  .handler-item {
    padding: 2vw;
    width: 43vw;
    height: 49.47vw;
    border-radius: 4.5vw;
  }
  .handler-item-pic {
    padding-top: 2vw;
  }
  .roll .handler-item-content {
    padding-bottom: 6vw;
    gap: 2vw;
  }
  .handler-item-type {
    font-size: 3vw;
  }
  .handler-item-name {
    font-size: 3vw;
  }
  .handler-item-cat {
    font-size: 3vw;
  }
  .handler-item-cost {
    gap: 1.5vw;
  }
  .roll .handler-item-cost {
    padding: 1vw 1.5vw;
    border-radius: 2vw;
    top: 2vw;
    right: 2.5vw;
  }
  .handler-item-cost-text {
    font-size: 3vw;
  }
  .handler-item-cost:before {
    content: "";
    width: 3vw;
    height: 3vw;
  }

  .roll .bar-wrapper:before {
    height: 10vw;
  }
  .roll .bar-wrapper:after {
    width: 60vw;
  }
  .roll-view-highlighter-bottom {
    height: 10vw;  
  }

  .roll .buttons {
    padding: 10vw 0 0;
  }
  .in-handler-box {
    max-width: 100%;
    gap: 3vw;
  }
  .roll .elements {
    gap: 3vw;
    transform: translateX(0);
    transform: translateX( calc( (-43vw*(var(--items-count--left,0) + var(--random-num--left,0) + 0.5 )) - (3vw*(var(--items-count--left,0) + var(--random-num--left,0))) + 45vw ) );
  }

  @keyframes efirst {
    0% { transform: translateX(0); }
    100% { 
      transform: translateX( calc( (-43vw*var(--items-count--left,0)) - (3vw*(var(--items-count--left,0) - 1)) ) );
    }
  }

  .btn-platform {
    top: 28vh;
  }
  .popup {
    width: 90vw;
    padding: 10vw 5vw;
  }
  .popup-box {
    display: block;
  }
  .popup-pic-wrap {
    margin: 0 auto;
    width: 60%;
  }
  .popup-title {
    font-size: 6.2vw;
  }
  .popup-reward-text {
    font-size: 5.3vw;
  }
  .popup-text {
    font-size: 5.8vw;
  }
  .btn-wrap {
    font-size: 5vw;
  }
  .btn-login, .btn-go {
    margin: 10vw auto 0;
  }

}

/* ------ */





/* general */
.text-orange {
  color: #f8865c;
}
.body {
  background: #000;
}
.main {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/images/bg.jpg") no-repeat top center;
  background-color: #000;
  background-size: 100% auto;
  transition: filter 0.5s ease-in-out;
}
.body:hover .bg {
  filter: brightness(.5);
}

.content {
  padding-bottom: 47px;
  position: relative;
  width: 100%;
}

.upper {
  text-transform: uppercase;
}

/* terms */
.terms {
  width: 100%;
  max-width: 74vw;
  padding-top: 150px;
  margin: 0 auto;
  color: #fff;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
.terms h1 {
  color: #fff;
  text-align: center;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.terms h1:after {
  content: "";
  position: relative;
  width: 12.813vw;
  height: 1px;
  display: block;
  background: linear-gradient(90deg, #87493400 0%, #ed805b 50.2%, #87493400 100%);
  border: none;
  margin: 20px auto 60px;
}
.terms h2 {
  margin: 40px 0 20px;
  color: #c97c6b;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
.terms h3 {
  margin: 30px 0 10px;
  color: #fff;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.terms:selection {
  background-color: #5baef1;
}
.terms :is(li, p) {
  margin: 5px 0;
}
.terms strong {
  font-weight: 600;
}
.terms ol {
  list-style-type: decimal;
  padding-left: 4vw;
}
.terms ul {
  list-style-type: disc;
  padding-left: 4vw;
}
/* /terms */

/* header */
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 2vw 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-logo {
  display: inline-grid;
  align-self: center;
}
.header-logo-img {
  width: 12vw;
}
.btn-transparent,
.btn-transparent:visited {
  background: transparent;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.btn-transparent:hover,
.btn-transparent:visited:hover {
  text-decoration: underline;
}
/* /header */

/* footer */
.eighteen {
  width: 1.6vw;
  height: 1.6vw;
  margin: -.5vw 0 0 auto;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #78758c;
  text-align: center !important;
  color: #78758c;
  font-size: .7vw;
  line-height: 1.6vw;
}

.footer {
  width: 100%;
  position: relative;
  z-index: 3;
  margin: auto auto 0;
  background: #111;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: .75vw;
  line-height: 1.7;
}
.footer-container {
  padding: 3.13vw 8vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  gap: 1.04vw;
}
.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 1.04vw;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  gap: 1.04vw;
}
.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 1.04vw;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  gap: 1.04vw;
}
.footer-left {
  padding-left: 5.21vw;
  padding-right: 1.56vw;
  position: relative;
  text-align: left;
}
.footer-right {
  position: relative;
  text-align: right;
}
.footer-right div {
  text-align: right;
}
.footer-copy {
  display: block;
  color: #fff;
}
.footer-logo {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 3.41vw;
  height: 3.15vw;
  background: url("/images/logo-mb.png") no-repeat center center;
  background-size: auto 100%;
  opacity: .5;
  filter: grayscale(1);
}
.footer-about {
  color: #78758c;
  text-align: left;
}
.footer-info {
  color: #4d4a64;
  text-align: left;
}
.footer-info a {
  display: inline;
  color: #78758c;
}
.footer-rules {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.footer-rules.mb {
  display: none;
}
.footer-rules.dk {
  display: flex;
  gap: 1vw;
}
.footer-rules-box {
  display: flex;
  position: relative;
  gap: 1.4vw;
}
.footer-rules a,
.footer-rules a:visited {
  text-transform: uppercase;
  color: #a249f5;
  font-size: .6vw;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all .5s ease-in;
}
.footer-rules a:hover {
  opacity: 0.7;
}
/* /footer */

/* lang */
.lang-selector {
  position: relative;
  display: inline-block;
  margin-left: auto;
}
.lang-button {
  display: flex;
  align-items: center;
  gap: 0.42vw;
  border-radius: 0.42vw;
  cursor: pointer;
}
.chevron {
  width: .6vw;
  height: .6vw;
  transition: all .5s ease-in;
}
.lang-selector.open .chevron {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 0.21vw;
  border-radius: 0.42vw;
  display: none;
  z-index: 10;
}
.lang-selector.open .lang-dropdown {
  display: block;
}
.lang-button-block {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.42vw;
}
.lang-option, .lang-button {
  border-radius: 0.42vw;
  cursor: pointer;
}
.lang-option:before, .lang-button:before {
  width: 2vw;
  display: block;
  height: auto;
}
.lang-flag-en:before {
  content: url("/images/gb.svg");
}
.lang-flag-pl:before {
  content: url("/images/pl.svg");
}
.lang-flag-tr:before {
  content: url("/images/tr.svg");
}
/* /lang */

/* COOKIES */
.cookies-policy-banner {
  background: #00000080 center -3.96vw;
  bottom: 0;
  height: auto;
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 200;
  color: #fff;
  font-weight: 400;
}
.cookies-policy-banner__inner-wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 59.54vw;
  padding: 0 0.78vw 0.52vw;
}
.cookies-policy-banner__text-block {
  display: flex;
  max-width: 49.29vw;
  width: 100%;
}
.cookies-policy-banner__text-block .icon-wrap {
  max-height: 5.21vw;
}
.cookies-policy-banner__text-block .text {
  align-content: baseline;
  display: flex;
  flex-wrap: wrap;
  margin-left: 1.56vw;
  max-width: 58.85vw;
}
.cookies-policy-banner__text-block .text .title {
  font-size: 1.15vw;
  font-weight: 700;
  margin-top: 0.78vw;
}
.cookies-policy-banner__text-block .text p {
  color: #ccabd8;
  text-align: left;
  line-height: 1.3vw;
  font-size: 0.78vw;
  margin: 0.26vw 0;
  font-weight: 400;
}
.cookies-policy-banner__text-block .text p a {
  color: #a560ff;
  display: inline;
  margin-left: .1vw;
}
.cookies-policy-banner__button-block {
  align-items: center;
  display: flex;
  flex-grow: 1;
  height: 100%;
  justify-content: center;
}
.cookies-policy-banner__button-block .accept-cookie-button {
  align-items: center;
  background-color: #5c49d0;
  -webkit-clip-path: polygon(0.63vw 0, calc(100% - 0.63vw) 0, 100% 50%, calc(100% - 0.63vw) 100%, 0.63vw 100%, 0 50%);
  clip-path: polygon(0.63vw 0, calc(100% - 0.63vw) 0, 100% 50%, calc(100% - 0.63vw) 100%, 0.63vw 100%, 0 50%);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.83vw;
  font-weight: 700;
  height: 2.92vw;
  justify-content: center;
  min-width: 7.81vw;
  padding: 0 0.78vw;
  text-transform: uppercase;
  transition: all .5s ease-in;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: unset;
  border: none;
  position: relative;
}
.button__content {
  align-items: center;
  display: flex;
  flex-direction: row;
}
.img-cookies {
  width: 5.76vw;
  height: 6.77vw;
}
.cookies-policy-banner__button-block .accept-cookie-button .check-icon {
  background-color: #fff;
  display: inline-block;
  height: 0.68vw;
  margin-left: 0.52vw;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M20 4.095 17.986 2 7.554 12.848 2.014 7.05 0 9.145 7.554 17z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M20 4.095 17.986 2 7.554 12.848 2.014 7.05 0 9.145 7.554 17z'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  width: 0.94vw;
}
/* COOKIES */


.mb {
  display: none;
}

@media (max-width: 767px) {
  .dk {
    display: none;
  }
  .mb {
    display: block;
  }
  .header {
    padding: 4vw 8vw 0;
  }
  .header .btn-login {
    height: 8vw;
    border-radius: 4vw;
    font-size: 3.5vw;
    line-height: 8vw;
  }
  .header-logo-img {
    width: 10vw;
  }
  
  .cookies-policy-banner {
    height: auto;
  }
  .cookies-policy-banner__inner-wrapper {
    flex-direction: column;
    padding: 10px 20px;
    max-width: 400px;
  }
  .cookies-policy-banner__text-block .icon-wrap {
    display: none;
  }
  .cookies-policy-banner__text-block {
    max-width: 300px;
    justify-content: center;
  }
  .cookies-policy-banner__text-block .text .title {
    margin-top: 5px;
    font-size: 18px;
    text-align: center;
    width: 100%;
  }
  .cookies-policy-banner__text-block .text {
    max-width: 280px;
    margin-left: 0;
  }
  .cookies-policy-banner__text-block .text p {
    text-align: center;
    font-size: 13px;
    line-height: 19px;
    margin: 5px 0 2px;
  }
  .cookies-policy-banner__text-block .text p a {
    margin-left: 1px;
  }
  .cookies-policy-banner__button-block .accept-cookie-button {
    -webkit-clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
    font-size: 12px;
    height: 34px;
    min-width: 150px;
    width: unset;
    padding: 0 8px;
  }
  .cookies-policy-banner__button-block .accept-cookie-button {
    margin: 10px 0;
  }
  .cookies-policy-banner__button-block .accept-cookie-button .check-icon {
    height: 8px;
    margin-left: 5px;
    width: 12px;
  }

  .terms {
    padding: 150px 0 0;
  }
  .terms h1 {
    font-size: 5vw;
  }
  
  .footer-top {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 3vw;
  }
  .footer-bottom {
    display: none;
  }
  .footer-left, .footer-right, .footer-right div {
    text-align: center;
  }
  .footer-logo {
    width: 10vw;
    height: 10vw;
    position: relative;
    display: inline-block;
  }
  .footer-copy {
    font-size: 3.2vw;
  }
  .footer-rules.mb {
    margin: 3vw 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: .4px;
  }
  .footer-rules.mb a {
    display: inline;
    margin: 0 auto;
    font-size: 3vw;
  }
  .footer-rules.mb .eighteen {
    margin: 0 auto 3vw;
    width: 8vw;
    height: 8vw;
    font-size: 3.4vw;
    line-height: 8vw;
  }
  .footer-about {
    text-align: center;
    padding-top: .6vw;
  }
  .footer-info {
    text-align: center;
  }
  .footer-rules.dk {
    display: none;
  }

  .lang-selector {
    margin: 3vw auto;
  }
  .lang-button {
    gap: 8.064px;
    border-radius: 8.064px;
  }
  .lang-button-block {
    gap: 8.064px;
  }
  .lang-option:before, .lang-button:before {
    width: 4.5vw;
  }
  .lang-dropdown {
    margin-bottom: 4.032px;
    border-radius: 8.064px;
  }
  .lang-option {
    border-radius: 8.064px;
  }
  .chevron {
    width: 1.5vw;
    height: 1.5vw;
    transition: all .5s ease-in;
  }
}
/* /general */
