/* hide scrollbar for Firefox */
html {
  scrollbar-width: none;
  -ms-overflow-style: none; /* для старих Edge/IE */
}

/* for WebKit-browsers (Chrome, Safari, Opera) */
html::-webkit-scrollbar {
  display: none;
}

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;
}

.img-bg-w {
  width: 100%;
  position: relative;
}
.img-bg-h {
  height: 100%;
  position: relative;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Regular.woff2") format("woff2"),
       url("/fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Bold.woff2") format("woff2"),
       url("/fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Black.woff2") format("woff2"),
       url("/fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Inter */

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular.woff2") format("woff2"),
       url("/fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Bold.woff2") format("woff2"),
       url("/fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Black.woff2") format("woff2"),
       url("/fonts/Inter-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


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

a {
  cursor: pointer;
  background-color: transparent;
  text-decoration: none;
  -webkit-user-drag: none;
}

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

[hidden] {
  display: none;
}

.unselectable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
}

.text-selectable {
  -webkit-user-select: text!important;
  -khtml-user-select: text!important;
  -moz-user-select: text!important;
  -o-user-select: text!important;
  user-select: text!important;
}

::selection {
  background-color: #ff8126;
  color: #fff;
}

html, body {
  overscroll-behavior: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: radial-gradient(50% 55.69% at 50% 48.98%, rgba(28, 31, 40, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
  background-size: cover;
}

.bg {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: radial-gradient(50% 55.69% at 50% 48.98%, #1C1D28 0%, #000000 100%);
  transition: filter .3s ease;
}
.bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: url("/images/bg.avif") no-repeat center center;
  background-size: cover;
  opacity: .3;
}
body:hover .bg {
  filter: brightness(.8);
}

.bg-left {
  width: 30vw;
  height: 50vw;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  transform: translate(0, -50%);
  border-radius: 25.4375vw;
  mix-blend-mode: plus-lighter;
  filter: blur(75px);
}
.bg-left::before {
  content: "";
  width: 30vw;
  height: 50vw;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  border-radius: 25.4375vw;
  mix-blend-mode: plus-lighter;
  filter: blur(100px);
}
.bg-right {
  width: 30vw;
  height: 50vw;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  transform: translate(0, -50%);
  border-radius: 25.4375vw;
  mix-blend-mode: plus-lighter;
  filter: blur(75px);
}
.bg-right::before {
  content: "";
  width: 30vw;
  height: 50vw;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  transform: translate(50%, -50%);
  border-radius: 25.4375vw;
  mix-blend-mode: plus-lighter;
  filter: blur(100px);
}

.screen-1 .bg-left {
  background: rgba(255, 129, 50, .4);
}
.screen-1 .bg-left::before {
  background: rgba(255, 129, 50, .3);
}
.screen-1 .bg-right {
  background: rgba(0, 178, 255, .4);
}
.screen-1 .bg-right::before {
  background: rgba(0, 178, 255, .3);
}

.screen-2.load-hell .bg-left {
  background: rgba(255, 129, 50, .2);
}
.screen-2.load-hell .bg-left::before {
  background: rgba(255, 129, 50, .1);
}
.screen-2.load-key .bg-left {
  background: rgba(0, 178, 255, .2);
}
.screen-2.load-key .bg-left::before {
  background: rgba(0, 178, 255, .1);
}
.screen-2.load-hell .bg-right {
  background: rgba(255, 129, 50, .2);
}
.screen-2.load-hell .bg-right::before {
  background: rgba(255, 129, 50, .1);
}
.screen-2.load-key .bg-right {
  background: rgba(0, 178, 255, .2);
}
.screen-2.load-key .bg-right::before {
  background: rgba(0, 178, 255, .1);
}

.roll-hell .bg-left,
.stage-4-hell .bg-left {
  background: rgba(255, 129, 50, .4);
}
.roll-hell .bg-left::before,
.stage-4-hell .bg-left::before {
  background: rgba(255, 129, 50, .3);
}
.roll-hell .bg-right,
.stage-4-hell .bg-right {
  background: rgba(255, 129, 50, .4);
}
.roll-hell .bg-right::before,
.stage-4-hell .bg-right::before {
  background: rgba(255, 129, 50, .3);
}
.roll-key .bg-left,
.stage-4-key .bg-left {
  background: rgba(0, 178, 255, .4);
}
.roll-key .bg-left::before,
.stage-4-key .bg-left::before {
  background: rgba(0, 178, 255, .3);
}
.roll-key .bg-right,
.stage-4-key .bg-right {
  background: rgba(0, 178, 255, .4);
}
.roll-key .bg-right::before,
.stage-4-key .bg-right::before {
  background: rgba(0, 178, 255, .3);
}



.btn {
  position: relative;
  height: 4.68vw;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  display: block;
}
.btn-img {
  filter: brightness(1);
  transform: scale(1);
  transition: transform .1s ease-in, filter .1s ease-in;
}
.btn:hover .btn-img {
  filter: brightness(1.3);
  transform: scale(1.02);
  transition: transform .1s ease-out, filter .1s ease-out;
}
.login-hell .btn:hover .btn-img,
.login-key .btn:hover .btn-img {
  filter: brightness(1) !important;
}
.btn-hell:hover::after,
.btn-key:hover::after,
.login-hell .btn:hover::after,
.login-key .btn:hover::after,
.roll-hell .btn:hover::after,
.roll-key .btn:hover::after,
.thanks-hell .btn:hover::after,
.thanks-key .btn:hover::after {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  z-index: 9;
  width: 105%;
  height: 105%;
  display: block;
  filter: blur(30px);
}
.btn-hell:hover::after,
.login-hell .btn:hover::after,
.roll-hell .btn:hover::after,
.thanks-hell .btn:hover::after {
  background: radial-gradient(74.51% 75.27% at 49.9% 50.55%, #FF2600 51.44%, #FFB06B 100%);
}
.btn-key:hover::after,
.login-key .btn:hover::after,
.roll-key .btn:hover::after,
.thanks-key .btn:hover::after {
  background: radial-gradient(74.51% 75.27% at 49.9% 50.55%, #38ACFF 51.44%, #83ECFF 100%);
}
.btn-text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  z-index: 11;
  transform: translate(-50%, -50%);
  text-align: center;
  text-transform: uppercase;
  color: #FFF9B9;
  font-family: "Montserrat", sans-serif;
  font-size: 2vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.btn-hell .btn-text,
.login-hell  .btn-text,
.roll-hell .btn-text,
.thanks-hell .btn-text {
  color: #FFF9B9;
  text-shadow: 10.367px 0 25px rgba(255, 235, 17, 0.02), 6.911px 0 20px rgba(255, 235, 17, 0.15), 3.456px 0 15px rgba(255, 235, 17, 0.50), 1.728px 0 10px rgba(255, 235, 17, 0.85), 0.576px 0 5px rgba(255, 235, 17, 0.98);
}
.btn-hell:hover .btn-text,
.login-hell .btn:hover .btn-text,
.roll-hell .btn:hover .btn-text,
.thanks-hell .btn:hover .btn-text {
  color: #FFF9B9;
  text-shadow: 10.367px 0 50px rgba(255, 235, 17, 0.40), 6.911px 0 40px rgba(255, 235, 17, 0.60), 3.456px 0 30px rgba(255, 235, 17, 0.80), 1.728px 0 20px rgba(255, 235, 17, 0.90), 0.576px 0 10px #FFEB11;
}
.btn-key .btn-text,
.login-key  .btn-text,
.roll-key .btn-text,
.thanks-key .btn-text {
  color: #BFF9FF;
  text-shadow: 10.367px 0 25px rgba(131, 236, 255, 0.02), 6.911px 0 20px rgba(131, 236, 255, 0.15), 3.456px 0 15px rgba(131, 236, 255, 0.50), 1.728px 0 10px rgba(131, 236, 255, 0.85), 0.576px 0 5px rgba(131, 236, 255, 0.98);
}
.btn-key:hover .btn-text,
.login-key .btn:hover .btn-text,
.roll-key .btn:hover .btn-text,
.thanks-key .btn:hover.btn-text {
  color: #BFF9FF;
  text-shadow: 10.367px 0 50px rgba(131, 236, 255, 0.40), 6.911px 0 40px rgba(131, 236, 255, 0.60), 3.456px 0 30px rgba(131, 236, 255, 0.80), 1.728px 0 20px rgba(131, 236, 255, 0.90), 0.576px 0 10px #83ECFF;
}

.spin {
  width: 17.05vw;
  height: 11.375vw;
  background: url("/images/spin.png") no-repeat center center;
  background-size: contain;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  animation: Spin .6s linear infinite;
}
.body.show .spin {
  animation-play-state: paused;
  animation: Spin .6s linear forwards;
  transition: opacity .3s ease-in-out;
  opacity: 0;
}

.hero-spin {
  width: 17.05vw;
  height: 11.375vw;
  background: url("/images/spin.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 21.8vw;
  transform: translate(-50%, -50%);
  z-index: 19;
  opacity: 0;
  will-change: opacity;
  transition: opacity .3s ease-out;
}
.body.show .screen-1 .hero-spin {
  opacity: 1;
}

@keyframes Spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}   

/* main */
.main {
  position: relative;
  z-index: 5;
  min-height: 94vh;
  padding: 8vw 0 0;
}
.content {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0 0 2vw;
}

.text-orange {
    color: #FF6200;
}
.text-blue {
    color: #0DF0F6;
}
.text-yellow {
    color: #FFEB11;
}
/* /main */

/* header */
.header {
  position: absolute;
  top: 0;
  left: 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: 20vw;
}
/* /header */


/* screen-1 */
.hero-header {
  width: max-content;
  position: relative;
  margin: 0 auto;
  z-index: 10;
}
.hero-header-decor-left {
  width: 11.5vw;
  height: 9.3vw;
  position: absolute;
  top: 1.2vw;
  left: -8vw;
  background: url("/images/header-left.png") no-repeat center left;
  background-size: contain;
  opacity: 0;
  transform: translate(-6vw, 0);
  will-change: transform, opacity;
  transition: transform .5s ease-out .2s, opacity .5s ease-out .2s;
}
.body.show .screen-1 .hero-header-decor-left {
  transform: translate(0, 0);
  opacity: 1;
}
.hero-header-decor-right {
  width: 11.5vw;
  height: 9.3vw;
  position: absolute;
  top: 1.2vw;
  right: -8vw;
  background: url("/images/header-right.png") no-repeat center left;
  background-size: contain;
  opacity: 0;
  transform: translate(6vw, 0);
  will-change: transform, opacity;
  transition: transform .5s ease-out .2s, opacity .5s ease-out .2s;
}
.body.show .screen-1 .hero-header-decor-right {
  transform: translate(0, 0);
  opacity: 1;
}
.hero-header-text {
  background: linear-gradient(90deg, #FF8126 0%, #FF8126 30%, #FFF 49.52%, #14F9FF 70%, #14F9FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.7vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  opacity: 0;
  transform: translate(0, -6vw);
  will-change: transform, opacity;
  transition: transform .5s ease-out .2s, opacity .5s ease-out .2s;
}
.body.show .screen-1 .hero-header-text {
  transform: translate(0, 0);
  opacity: 1;
}

.hero-sets {
  margin: 1.6vw 1vw 0 0;
  display: flex;
  justify-content: center;
  gap: .4vw;
}
.hero-set-hell,
.hero-set-key {
  padding: 1.6vw 0 1.6vw 4vw;
  width: 13.6vw;
  height: 6.56vw;
  position: relative;
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 1.096vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}
.hero-set-hell {
  background: url("/images/set-hell.avif") no-repeat left center;
  background-size: contain;
  opacity: 0;
  transform: translate(-6vw, 0);
  will-change: transform, opacity;
  transition: transform .5s ease-out .2s, opacity .5s ease-out .2s;
}
.body.show .screen-1 .hero-set-hell {
  transform: translate(0, 0);
  opacity: 1;
}
.hero-set-key {
  width: 16.3vw;
  background: url("/images/set-key.avif") no-repeat left center;
  background-size: contain;
  opacity: 0;
  transform: translate(6vw, 0);
  will-change: transform, opacity;
  transition: transform .5s ease-out .2s, opacity .5s ease-out .2s;
}
.body.show .screen-1 .hero-set-key {
  transform: translate(0, 0);
  opacity: 1;
}

.hero-choice {
  display: flex;
  justify-content: center;
  position: relative;
  gap: 2.55vw;
}
.hero-box-img {
  position: relative;
  width: 100%;
  z-index: 20;
}
.hero-hell,
.hero-key {
  width: 30%;
  height: 100%;
  position: relative;
  z-index: 10;
}

.hero-hell {
  opacity: 0;
  transform: translate(-6vw, 0);
  will-change: transform, opacity;
  transition: transform .5s ease-out .2s, opacity .5s ease-out .2s;
}
.body.show .screen-1 .hero-hell {
  transform: translate(0, 0);
  opacity: 1;
}
.hero-key {
  opacity: 0;
  transform: translate(6vw, 0);
  will-change: transform, opacity;
  transition: transform .5s ease-out .2s, opacity .5s ease-out .2s;
}
.body.show .screen-1 .hero-key {
  transform: translate(0, 0);
  opacity: 1;
}

.hero-box {
  width: 100%;
  height: 17.9vw;
  position: relative;
  z-index: 18;
  cursor: pointer;
  border: none;
  background: transparent;
  pointer-events: none;
  opacity: 1;
  transform: scale(1.02);
  transition: background-image .7s ease, filter .5s ease, opacity .5s ease, transform .7s ease, left .7s ease, right .3s ease;
  pointer-events: auto;
}
.hero-hell .hero-box {
  left: 0;
}
.hero-hell:hover .hero-box {
  left: -4.25vw;
}
.hero-key .hero-box {
  right: 0;
}
.hero-key:hover .hero-box {
  right: -4.25vw;
}
.hero-box::before {
  content: "";
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  z-index: 19;
  width: 80%;
  height: 14.45vw;
  border-radius: 29.954vw;
  mix-blend-mode: plus-lighter;
  filter: blur(29.75px);
  opacity: .6;
  transition: opacity .7s ease;
}
.hero-hell .hero-box::before {
  left: 42%;
  background: radial-gradient(#ffdd63, #FFBA25, #FF1E00);
}
.hero-key .hero-box::before {
  left: 52%;
  background: radial-gradient(#9bfcff, #25E9FF, #0084FF);
}
.hero-key:hover .hero-box::before,
.hero-hell:hover .hero-box::before {
  opacity: .8;
}
.hero-box::after {
  content: "";
  position: absolute;
  top: 10.05vw;
  left: 5%;
  z-index: 18;
  width: 85%;
  height: 6.8vw;
  border-radius: 40.237564vw;
  mix-blend-mode: plus-lighter;
  filter: blur(21.25px);
  opacity: .3;
  transition: opacity .7s ease;
}
.hero-hell:hover .hero-box::after,
.hero-key:hover .hero-box::after {
  opacity: .6;
}
.hero-hell .hero-box::after {
  background: radial-gradient(#ffdd63, #FFBA25, #FF1E00);
}
.hero-key .hero-box::after {
  background: radial-gradient(#9bfcff, #25E9FF, #0084FF);
}

.hero-title {
  position: absolute;
  z-index: 10;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 5.5vw;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
.hero-hell .hero-title {
  top: 6vw;
  left: -6.8vw;
  transform: rotate(-90deg);
  background: linear-gradient(to bottom, #FF744A 0%, #ffb65b 82%, #ffdd63 84%, #ffdd63 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-key .hero-title {
  top: 5.1vw;
  right: -3.91vw;
  transform: rotate(90deg);
  background: linear-gradient(to bottom, #35c7ff 0%, #57e9ff 82%, #9bfcff 84%, #9bfcff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-openings {
  position: absolute;
  top: -3.74vw;
  z-index: 17;
  width: 17vw;
  height: 6.375vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 1.53vw; 
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 2.125vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.hero-hell .hero-openings {
  left: -3.485vw;
  padding: 0 .8vw 0 3.8vw;
  background: url("/images/opening-hell.avif") no-repeat center center;
  background-size: contain;
}
.hero-key .hero-openings {
  right: -1.87vw;
  padding: 0 3.4vw 0 1.19vw;
  background: url("/images/opening-key.avif") no-repeat center center;
  background-size: contain;
}
.hero-openings-text {
  text-transform: uppercase;
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 1.275vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}
.hero-openings-count {
  font-family: "Montserrat", sans-serif;
  font-size: 1.275vw;
  font-weight: 400;
  line-height: 1.1;
}
.hero-hell .hero-openings-count {
  color: #FFF9B9;
  text-shadow: 0 0 10px rgba(255, 38, 0, 0.80), 0 0 20px rgba(255, 38, 0, 0.70), 0 0 40px rgba(255, 38, 0, 0.60), 0 0 60px rgba(255, 38, 0, 0.80);
}
.hero-key .hero-openings-count {
  color: #B9F3FF;
  text-shadow: 10.367px 0 50px rgba(131, 236, 255, 0.40), 6.911px 0 40px rgba(131, 236, 255, 0.60), 3.456px 0 30px rgba(131, 236, 255, 0.80), 1.728px 0 20px rgba(131, 236, 255, 0.90), 0.576px 0 10px #83ECFF;
}

.hero-items {
  position: absolute;
  left: 50%;
  top: 0.85vw;
  z-index: 19;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
  flex-direction: column;
  gap: .051vw;
  opacity: 0;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}
.hero-hell .hero-items {
  transform: translate(-25.5%, 0);
}
.hero-hell:hover .hero-items {
  opacity: 1;
  transform: translate(17%, 0);
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}
.hero-key .hero-items {
  transform: translate(-68%, 0);
}
.hero-key:hover .hero-items {
  opacity: 1;
  transform: translate(-110.5%, 0);
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}
.hero-item {
  position: relative;
  margin-top: -1.02vw;
  width: 11.05vw;
  height: 6.8vw;
}
.hero-hell .hero-item {
  background: url("/images/preview-hell.avif") no-repeat center center;
  background-size: contain;
}
.hero-key .hero-item {
  background: url("/images/preview-key.avif") no-repeat center center;
  background-size: contain;
}
.hero-item-img {
  width: 63%;
  height: auto;
  position: absolute;
  top: .34vw;
  z-index: 10;
}
.hero-hell .hero-item-img {
  left: .68vw;
  filter: drop-shadow(0 0 0 #FFD900)
          drop-shadow(0 0 2px #FFD900)
          drop-shadow(0 0 3px #FF6200)
          drop-shadow(0 0 4px rgba(255, 38, 0, 0.4));
  color: #FFD900;
}
.hero-key .hero-item-img {
  right: .68vw;
  filter: drop-shadow(0 0 0 #83ECFF)
          drop-shadow(0 0 2px #83ECFF)
          drop-shadow(0 0 3px #38ACFF)
          drop-shadow(0 0 4px rgba(56, 172, 255, 0.64));
  color: #83ECFF;
  transform: scaleX(-1);
}
.hero-item-name {
  position: absolute;
  top: 0.425vw;
  z-index: 9;
  padding: .34vw;
  width: max-content;
  border-radius: .425vw;
  backdrop-filter: blur(25px);
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: .68vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  text-align: right;
}
.hero-hell .hero-item-name {
  right: 2.38vw;
  background: radial-gradient(278.02% 64.23% at 32.22% -89.09%, rgba(255, 143, 15, 0.40) 0%, rgba(255, 143, 15, 0.00) 100%), rgba(0, 4, 32, 0.40);
  box-shadow: 0 0 2px 0 #FF6200 inset;
}
.hero-key .hero-item-name {
  left: 2.38vw;
  background: radial-gradient(278.02% 64.23% at 32.22% -89.09%, rgba(15, 143, 255, 0.40) 0%, rgba(15, 143, 255, 0.00) 100%), rgba(0, 4, 32, 0.40);
  box-shadow: 0 0 2px 0 #00A8FF inset;
}
.hero-item-cat {
  position: absolute;
  bottom: 1.02vw;
  z-index: 9;
  padding: .34vw;
  width: max-content;
  border-radius: .425vw;
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: .68vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
}
.hero-hell .hero-item-cat {
  left: 0;
  background: radial-gradient(60.44% 81.82% at 50% 51.52%, #FF2600 51.44%, #FFB06B 100%);
  box-shadow: 0 0 2px 0 #FF6200 inset;
}
.hero-key .hero-item-cat {
  right: 0;
  background: radial-gradient(60.44% 81.82% at 50% 51.52%, #38ACFF 51.44%, #83ECFF 100%);
  box-shadow: 0 0 2px 0 #00A8FF inset;
}

.hero .btn {
  position: absolute;
  top: 19.1675vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.hero-attention {
  padding: 2.38vw 0.68vw 0.68vw;
  width: 16.35vw;
  height: 6.5vw;
  background: url("/images/attention.png") no-repeat center center;
  background-size: contain;
  position: relative;
  z-index: 10;
  margin: -.4vw auto 0;
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  opacity: 0;
  transform: translate(0, -6vw);
  will-change: transform, opacity;
  transition: transform .5s ease-out .2s, opacity .5s ease-out .2s;
}
.body.show .screen-1 .hero-attention {
  transform: translate(0, 0);
  opacity: 1;
}
.hero-attention::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  z-index: 5;
  width: 100%;
  height: 36%;
  transform: translate(-50%, 0);
  background: url(../images/alert.png) no-repeat center top;
  background-size: contain;
}
/* /screen-1 */


/* screen-2 */
.load {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 4;
}
.load-left,
.load-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 55vw;
  height: 55vw;
  opacity: 0;
  transition: transform .3s ease-in-out .2s, opacity .3s ease-in-out .2s;
  will-change: transform, opacity;
}
.load-left {
  left: 0;
  transform: translate(-50%, -50%) rotate(-50deg);
}
.load-hell .load-left {
  background: url("/images/hell.avif") no-repeat center center;
  background-size: contain;
}
.load-key .load-left {
  background: url("/images/key.avif") no-repeat center center;
  background-size: contain;
}
.screen-2.show .load-left {
  transform: translate(-40%, -50%) rotate(-8deg);
  opacity: 1;
}
.load-right {
  right: 0;
  transform: translate(50%, -50%) rotate(50deg);
}
.load-hell .load-right {
  background: url("/images/hell.avif") no-repeat center center;
  background-size: contain;
}
.load-key .load-right {
  background: url("/images/key.avif") no-repeat center center;
  background-size: contain;
}
.screen-2.show .load-right {
  transform: translate(40%, -50%) rotate(8deg);
  opacity: 1;
}
@keyframes load-right {
  0% {
    transform: translate(50%, -50%) rotate(50deg);
    opacity: 0;
  }
  100% {
    transform: translate(40%, -50%) rotate(8deg);
    opacity: 1;
  }
}

.load-initializing {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, -107%);
  width: 43vw;
  height: 10.75vw;
  opacity: 0;
  transition: transform .3s ease-in-out .2s, opacity .3s ease-in-out .2s;
  will-change: transform, opacity;
}
.load-hell .load-initializing {
  background: url("/images/load-initializing-hell.avif") no-repeat center center;
  background-size: contain;
}
.load-key .load-initializing {
  background: url("/images/load-initializing-key.avif") no-repeat center center;
  background-size: contain;
}
.screen-2.show .load-initializing {
  opacity: 1;
}
.load-initializing-text {
  width: 100%;
  font-family: Montserrat;
  font-size: 3vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  padding-top: 2vw;
}
.load-hell .load-initializing-text {
  background: radial-gradient(79.87% 229.63% at 50% 174.07%, #FF8126 0%, #FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} 
.load-key .load-initializing-text {
background: radial-gradient(79.87% 229.63% at 50% 174.07%, #38CAFF 0%, #FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.load-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, 50%);
  width: 58vw;
  height: 8vw;
  opacity: 0;
  will-change: transform, opacity;
  transition: transform .3s ease-in-out .2s, opacity .3s ease-in-out .2s;
}
.load-hell .load-bar {
  background: url(../images/load-bar-bg-hell.avif) no-repeat center center;
  background-size: 100% 100%;
}
.load-key .load-bar {
  background: url(../images/load-bar-bg-key.avif) no-repeat center center;
  background-size: 100% 100%;
}
.screen-2.show .load-bar {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.load-hell .load-bar-up {
  width: 10vw;
  position: absolute;
  top: -3.5vw;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, 0);
}
.load-key .load-bar-up {
  width: 9vw;
  position: absolute;
  top: -3vw;
  left: 50%;
  z-index: 100;
  transform: translate(-44%, 0);
}
.load-bar-line {
  position: absolute;
  width: 98%;
  height: 56%;
  overflow: hidden;
  transition: width .3s ease-in-out;
  border-radius: 0.625vw;
  bottom: .6vw;
  left: 50%;
  transform: translate(-50%, 0);
}
.load-hell .load-bar-line {
  background: url("/images/load-line-hell.avif") no-repeat center center;
  background-size: 100% 100%;
  box-shadow: 0 0 5px 0 rgba(255, 149, 74, 0.80) inset, 0 0 20px 0 rgba(255, 149, 74, 0.30) inset, 0 0 2px 0 #FF954A inset, 0 0 20px 0 rgba(255, 38, 0, 0.70);
}
.load-key .load-bar-line {
  background: url("/images/load-line-key.avif") no-repeat center center;
  background-size: 100% 100%;
  box-shadow: 0 0 5px 0 rgba(74, 179, 255, 0.80) inset, 0 0 20px 0 rgba(74, 179, 255, 0.30) inset, 0 0 2px 0 #4AB3FF inset, 0 0 20px 0 rgba(56, 172, 255, 0.70);
}
.load-bar-progress {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 10;
  transform: translate(-90%, -50%);
  width: 120%;
  height: 100%;
}
.load-hell .load-bar-progress {
  background: url(../images/load-gate-hell.avif) no-repeat right center;
  background-size: 100% 110%;
}
.load-key .load-bar-progress {
  background: url(../images/load-gate-key.avif) no-repeat right center;
  background-size: auto 110%;
}
.screen-2.show .load-bar-progress {
  animation: load-progress-1 .3s ease-in-out .8s forwards, 
            load-progress-2 .3s ease-in-out 1.6s forwards, 
            load-progress-3 .3s ease-in-out 2.4s forwards;
}
@keyframes load-progress-1 {
  0% {
    transform: translate(-90%, -50%);
  }
  100% {
    transform: translate(-66%, -50%);
  }
}
@keyframes load-progress-2 {
  0% {
    transform: translate(-66%, -50%);
  }
  100% {
    transform: translate(-33%, -50%);
  }
}
@keyframes load-progress-3 {
  0% {
    transform: translate(-33%, -50%);
  }
  100% {
    transform: translate(0%, -50%);
  }
}

.load-status {
  position: absolute;
  left: 50%;
  top: 65%;
  z-index: 10;
  transform: translate(-50%, -50%);
}
.load-status-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-100%, -50%);
  height: 6vw;
  opacity: 0;
  will-change: transform, opacity;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 1.9vw;
  font-style: normal;
  font-weight: 500;
  line-height: 6vw;
  width: 100%;
  padding-left: 4vw;
}
.screen-2.load-hell.show .load-status-item-1 {
  background: url("/images/load-status-hell-1.avif") no-repeat left center;
  background-size: auto 100%;
}
.screen-2.load-hell.show .load-status-item-2 {
  background: url("/images/load-status-hell-2.avif") no-repeat left center;
  background-size: auto 100%;
}
.screen-2.load-hell.show .load-status-item-3 {
  background: url("/images/load-status-hell-3.avif") no-repeat left center;
  background-size: auto 100%;
}
.screen-2.load-key.show .load-status-item-1 {
  background: url("/images/load-status-key-1.avif") no-repeat left center;
  background-size: auto 100%;
}
.screen-2.load-key.show .load-status-item-2 {
  background: url("/images/load-status-key-2.avif") no-repeat left center;
  background-size: auto 100%;
}
.screen-2.load-key.show .load-status-item-3 {
  background: url("/images/load-status-key-3.avif") no-repeat left center;
  background-size: auto 100%;
}
.screen-2.show .load-status-item-1 {
  width: 25.3vw;
  animation: load-status .8s ease-in-out .8s;
}
.screen-2.show .load-status-item-2 {
  width: 27.4vw;
  animation: load-status .8s ease-in-out 1.6s;
}
.screen-2.show .load-status-item-3 {
  width: 19.6vw;
  animation: load-status-last .8s ease-in-out 2.4s forwards;
}
@keyframes load-status {
  0% {
    opacity: 1;
    transform: translate(-100%, -50%);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  80% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(0%, -50%);
    opacity: 0;
  }
}
@keyframes load-status-last {
  0% {
    opacity: 1;
    transform: translate(-100%, -50%);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.load-hell .load-status-item {
  color: #FFF9B9;
  text-shadow: 0 0 10px rgba(255, 38, 0, 0.80), 0 0 20px rgba(255, 38, 0, 0.70), 0 0 40px rgba(255, 38, 0, 0.60), 0 0 60px rgba(255, 38, 0, 0.80);
}
.load-key .load-status-item {
  color: #B9F3FF;
  text-shadow: 10.367px 0 50px rgba(131, 236, 255, 0.40), 6.911px 0 40px rgba(131, 236, 255, 0.60), 3.456px 0 30px rgba(131, 236, 255, 0.80), 1.728px 0 20px rgba(131, 236, 255, 0.90), 0.576px 0 10px #83ECFF;
}

/* /screen-2 */


/* screen-3 */
.roll {
  position: relative;
  z-index: 2;
  margin: 2vw auto 0;
  width: 100%;
}
.roll-title {
  position: relative;
  z-index: 9;
  margin: 0 auto;
  width: 23.4vw;
  height: 5.1vw;
  opacity: 0;
  transform: translate(0, -6vw);
  will-change: transform, opacity;
  transition: transform .3s ease-out 3.2s, opacity .3s ease-out 3.2s;
}
.screen-3.show .roll-title {
  transform: translate(0, 0);
  opacity: 1;
}
.roll-hell .roll-title {
  background: url("/images/roll-title-hell.avif");
  background-size: 100% 100%;
}
.roll-key .roll-title {
  background: url("/images/roll-title-key.avif");
  background-size: 100% 100%;
}
 .roll-title-text {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-family: "Montserrat", sans-serif;
  font-size: 2.8vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.roll-hell .roll-title-text {
  background: radial-gradient(79.87% 229.63% at 50% 174.07%, #FF8126 0%, #FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.roll-key .roll-title-text {
  background: radial-gradient(79.87% 229.63% at 50% 174.07%, #38CAFF 0%, #FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.roll-reel {
  position: relative;
  z-index: 14;
  margin: 2.5vw auto 0;
  width: 70vw;
  height: 16.3vw;
}

.roll-track {
  position: relative;
  left: 2.5vw;
  top: 0;
  width: 65vw;
  max-width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  padding: 1vw 0 0;
}
.roll-runner {
  height: 120%;
  width: fit-content;
  display: flex;
  transform: translateX(0);
}



.roll-hell .roll-reel {
  background: url("/images/roll-bg-hell.avif") no-repeat center center;
  background-size: contain;
}
.roll-key .roll-reel {
  background: url("/images/roll-bg-key.avif") no-repeat center center;
  background-size: contain;
}
.roll-decor-top {
  position: absolute;
  left: 50%;
  top: 10%;
  width: 78%;
  height: 50%;
  z-index: 7;
  opacity: 0;
  transform: scale(1.3) translate(-50%, -6vw);
  will-change: transform, opacity;
  transition: transform .3s ease-out 3.2s, opacity .3s ease-out 3.2s;
}
.screen-3.show .roll-decor-top {
  transform: scale(1) translate(-50%, 0);
  opacity: 1;
}
.roll-hell .roll-decor-top {
  background: url("/images/roll-decor-top-hell.avif");
  background-size: 100% 100%;
}
.roll-key .roll-decor-top {
  background: url("/images/roll-decor-top-key.avif");
  background-size: 100% 100%;
}

.roll-decor-left {
  position: absolute;
  left: 12.7%;
  top: 63.5%;
  width: 29%;
  height: 29%;
  z-index: 7;
  transform-origin: left center;
  opacity: 0;
  transform: scaleX(1) translate(-6vw, 0);
  will-change: transform, opacity;
  transition: transform .3s ease-out 3.2s, opacity .3s ease-out 3.2s;
}
.screen-3.show .roll-decor-left {
  transform: scaleX(1) translate(0, 0);
  opacity: 1;
}
.roll-hell .roll-decor-left {
  background: url("/images/roll-decor-left-hell.avif");
  background-size: 100% 100%;
}
.roll-key .roll-decor-left {
  background: url("/images/roll-decor-left-key.avif");
  background-size: 100% 100%;
}
.roll.active .roll-decor-left {
  animation: HideRollWrap .8s ease-in-out forwards;
  will-change: opacity, transform;
}
.roll-decor-left-active {
  position: absolute;
  left: 12.7%;
  top: 63.5%;
  width: 20.2%;
  height: 29%;
  z-index: 7;
  opacity: 0;
  transform: scaleX(.9);
  transform-origin: left center;
}
.roll-hell .roll-decor-left-active {
  background: url("/images/roll-decor-left-active-hell.avif");
  background-size: 100% 100%;
}
.roll-key .roll-decor-left-active {
  background: url("/images/roll-decor-left-active-key.avif");
  background-size: 100% 100%;
}
.roll.active .roll-decor-left-active {
  animation: ShowRollWrapActive .8s ease-in-out .4s forwards;
  will-change: opacity, transform;
}
.roll-decor-right {
  position: absolute;
  right: 12.7%;
  top: 63.5%;
  width: 29%;
  height: 29%;
  z-index: 7;
  transform-origin: right center;
  opacity: 0;
  transform: scaleX(1) translate(6vw, 0);
  will-change: transform, opacity;
  transition: transform .3s ease-out 3.2s, opacity .3s ease-out 3.2s;
}
.screen-3.show .roll-decor-right {
  transform: scaleX(1) translate(0, 0);
  opacity: 1;
}
.roll-hell .roll-decor-right {
  background: url("/images/roll-decor-right-hell.avif");
  background-size: 100% 100%;
}
.roll-key .roll-decor-right {
  background: url("/images/roll-decor-right-key.avif");
  background-size: 100% 100%;
}
.roll.active .roll-decor-right {
  animation: HideRollWrap .8s ease-in-out forwards;
  will-change: opacity, transform;
}
.roll-decor-right-active {
  position: absolute;
  right: 12.7%;
  top: 63.5%;
  width: 20.2%;
  height: 29%;
  z-index: 7;
  opacity: 0;
  transform: scaleX(.9);
  transform-origin: right center;
}
.roll-hell .roll-decor-right-active {
  background: url("/images/roll-decor-right-active-hell.avif");
  background-size: 100% 100%;
}
.roll-key .roll-decor-right-active {
  background: url("/images/roll-decor-right-active-key.avif");
  background-size: 100% 100%;
}
.roll.active .roll-decor-right-active {
  animation: ShowRollWrapActive .8s ease-in-out .4s forwards;
  will-change: opacity, transform;
}
@keyframes HideRollWrap {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }
  80% {
    transform: scaleX(.7);
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}
@keyframes ShowRollWrapActive {
  0% {
    transform: scaleX(1.5);
    opacity: 0;
  }
  80% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.roll-left {
  position: absolute;
  top: -5%;
  left: 2.5vw;
  z-index: 8;
  width: 0.4vw;
  height: 110%;
  border-radius: 0.5vw;
}
.roll-hell .roll-left {
  background: #FFF9B9;
  box-shadow: 0 0 2px 0 #FF6200 inset, 0 0 5px 0 #FFF9B9 inset, 0 0 5px 0 #FFF9B9 inset, 0 0 2px 0 rgba(255, 38, 0, 0.80),0 0 5px 0 rgba(255, 38, 0, 0.80), 0 0 10px 0 rgba(255, 38, 0, 0.70);
}
.roll-key .roll-left {
  background: #B9F3FF;
  box-shadow: 0 0 2px 0 #00A8FF inset, 0 0 5px 0 #B9F3FF inset, 0 0 5px 0 #B9F3FF inset, 0 0 2px 0 rgba(56, 172, 255, 0.80),0 0 5px 0 rgba(56, 172, 255, 0.80), 0 0 10px 0 rgba(56, 172, 255, 0.70);
}
.roll-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  width: 12vw;
  height: 100%;
}
.roll-hell .roll-left::before {
  background: linear-gradient(90deg, rgba(255, 174, 0, 0.40) 0%, rgba(255, 38, 0, 0.40) 30.29%, rgba(255, 38, 0, 0.00) 100%), rgba(28, 29, 40, 0.01);
  mix-blend-mode: plus-lighter;
}
.roll-key .roll-left::before {
  background: linear-gradient(90deg, rgba(15, 143, 255, 0.40) 0%, rgba(56, 172, 255, 0.40) 30.29%, rgba(56, 172, 255, 0.00) 100%), rgba(28, 29, 40, 0.01);
  mix-blend-mode: plus-lighter;
}
.roll-right {
  position: absolute;
  top: -5%;
  right: 2.5vw;
  z-index: 8;
  width: 0.4vw;
  height: 110%;
  border-radius: 0.5vw;
}
.roll-hell .roll-right {
  background: #FFF9B9;
  box-shadow: 0 0 2px 0 #FF6200 inset, 0 0 5px 0 #FFF9B9 inset, 0 0 5px 0 #FFF9B9 inset, 0 0 2px 0 rgba(255, 38, 0, 0.80),0 0 5px 0 rgba(255, 38, 0, 0.80), 0 0 10px 0 rgba(255, 38, 0, 0.70);
}
.roll-key .roll-right {
  background: #B9F3FF;
  box-shadow: 0 0 2px 0 #00A8FF inset, 0 0 5px 0 #B9F3FF inset, 0 0 5px 0 #B9F3FF inset, 0 0 2px 0 rgba(56, 172, 255, 0.80),0 0 5px 0 rgba(56, 172, 255, 0.80), 0 0 10px 0 rgba(56, 172, 255, 0.70);
}
.roll-right::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(180deg);
  z-index: 8;
  width: 12vw;
  height: 100%;
}
.roll-hell .roll-right::before {
  background: linear-gradient(90deg, rgba(255, 174, 0, 0.40) 0%, rgba(255, 38, 0, 0.40) 30.29%, rgba(255, 38, 0, 0.00) 100%), rgba(28, 29, 40, 0.01);
  mix-blend-mode: plus-lighter;
}
.roll-key .roll-right::before {
  background: linear-gradient(90deg, rgba(15, 143, 255, 0.40) 0%, rgba(56, 172, 255, 0.40) 30.29%, rgba(56, 172, 255, 0.00) 100%), rgba(28, 29, 40, 0.01);
  mix-blend-mode: plus-lighter;
}
.roll-top {
  position: absolute;
  left: 50%;
  top: -3vw;
  z-index: 15;
  width: 5.875vw;
  height: 5.875vw;
  opacity: 0;
  transform: translate(-50%, -1vw);
  will-change: transform, opacity;
  transition: transform .3s ease-out 3.2s, opacity .3s ease-out 3.2s;
}
.screen-3.show .roll-top {
  transform: translate(-50%, 0);
  opacity: 1;
}
.roll-hell .roll-top {
  background: url("/images/roll-arrow-top-hell.png") no-repeat center center;
  background-size: contain;
}
.roll-key .roll-top {
  background: url("/images/roll-arrow-top-key.png") no-repeat center center;
  background-size: contain;
}
.roll-bottom {
  position: absolute;
  left: 50%;
  bottom: -3vw;
  z-index: 15;
  width: 5.875vw;
  height: 5.875vw;
  background: url("/images/roll-arrow-bottom.png") no-repeat center center;
  background-size: contain;
  opacity: 0;
  transform: translate(-50%, -1vw);
  will-change: transform, opacity;
  transition: transform .3s ease-out 3.2s, opacity .3s ease-out 3.2s;
}
.screen-3.show .roll-bottom {
  transform: translate(-50%, 0);
  opacity: 1;
}
.roll-hell .roll-bottom {
  background: url("/images/roll-arrow-bottom-hell.png") no-repeat center center;
  background-size: contain;
}
.roll-key .roll-bottom {
  background: url("/images/roll-arrow-bottom-key.png") no-repeat center center;
  background-size: contain;
}


.item {
  position: relative;
  flex-shrink: 0;
  width: 16vw;
  height: 16.4vw;
  margin: 0 -1vw;
}
.roll-hell .item,
.login-hell .item,
.thanks-hell .item {
  background: url("/images/item-bg-hell.avif") no-repeat center center;
  background-size: 100% 100%;
}
.roll-hell .roll .bar:not(.first) .item.show,
.login-hell .item.show,
.thanks-hell .item.show {
  background: url("/images/item-bg-active-hell.avif") no-repeat center center;
  background-size: 100% 100%;
}
.roll-key .item,
.login-key .item,
.thanks-key .item {
  background: url("/images/item-bg-key.avif") no-repeat center center;
  background-size: 100% 100%;
}
.roll-key .roll .bar:not(.first) .item.show,
.login-key .item.show,
.thanks-key .item.show {
  background: url("/images/item-bg-active-key.avif") no-repeat center center;
  background-size: 100% 100%;
}
.item-bg-active {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  z-index: 6;
  transform: translate(-50%, -50%);
}
.item-img {
  width: 68%;
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
}
.roll-hell .item-img,
.login-hell .item-img,
.thanks-hell .item-img {
  filter: drop-shadow(0 0 0 rgba(255, 189, 161, 0.80))
          drop-shadow(0 0 2px #FFBDA1)
          drop-shadow(0 0 3px rgba(255, 38, 0, 0.70));
}
.roll-key .item-img,
.login-key .item-img,
.thanks-key .item-img {
  filter: drop-shadow(0 0 0 rgba(179, 235, 255, 0.80))
          drop-shadow(0 0 2px #B3EBFF)
          drop-shadow(0 0 3px rgba(56, 172, 255, 0.70));
}
.item-name {
  position: absolute;
  left: 50%;
  top: 56.5%;
  transform: translate(-50%, 0);
  z-index: 10;
  width: 100%;
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 1vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}
.item-cat {
  position: absolute;
  left: 50%;
  top: 66%;
  transform: translate(-50%, 0);
  z-index: 10;
  width: 100%;
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 1.375vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.roll-action {
  padding: 3.3vw 0 0;
  display: flex;
  justify-content: center;
  gap: 2.8vw;
}
.btn-try {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transform: translate(8.2vw, 0);
}
.roll.active .btn-try {
  animation: BtnTryShow .8s ease-in-out .2s forwards;
  will-change: opacity, visibility, transform;
}
@keyframes BtnTryShow {
  0% {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
  100% {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }
}
.btn-open {
  opacity: 0;
  transform: translate(-17.2vw, 6vw);
  will-change: transform, opacity;
  transition: transform .3s ease-out 3.2s, opacity .3s ease-out 3.2s;
  z-index: 10;
}
.screen-3.show .btn-open {
  transform: translate(-17.2vw, 0);
  opacity: 1;
}
.roll.active .btn-open {
  animation: BtnOpenHide .8s ease-in-out forwards;
  will-change: opacity, visibility, transform;
}
@keyframes BtnOpenHide {
  0% {
    opacity: 1;
    visibility: hidden;
    transform: translate(-17.2vw, 0);
  }
  60% {
    opacity: 1;
    visibility: visible;
    transform: translate(-4.2vw, 0);
  }
  80% {
    opacity: 1;
    visibility: visible;
    transform: translate(-8.2vw, 0);
  }
  100% {
    opacity: 0;
    visibility: visible;
    transform: translate(-8.2vw, 0);
    z-index: -1;
  }
}
.btn-claim {
  opacity: 0;
  visibility: hidden;
  transform: translate(8.2vw, 0);
  z-index: -1;
}
.roll.active .btn-claim {
  animation: BtnClaimShow .1s ease-in-out .7s forwards;
  will-change: opacity, visibility, transform;
}
@keyframes BtnClaimShow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  80% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }
}

.roll-hell .item,
.roll-key .item {
  margin: 0 -2vw 0 0 !important;
}

.roll-hell .elements {
  display: flex;
  gap: 0;
  transform: translateX( calc( (-16vw*(var(--items-count--hell,0) + var(--random-num--hell,0) + 0.5)) - (-2vw*(var(--items-count--hell,0) + var(--random-num--hell,0))) + 32.5vw ) );
}
.roll-key .elements {
  display: flex;
  gap: 0;
  transform: translateX( calc( (-16vw*(var(--items-count--key,0) + var(--random-num--key,0) + 0.5)) - (-2vw*(var(--items-count--key,0) + var(--random-num--key,0))) + 32.5vw ) );
}

.roll-hell .bar {
  transform: translateX(0);
  transition: transform .2s ease-in;
}
.roll-hell .bar.first {
  transform: translateX(10vw);
  animation: EFirstHell 1.5s linear .2s forwards, EFirstHell 1.5s ease-out 1.7s forwards;
  transition: transform .2s ease-out;
}
.roll-key .bar.first {
  transform: translateX(10vw);
  animation: EFirstKey 1.5s linear .2s forwards, EFirstKey 1.5s ease-out 1.7s forwards;
  transition: transform .2s ease-out;
}

@keyframes EFirstHell {
  0% {
    transform: translateX(10vw);
  }
  100% {
    transform: translateX( calc( (-16vw*var(--items-count--hell,0) * 3) - (-2vw*(var(--items-count--hell,0) - 1)) ) );
  }
}
@keyframes EFirstKey {
  0% {
    transform: translateX(10vw);
  }
  100% {
    transform: translateX( calc( (-16vw*var(--items-count--key,0) * 3) - (-2vw*(var(--items-count--key,0) - 1)) ) );
  }
}

.roll .bar:not(.first) .item.show {
  animation: ItemShow .3s ease-out;
}
@keyframes ItemShow {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.15);
    filter: brightness(1.5);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}


.btn-try.random_end,
.btn-open.random_end {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: -1 !important;
}
.btn-claim.random_end {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

/* /screen-3 */


/* screen-4 */
.login {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
}
.login-left {
  position: relative;
  opacity: 0;
  transform: translate(-6vw, 0);
  will-change: transform, opacity;
  transition: transform .3s ease-out, opacity .3s ease-out;
}
.stage-4-hell.show .screen-4.show .login-left,
.stage-4-key.show .screen-4.show .login-left {
  transform: translate(0, 0);
  opacity: 1;
}
.login-right {
  position: relative;
  padding: 2.19vw 0;
  width: 28vw;
  opacity: 0;
  transform: translate(6vw, 0);
  will-change: transform, opacity;
  transition: transform .3s ease-out, opacity .3s ease-out;
}
.stage-4-hell.show .screen-4.show .login-right,
.stage-4-key.show .screen-4.show .login-right {
  transform: translate(0, 0);
  opacity: 1;
}

.login-decor {
  position: absolute;
  left: 15.5vw;
  top: 8.2vw;
  z-index: 10;
  width: 11vw;
  height: 6vw;
}
.login-hell .login-decor {
  background: url("/images/login-decor-hell.avif") no-repeat center center;
  background-size: contain;
}
.login-key .login-decor {
  background: url("/images/login-decor-key.avif") no-repeat center center;
  background-size: contain;
}

.login .item {
  width: 29vw;
  height: 32.4vw;
}
.item-content {
  display: none;
}
.item[data-item_show="1"] .item-content-1 {
  display: block;
}
.item[data-item_show="2"] .item-content-2 {
  display: block;
}
.item[data-item_show="3"] .item-content-3 {
  display: block;
}
.item[data-item_show="7"] .item-content-7 {
  display: block;
}
.item[data-item_show="8"] .item-content-8 {
  display: block;
}
.item[data-item_show="9"] .item-content-9 {
  display: block;
}





.login .item-name {
  font-size: 1.6vw;
}
.login .item-cat {
  font-size: 2.3vw;
}

.login-title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 4vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-align: left;
}
.login-hell .login-title {
  background: radial-gradient(79.87% 229.63% at 50% 174.07%, #FF8126 0%, #FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.login-key .login-title {
  background: radial-gradient(79.87% 229.63% at 50% 174.07%, #38CAFF 0%, #FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.login-set {
  position: relative;
  width: 17vw;
  height: 7vw;
  padding: 1.9vw .8vw 0 4.5vw;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}
.login-hell .login-set {
  background: url("/images/login-set-hell.avif") no-repeat center center;
  background-size: contain;
}
.login-key .login-set {
  background: url("/images/login-set-key.avif") no-repeat center center;
  background-size: contain;
}

.btn-login {
  height: 6.6vw;
}
.btn-login .btn-img {
  z-index: 10;
}
.btn-login .btn-text {
  padding-left: 5.6vw;
  font-size: 1.8vw;
  text-align: left;
  z-index: 10;
}
.btn-login::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  filter: blur(15px);
  opacity: 0;
  transition: opacity .3s ease-in-out;
}
.login-hell .btn-login::after {
  background: radial-gradient(74.51% 75.27% at 49.9% 50.55%, #FF2600 65.32%, #FFB06B 100%);
  box-shadow: 0 0 5px 0 rgba(255, 217, 0, 0.80) inset, 0 0 20px 0 rgba(255, 217, 0, 0.30) inset, 0 0 2px 0 #FFD900 inset;
}
.login-key .btn-login::after {
  background: radial-gradient(74.51% 75.27% at 49.9% 50.55%, #38ACFF 51.44%, #83ECFF 100%);
  box-shadow: 0 0 5px 0 rgba(210, 248, 255, 0.80) inset, 0 0 20px 0 rgba(210, 248, 255, 0.30) inset, 0 0 2px 0 #D2F8FF inset;
}
.btn-login:hover::after {
  opacity: 1;
}

.login-note {
  width: 100%;
  color: #FFF;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 1vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  padding-left: .6vw;
}

/* /screen-4 */



/*  screen-5 */
.thanks {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
}
.thanks-header {
  width: max-content;
  position: relative;
  margin: 0 auto;
  z-index: 10;
}
.thanks-header-decor-left {
  content: "";
  width: 18.2vw;
  height: 7.3vw;
  position: absolute;
  top: 4.2vw;
  left: -11vw;
  opacity: 0;
  transform: translate(-6vw, 0);
  will-change: transform, opacity;
  transition: transform .3s ease-out, opacity .3s ease-out;
}
.screen-5.show .thanks-header-decor-left {
  transform: translate(0, 0);
  opacity: 1;
}
.thanks-hell .thanks-header-decor-left {
  background: url("/images/thanks-decor-left-hell.png") no-repeat center left;
  background-size: contain;
}
.thanks-key .thanks-header-decor-left {
  background: url("/images/thanks-decor-left-key.png") no-repeat center left;
  background-size: contain;
}
.thanks-header-decor-right {
  content: "";
  width: 18.2vw;
  height: 7.3vw;
  position: absolute;
  top: 4.2vw;
  right: -12vw;
  opacity: 0;
  transform: translate(6vw, 0);
  will-change: transform, opacity;
  transition: transform .3s ease-out, opacity .3s ease-out;
}
.screen-5.show .thanks-header-decor-right {
  transform: translate(0, 0);
  opacity: 1;
}
.thanks-hell .thanks-header-decor-right {
  background: url("/images/thanks-decor-right-hell.png") no-repeat center right;
  background-size: contain;
}
.thanks-key .thanks-header-decor-right {
  background: url("/images/thanks-decor-right-key.png") no-repeat center right;
  background-size: contain;
}
.thanks-header-text {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.7vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(0, -6vw);
  will-change: transform, opacity;
  transition: transform .3s ease-out, opacity .3s ease-out;
}
.screen-5.show .thanks-header-text {
  transform: translate(0, 0);
  opacity: 1;
}
.thanks-hell .thanks-header-text {
  background: radial-gradient(79.87% 229.63% at 50% 174.07%, #FF8126 0%, #FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.thanks-key .thanks-header-text {
  background: radial-gradient(79.87% 229.63% at 50% 174.07%, #38CAFF 0%, #FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.thanks-set {
  position: relative;
  width: 21vw;
  height: 7vw;
  margin: 1vw auto 0;
  padding: 2.1vw .5vw 0 4.5vw;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  opacity: 0;
  transform: translate(0, 6vw);
  will-change: transform, opacity;
  transition: transform .3s ease-out, opacity .3s ease-out;
}
.screen-5.show .thanks-set {
  transform: translate(0, 0);
  opacity: 1;
}
.thanks-hell .thanks-set {
  background: url("/images/thanks-set-hell.avif") no-repeat center center;
  background-size: contain;
}
.thanks-key .thanks-set {
  background: url("/images/thanks-set-key.avif") no-repeat center center;
  background-size: contain;
}

.thanks-gate {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: -2vw auto 0;
  width: max-content;
  gap: 0;
}
.thanks-box {
  position: relative;
  z-index: 20;
  opacity: 0;
  transform: translate(-6vw, 0);
  will-change: transform, opacity;
  transition: transform .3s ease-out, opacity .3s ease-out;
}
.screen-5.show .thanks-box {
  transform: translate(0, 0);
  opacity: 1;
}

.thanks-box::before {
  content: "";
  position: absolute;
  left: 56%;
  top: 2vw;
  transform: translateX(-50%);
  z-index: 19;
  width: 30vw;
  height: 20vw;
  border-radius: 29.954vw;
  mix-blend-mode: plus-lighter;
  filter: blur(29.75px);
  opacity: .6;
}
.thanks-hell .thanks-box::before {
  background: radial-gradient(#FF1E00,  #FF1E00, #FFBA25);
}
.thanks-key .thanks-box::before {
  background: radial-gradient(#9bfcff, #25E9FF, #0084FF);
}
.thanks-box::after {
  content: "";
  position: absolute;
  left: 59%;
  top: 16vw;
  transform: translateX(-50%);
  z-index: 19;
  width: 38vw;
  height: 9.45vw;
  border-radius: 29.954vw;
  mix-blend-mode: plus-lighter;
  filter: blur(29.75px);
  opacity: .6;
}
.thanks-hell .thanks-box::after {
  background: radial-gradient(#FF1E00,  #FF1E00, #FFBA25);
}
.thanks-key .thanks-box::after {
  background: radial-gradient(#9bfcff, #25E9FF, #0084FF);
}

.thanks-box-img {
  position: relative;
  z-index: 21;
  width: 47vw;
  margin-right: -10vw;
}
.thanks-key .thanks-box-img {
  transform: scaleX(-1);
  margin-right: -5vw;
}

.thanks .item {
  width: 23vw;
  height: 26.4vw;
  z-index: 22;
  margin: 3vw -1vw 0;
  opacity: 0;
  transform: translate(6vw, 0);
  will-change: transform, opacity;
  transition: transform .3s ease-out, opacity .3s ease-out;
}
.screen-5.show .item {
  transform: translate(0, 0);
  opacity: 1;
}
.thanks .item::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 5;
  border-radius: 29.954vw;
  mix-blend-mode: soft-light;
  filter: blur(30px);
  opacity: 1;
}
.thanks-hell .item::before {
  background: radial-gradient(#4c2220,  #4c2220, #4c2220);
}
.thanks-key .item::before {
  background: radial-gradient(#0d2a36,  #0d2a36, #0d2a36);
}
.thanks .item-name {
  font-size: 1.4vw;
  line-height: 1.4;
}
.thanks .item-cat {
  font-size: 1.9vw;
}

.thanks-gate-decor {
  width: 29.2vw;
  height: 12.5vw;
  position: absolute;
  top: 14.5vw;
  left: 56%;
  z-index: 23;
  opacity: 0;
  transform: translate(6vw, 0);
  will-change: transform, opacity;
  transition: transform .3s ease-out, opacity .3s ease-out;
}
.screen-5.show .thanks-gate-decor {
  transform: translate(0, 0);
  opacity: 1;
}
.thanks-hell .thanks-gate-decor {
  left: 53%;
  background: url("/images/thanks-gate-decor-hell.png") no-repeat center center;
  background-size: contain;
}
.thanks-key .thanks-gate-decor {
  background: url("/images/thanks-gate-decor-key.png") no-repeat center center;
  background-size: contain;
}

.btn-go {
  position: absolute;
  top: 36%;
  left: 48%;
  z-index: 30;
  height: 6.68vw;
}
.thanks-hell .btn-go {
  filter: drop-shadow(0 0 10px #471612);
}
.thanks-key .btn-go {
  filter: drop-shadow(0 0 10px #12315c);
}

.btn-go .btn-text {
  font-size: 2.3vw;
}

/* /screen-5 */




/* screens */

.screen-1,
.screen-2,
.screen-3,
.screen-4,
.screen-5,
.stage-4-hell,
.stage-4-key {
  opacity: 0;
  visibility: hidden;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  line-height: 0 !important;
  overflow: hidden !important;
  position: relative;
  z-index: -1;
}
.show .screen-1.show,
.screen-2.show,
.screen-3.show,
.stage-4-hell.show,
.stage-4-key.show,
.screen-4.show-login,
.stage-4-hell.show .screen-4.show,
.stage-4-key.show .screen-4.show,
.stage-4-hell.show .screen-5.thanks-hell[data-item_show="1"].show,
.stage-4-hell.show .screen-5.thanks-hell[data-item_show="2"].show,
.stage-4-hell.show .screen-5.thanks-hell[data-item_show="3"].show,
.stage-4-key.show .screen-5.thanks-key[data-item_show="7"].show,
.stage-4-key.show .screen-5.thanks-key[data-item_show="8"].show,
.stage-4-key.show .screen-5.thanks-key[data-item_show="9"].show {
  height: auto !important;
  padding: auto !important;
  margin: auto !important; 
  border: auto !important;
  line-height: auto !important;
  overflow: visible !important;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
.screen-2.show {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  animation: LoadHide .1s ease-in-out 3.1s forwards;
}
@keyframes LoadHide {
  0% {
    height: auto !important;
    padding: auto !important;
    margin: auto !important; 
    border: auto !important;
    line-height: auto !important;
    overflow: visible !important;
    opacity: 1;
    visibility: visible;
  }
  100% {
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important; 
    border: none !important;
    line-height: 0 !important;
    overflow: hidden !important;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
}

/* /screens */





/* terms */
.terms {
  width: 100%;
  max-width: 74vw;
  margin: 0 auto;
  padding: 5vw 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
.terms h1 {
  color: #fff;
  text-align: center;
  font-family: "Montserrat", 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: "Montserrat", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.terms h3 {
  margin: 30px 0 10px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.terms:selection {
  background-color: #5baef1;
}
.terms :is(li, p) {
  margin: 5px 0;
}
.terms strong {
  font-weight: 700;
}
.terms ol {
  list-style-type: decimal;
  padding-left: 4vw;
}
.terms ul {
  list-style-type: disc;
  padding-left: 4vw;
}
/* /terms */

/* footer */
.footer {
  position: relative;
  z-index: 101;
  margin: auto auto 0;
  width: 100%;
  background: #020309;
  box-shadow: 0 4px 20px 0 #293657 inset;
  color: #6D8CBC;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.footer-container {
  padding: .75vw 0;
  position: relative;
  max-width: 1920px;
  width: 90%;  
  margin: 0 auto;
  border-radius: 1.25vw 1.25vw 0 0;display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.footer-language {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1vw;
}
.language-box {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1vw;
}
.language,
.language-active {
  padding: 0.625vw;
  background: #020309;
  border: 1px solid #3f5577;
  border-radius: 0.75vw;
  z-index: 1;
  color: #3F5577;
  font-size: 1.2vw;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
.language-active {
  background: #3F5577;
  color: #ffffff;
}

.edge {
  color: #6D8CBC;
  text-align: center;
  font-size: 1.125vw;
  font-weight: 500;
  line-height: 1;
}

.rules {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1vw;
  color: #6D8CBC;
  font-family: "Inter", sans-serif;
  font-size: 1.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.rules-link {
  color: #6d8bbb;
}
.rules-link:hover {
  color: #6d8bbb;
}
.footer-site {
  color: #6D8CBC;
  font-family: "Inter", sans-serif;
  font-size: 1.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: left;
}
.footer-info {
  color: #6D8CBC;
  font-family: "Inter", sans-serif;
  font-size: 1.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: right;
}
.footer-info a {
  color: #6D8CBC;
}

.footer-text-wrapper {
  display: block;
  padding: 0 0 3vw;
}
.footer-text {
  position: relative;
  height: 10vw;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 3.13vw;
  font-family: "Montserrat", sans-serif;
  color: #3F5577;
  font-size: 1.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  transition: height .3s ease-in-out;
  will-change: height;
}
.footer-text-wrapper.show .footer-text {
  height: auto;
  transition: height .3s ease-in-out;
}
.footer-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(transparent, #020309);
  pointer-events: none;
  z-index: 1;
}
.footer-text-wrapper.show .footer-text::after {
  display: none;
}
.footer-text h2 {
  margin: 2.5vw 0 .88vw;
  font-family: "Montserrat", sans-serif;
  color: #3F5577;
  font-size: 1.5vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.footer-text h3 {
  margin: 2.5vw 0 .88vw;
  font-family: "Montserrat", sans-serif;
  color: #3F5577;
  font-size: 1.125vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.footer-text p {
  margin-bottom: .88vw;
  font-family: "Montserrat", sans-serif;
  color: #3F5577;
  font-size: 1.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.footer-text p:last-child {
  margin-bottom: 0;
}
.footer-text ul,
.footer-text ol {
  padding-left: 1.5vw;
  font-family: "Montserrat", sans-serif;
  color: #3F5577;
  font-size: 1.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.footer-text ul {
  list-style-type: disc;
}
.footer-text ol {
  list-style-type: decimal;
}
.footer-text ul li,
.footer-text ol li {
  margin-bottom: .3vw;
  margin-left: 2vw;
}
.footer-text ul li:last-child,
.footer-text ol li:last-child {
  margin-bottom: 0;
}

.show-more {
  position: relative;
  padding: .5vw 1vw .5vw 2vw;
  color: #3F5577;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  margin-top: 3vw;
}
.show-more::before {
  content: "";
  width: 1.5vw;
  height: 100%;
  background: url(../images/more.png) no-repeat left center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%) rotate(0);
  transition: transform .3s ease-in-out;
}
.footer-text-wrapper.show .show-more::before {
  transform: translate(0, -50%) rotate(180deg);
}
.show-more:hover {
  filter: brightness(1.1);
}
.show-more-down {
  display: block;
}
.show-more-up {
  display: none;
}
.footer-text-wrapper.show .show-more-down {
  display: none;
}
.footer-text-wrapper.show .show-more-up {
  display: block;
}

/* /footer */


/* COOKIES */
.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: none;
  pointer-events: none;
}
.cookies.show {
  display: block;
}
.cookies-inner {
  position: relative;
  max-width: 100%;
  width: 100vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9vw;
  padding: 1.7vw;
  border-radius: .5vw;
  overflow: hidden;
  border: 0.052vw solid rgba(255, 129, 38, 0.3);
  box-shadow: 0 0 1.042vw rgba(255, 129, 38, 0.3), 0 0 2.083vw rgba(20, 249, 255, 0.2);
  background: radial-gradient(125.61% 78.26% at -8.89% 27.62%, rgba(255, 38, 0, 0.15) 0%, rgba(255, 38, 0, 0.00) 100%), rgba(0, 4, 32, 0.4);
  pointer-events: auto;
}
@media (max-width: 992px) {
  .cookies-inner {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1vw;
    padding: 1.2vw;
  }
}
@media (max-width: 660px) {
  .cookies-inner {
    width: 100%;
    gap: 1vw;
    padding: 2vw;
  }
}
.cookies-inner::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(65% 65% at 20% 50%, rgba(255, 129, 38, 0.2) 0%, rgba(255, 129, 38, 0) 60%), radial-gradient(70% 70% at 80% 50%, rgba(0, 178, 255, 0.2) 0%, rgba(0, 178, 255, 0) 60%);
  filter: blur(2.5vw);
  z-index: 0;
}
.cookies-inner::after {
  content: "";
  position: absolute;
  inset: 0.052vw;
  border-radius: calc(1vw - 0.052vw);
  background: linear-gradient(135deg, rgba(255, 129, 38, 0.05), rgba(0, 178, 255, 0.05));
  z-index: 0;
}
.cookies-text {
  position: relative;
  z-index: 1;
  flex: 1;
}
.cookies-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3vw;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 0.35vw;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 0 1.042vw rgba(255, 129, 38, 0.5), 0 0 2.083vw rgba(0, 178, 255, 0.3);
}
@media (max-width: 992px) {
  .cookies-title {
    font-size: 1.6vw;
    margin-bottom: .6vw;
  }
}
@media (max-width: 660px) {
  .cookies-title {
    font-size: 2.6vw;
  }
}
.cookies-description {
  position: relative;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-size: .85vw;
  font-weight: 400;
  line-height: 1.5;
  color: #FFF;
  margin: 0;
  max-width: 46.875vw;
}
@media (max-width: 992px) {
  .cookies-description {
    font-size: 1.2vw;
    max-width: 100%;
  }
}
@media (max-width: 660px) {
  .cookies-description {
    font-size: 2.2vw;
  }
}
.cookies-description a {
  color: #FF8126;
  text-decoration: underline;
  transition: color 0.16s ease-in-out;
}
.cookies-description a:hover {
  color: #14F9FF;
}
.cookies-actions {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 660px) {
  .cookies-actions {
    width: 100%;
  }
}
.btn-accept {
  margin-left: .9vw;
  height: 3.2vw;
}
.btn-accept .btn-text {
  font-size: 1.3vw;
}
@media (max-width: 660px) {
  .btn-accept {
    height: 6.2vw !important;
  }
  .btn-accept .btn-text {
    font-size: 3vw;
  }
}
/* COOKIES */



/* media */
.mb {
  display: none;
}
@media (max-width: 992px) {
  .main {
    padding: 10vw 0 0;
  }
}

@media (max-width: 660px) {
  .dk {
    display: none;
  }
  .mb {
    display: block;
  }

  .main {
    padding: 19vw 0 0;
  }

  .content {
    padding: 0 0 10vw;
  }

  .header-logo {
    margin: 0 auto;
  }

  .header-logo-img {
    width: 15vw;
  }

  .hero-spin {
    display: none;
  }
  
  .btn {
      position: relative;
      height: 13vw;
  }

  .spin {
    width: 51.15vw;
    height: 34.125vw;
  }

  .terms {
    padding: 10vw 0;
  }
  .terms h1 {
    font-size: 5vw;
  }

  .footer-container {
    padding: 4.75vw 0;
  }
  .footer-text {
    flex-direction: column;
    height: 45vw;
  }
  .footer-text h2 {
    margin: 4.5vw 0 2.88vw;
    font-size: 4.125vw;
  }
  .footer-text h3 {
    margin: 4.5vw 0 2.88vw;
    font-size: 4.5vw;
  }
  .footer-text p {
    margin-bottom: 2.88vw;
    font-size: 3.125vw;
  }
  .footer-text ul,
  .footer-text ol {
    padding-left: 5.5vw;
    font-size: 3.125vw;
  }
  .footer-text ul li,
  .footer-text ol li {
    margin-bottom: 1.3vw;
    margin-left: 4vw;
  }
  .show-more {
    margin-top: 5.56vw;
    padding: 1.5vw 2vw 1.5vw 6vw;
    font-size: 3.125vw;
  }
  .show-more::before {
    width: 4.5vw;
  }

  .footer-site,
  .footer-info {
    font-size: 3.125vw;
  }

  .footer-language {
    order: 3;
  }
  .language-box {
    position: absolute;
    bottom: 13vw;
    right: 0;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .footer-language.active .language-box {
    opacity: 1;
    transform: translateY(0);
  }
  .language,
  .language-active {
    padding: 3.625vw;
    font-size: 4.2vw;
    border-radius: 3.75vw;
  }
  .edge {
    font-size: 3.5vw;
  }
  .rules {
    font-size: 3.5vw;
    flex-direction: column;
  }


 /* screen-1 mb */

  .hero-item {
    width: 38.05vw;
    height: 20.8vw;
  }
  .hero-hell .hero-item-name {
    right: 9.38vw;
  }
  .hero-key .hero-item-name {
    left: 7.38vw;
  }
  .hero-hell .hero-item-cat {
    left: 2vw;
  }
  .hero-key .hero-item-cat {
    right: 2vw;
    bottom: 2.02vw;
  }
  .hero-hell:hover .hero-items {
    transform: translate(41%, 0);
  }
  .hero-key:hover .hero-items {
    transform: translate(-136.5%, 0);
  }
  .hero-item-name {
    font-size: 2.9vw;
  }
  .hero-item-cat {
    font-size: 2.9vw;
  }
  .hero-header-text {
    font-size: 6.2vw;
  }
  .hero-header-decor-left,
  .hero-header-decor-right {
    display: none;
  }
  .hero-set-hell,
  .hero-set-key {
    padding: 5.2vw 0 1.6vw 14vw;
    width: 43.6vw;
    height: 20.56vw;
    font-size: 3.1vw;
  }
  .hero-set-hell {
    margin-left: -3vw;
  }
  .hero-set-key {
    width: 50vw;
  }

  .hero-choice {
    flex-direction: column;
    padding-top: 8vw;
    gap: 4.55vw;
  }
  .hero-hell,
  .hero-key {
    width: 100%;
  }

  .hero-box {
    width: 100%;
    height: 63.9vw;
  }
  .hero-box::before {
    width: 70%;
    height: 90%;
    top: 9%;
  }
  .hero-box::after {
    content: "";
    position: absolute;
    top: 2%;
    z-index: 18;
    width: 85%;
    height: 90%;
    border-radius: 0;
    mix-blend-mode: normal;
    filter: none;
    opacity: 1;
    transition: none;
  }
  .hero-hell .hero-box::after {
    left: auto;
    right: 5%;
    background: url("/images/hero-decor-mb-hell.png") no-repeat right center;
    background-size: contain;
  }
  .hero-key .hero-box::after {
    left: 5%;
    background: url("/images/hero-decor-mb-key.png") no-repeat left center;
    background-size: contain;
  }
  .hero-hell .hero-openings {
    padding: 0 1.8vw 0 10.06vw;
    left: -2vw;
    top: -8vw;
    width: 45vw;
    height: 18.3vw;
    gap: 4.53vw;
  }
  .hero-key .hero-openings {
    padding: 0 8.7vw 0 3.2vw;
    right: -2vw;
    top: -10vw;
    width: 45vw;
    height: 18.3vw;
    gap: 4.53vw;
  }
  .hero-openings-text {
    font-size: 3.2vw;
  }
  .hero-openings-count {
    font-size: 3.2vw;
  }
  .hero .btn-hell {
    top: 52vw;
    left: 50%;
    transform: translate(-112%, 0);
  }
  .hero .btn-key {
    top: 52vw;
    right: 50%;
    transform: translate(118%, 0);
    left: auto;
  }
  .btn-text {
    font-size: 5vw;
  }

  .hero-attention {
    padding: 10.38vw 0.68vw 0.68vw;
    width: 45.35vw;
    height: 22.5vw;
    font-size: 3.4vw;
  }
  .hero-attention::before {
    display: none;
  }

  .hero-hell .hero-title {
    top: 20vw;
    left: -7.8vw;
    font-size: 16.5vw;
  }
  .hero-key .hero-title {
    top: 20vw;
    right: -4.8vw;
    left: auto;
    font-size: 16.5vw;
  }
  .hero-hell .hero-box-img {
    left: 5vw;
  }
 /* /screen-1 mb */


  /* screen-2 mb */
  .load-left {
    width: 110vw;
    height: 110vw;
    transform: translate(-50%, -25%) rotate(-50deg);
  }
  .screen-2.show .load-left {
    transform: translate(-6vw, -25%) rotate(0deg);
  }
  .load-right {
    display: none;
  }
  .load-initializing {
    top: 10vw;
    width: 85vw;
    height: 23.75vw;
    transform: translate(-50%, 0%);
  }
  .load-initializing-text {
    padding-top: 5.2vw;
    font-size: 6vw;
  }
  .load-bar {
    position: absolute;
    left: 50%;
    top: 34vw;
    transform: translate(-50%, 0%);
    width: 85vw;
    height: 16vw;
  }
  .load-bar-line {
    width: 83vw;
    height: 9vw;
    bottom: 1vw;
  }

  .load-status {
    top: 46vw;
  }
  .load-status-item {
    height: 12vw;
    font-size: 3.8vw;
    line-height: 12vw;
    padding-left: 8vw;
    margin-left: -3vw;
    top: 0;
    transform: translate(-100%, 0%);
  }
  .screen-2.show .load-status-item-1 {
    width: 52.3vw;
  }
  .screen-2.show .load-status-item-2 {
    width: 55.4vw;
  }
  .screen-2.show .load-status-item-3 {
    width: 39.6vw;
  }
  @keyframes load-status {
    0% {
      opacity: 1;
      transform: translate(-100%, 0%);
    }
    20% {
      opacity: 1;
      transform: translate(-50%, 0%);
    }
    80% {
      opacity: 1;
      transform: translate(-50%, 0%);
    }
    100% {
      transform: translate(0%, 0%);
      opacity: 0;
    }
  }
  @keyframes load-status-last {
    0% {
      opacity: 1;
      transform: translate(-100%, 0%);
    }
    20% {
      opacity: 1;
      transform: translate(-50%, 0%);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, 0%);
    }
  }
  /* /screen-2 mb */

  /* screen-3 mb */
  .roll-title {
    width: 58.4vw;
    height: 14.1vw;
  }
  .roll-title-text {
    font-size: 5.8vw;
  }
  .roll-decor-top {
    display: none;
  }
  .roll-decor-left,
  .roll-decor-left-active {
    position: absolute;
    left: 0%;
    top: 6%;
    width: 27%;
    height: 87%;
    z-index: 7;
    transform: scaleX(1);
    transform-origin: left center;
  }
  .roll-hell .roll-decor-left {
    background: url("../images/roll-decor-left-mb-hell.avif");
    background-size: 100% 100%;
  }
  .roll-key .roll-decor-left {
    background: url("../images/roll-decor-left-mb-key.avif");
    background-size: 100% 100%;
  }
  .roll-hell .roll-decor-left-active {
    background: url("../images/roll-decor-left-active-mb-hell.avif");
    background-size: 100% 100%;
  }
  .roll-key .roll-decor-left-active {
    background: url("../images/roll-decor-left-active-mb-key.avif");
    background-size: 100% 100%;
  }
  .roll-decor-right,
  .roll-decor-right-active {
    position: absolute;
    right: 0%;
    top: 6%;
    width: 27%;
    height: 87%;
    z-index: 7;
    transform: scaleX(1);
    transform-origin: right center;
  }
  .roll-hell .roll-decor-right {
    background: url("../images/roll-decor-right-mb-hell.avif");
    background-size: 100% 100%;
  }
  .roll-key .roll-decor-right {
    background: url("../images/roll-decor-right-mb-key.avif");
    background-size: 100% 100%;
  }
  .roll-hell .roll-decor-right-active {
    background: url("../images/roll-decor-right-active-mb-hell.avif");
    background-size: 100% 100%;
  }
  .roll-key .roll-decor-right-active {
    background: url("../images/roll-decor-right-active-mb-key.avif");
    background-size: 100% 100%;
  }
  .roll-decor-left-active,
  .roll-decor-right-active {
    width: 20%;
  }

  .roll-reel {
    position: relative;
    z-index: 14;
    margin: 11vw auto 0;
    width: 100vw;
    max-width: 100%;
    height: 53.3vw;
    background-size: auto 140% !important;
  }
  .roll-left,
  .roll-right {
    width: 1.2vw;
  }
  .roll-track {
    width: 95vw;
  }
  .item {
    margin: 0 -3.5vw;
    width: 57vw;
    height: 59.4vw;
  }
  .item-name {
    font-size: 3.2vw;
  }
  .item-cat {
    font-size: 4.375vw;
  }
  .roll-top {
    top: -11vw;
    width: 20.875vw;
    height: 20.875vw;
  }
  .roll-bottom {
    bottom: -12vw;
    width: 17.875vw;
    height: 16.875vw;
  }
  .roll-action {
    padding: 14vw 0 0;
  }

  .btn-open {
    transform: translate(-42.5vw, 6vw);
  }

  .screen-3.show .btn-open {
    transform: translate(-42.5vw, 0);
    opacity: 1;
  }
  .roll.active .btn-claim {
    transform: translate(21.2vw, 0);
  }
  .roll.active .btn-claim.random_end {
    transform: translate(0, 0);
  }
  .roll.active .btn-try {
    transform: translate(18.2vw, 0);
  }
  @keyframes BtnOpenHide {
    0% {
      opacity: 1;
      visibility: hidden;
      transform: translate(-42.5vw, 0);
    }

    60% {
        opacity: 1;
        visibility: visible;
        transform: translate(-8.5vw, 0);
    }
    80% {
        opacity: 1;
        visibility: visible;
        transform: translate(-18.5vw, 0);
    }
    100% {
        opacity: 0;
        visibility: visible;
        transform: translate(-18.5vw, 0);
        z-index: -1;
    }
  }


.roll-hell .item,
.roll-key .item {
  margin: 0 -7vw 0 0 !important;
}

.roll-hell .elements {
  transform: translateX( calc( (-57vw*(var(--items-count--hell,0) + var(--random-num--hell,0) + 0.5)) - (-7vw*(var(--items-count--hell,0) + var(--random-num--hell,0))) + 47.5vw ) );
}
.roll-key .elements {
  transform: translateX( calc( (-57vw*(var(--items-count--key,0) + var(--random-num--key,0) + 0.5)) - (-7vw*(var(--items-count--key,0) + var(--random-num--key,0))) + 47.5vw ) );
}

@keyframes EFirstHell {
  0% {
    transform: translateX(10vw);
  }
  100% {
    transform: translateX( calc( (-57vw*var(--items-count--hell,0) * 3) - (-7vw*(var(--items-count--hell,0) - 1)) ) );
  }
}
@keyframes EFirstKey {
  0% {
    transform: translateX(10vw);
  }
  100% {
    transform: translateX( calc( (-57vw*var(--items-count--key,0) * 3) - (-7vw*(var(--items-count--key,0) - 1)) ) );
  }
}
  /* /screen-3 mb */


  /* screen-4 mb */
  .login {
    padding: 0;
    flex-direction: column;
  }
  .login-left {
    margin: 0 auto;
  }
  .login .item {
    width: 90vw;
    height: 93.4vw;
  }
  .login .item-name {
    font-size: 5.6vw;
  }
  .login .item-cat {
    font-size: 7.1vw;
  }
  .login-right {
    padding: 0;
    width: 80vw;
    margin: -12vw auto 0;
  }
  .login-title {
    font-size: 11vw;
  }
  .login-set {
    width: 54vw;
    height: 22vw;
    padding: 5.9vw .8vw 0 13.5vw;
    font-size: 4.3vw;
    margin: 0 0 0 -3vw;
  }
  .login-decor {
    left: auto;
    right: -2.5vw;
    top: 16.2vw;
    width: 35vw;
    height: 17vw;
  }
  .btn-login {
    height: 20.6vw !important;
    margin: 0 auto;
  }
  .btn-login .btn-text {
    padding-left: 16.6vw;
    font-size: 5.4vw;
  }
  .login-note {
    width: 100%;
    text-align: center;
    font-size: 3vw;
    padding-left: 0;
    margin: 0 auto;
  }
  /* /screen-4 mb */


  /* screen-5 mb */
  .thanks-header {
    width: 90vw;
  }
  .thanks-header-text {
    font-size: 8.7vw;
  }

  .thanks-set {
    width: 74vw;
    height: 24vw;
    padding: 7.3vw .5vw 0 16vw;
    margin: 1vw 0 0 6vw;
    font-size: 4vw;
  }

  .thanks-header-decor-left {
    width: 90vw;
    height: 26vw;
    position: absolute;
    top: 31vw;
    left: 50%;
    transform: translate(-50%, -6vw);
  }

.screen-5.show .thanks-header-decor-left {
    transform: translate(-50%, 0);
    opacity: 1;
}

  .thanks-hell .thanks-header-decor-left {
      background: url(../images/thanks-decor-top-mb-hell.png) no-repeat center left;
      background-size: contain;
  }
  .thanks-key .thanks-header-decor-left {
      background: url(../images/thanks-decor-top-mb-key.png) no-repeat center left;
      background-size: contain;
  }
  .thanks-header-decor-right {
    display: none;
  }

  .thanks-gate {
    flex-direction: column;
    align-items: center;
  }
  .thanks-box {
    order: 2;
    z-index: 23;
  }
  .thanks .item {
    width: 68vw;
    height: 73.4vw;
  }
  .thanks .item-name {
    font-size: 3.4vw;
    line-height: 1.4;
  }
  .thanks .item-cat {
    font-size: 5.5vw;
  }
  .thanks .thanks-box-img {
    width: 100vw;
    margin: -16vw 0 0;
    z-index: 30;
  }
  .thanks-box::before {
    top: -9vw;
    width: 80%;
    height: 80%;
  }
  .thanks-box::after {
    left: 53%;
    top: 13vw;
    width: 80%;
    height: 20.45vw;
  }

  .thanks-gate-decor {
    width: 90vw;
    height: 85vw;
    position: absolute;
    top: 5vw;
    left: 50% !important;
    transform: translate(-50%, 6vw);
  }
  .screen-5.show .thanks-gate-decor {
      transform: translate(-50%, 0);
      opacity: 1;
  }

  .thanks-hell .thanks-gate-decor {
    background: url("/images/thanks-gate-decor-mb-hell.png") no-repeat center center;
    background-size: contain;
  }
  .thanks-key .thanks-gate-decor {
    background: url("/images/thanks-gate-decor-mb-key.png") no-repeat center center;
    background-size: contain;
  }

  .thanks-hell .btn-go,
  .thanks-key .btn-go {
    position: absolute !important;
    top: -5vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .btn-go .btn-text {
    font-size: 4.5vw;
  }

  /* /screen-5 mb */

  .screen-1 .bg-left {
    width: 50%;
    height: 50%;
    position: absolute;
    left: 0;
    top: 30%;
  }
  .screen-1 .bg-right {
    width: 50%;
    height: 50%;
    right: 0;
    top: auto;
    bottom: 10%;
    transform: translate(0, 0);
  }

  .screen-2 .bg-left,
  .screen-3 .bg-left {
    width: 100%;
    height: 30%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    filter: brightness(1.1) blur(75px);
  }
  .screen-2 .bg-right,
  .screen-3 .bg-right {
    width: 100%;
    height: 30%;
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translate(-50%, 0);
    filter: brightness(1.1) blur(75px);
  }


}
/* /media */