html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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: "Orbitron";
  src: url("/fonts/Orbitron-Regular.woff2") format("woff2"),
       url("/fonts/Orbitron-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Orbitron";
  src: url("/fonts/Orbitron-Bold.woff2") format("woff2"),
       url("/fonts/Orbitron-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Orbitron";
  src: url("/fonts/Orbitron-Black.woff2") format("woff2"),
       url("/fonts/Orbitron-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@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;
}
@font-face {
  font-family: "Realest-Extended";
  src: url("/fonts/Realest-Extended.woff2") format("woff2"),
       url("/fonts/Realest-Extended.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: #30baff;
  color: #fff;
}

html, body {
  overscroll-behavior: none;
  font-family: "Orbitron", sans-serif;
  font-size: 0.7vw;
  font-weight: 700;
  line-height: 1.5;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000E20 url("/images/bg.jpg") no-repeat center top fixed;
  background-size: cover;
}

/* main */
body:hover .bg {
  filter: brightness(.9);
}

.spin {
  width: 10vw;
  height: 10vw;
  background: url("/images/spin.png") no-repeat center center;
  background-size: contain;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.6;
  animation: Spin 2.4s linear infinite;
}
.body.show .spin {
  animation-play-state: paused;
  animation: Spin 0.4s linear forwards;
  transition: opacity 0.4s ease-out-out;
  opacity: 0;
}
@keyframes Spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.main {
  position: relative;
  min-height: 94vh;
  padding: 6vw 0 0;
}
.content {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
}

.btn {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}
.btn-blue {
  filter: brightness(1);
  will-change: filter;
  animation: alternate 1s BtnBlueGlow 0.6s infinite;
}
@keyframes BtnBlueGlow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.1);
  }
}

.btn-violet {
  opacity: 0;
  position: relative;
  padding: 0.5rem 4rem;
  width: auto;
  height: auto;
  display: flex;
  transform: translate(50%, 0%);
  align-items: center;
  justify-content: center;
  border-radius: 6.25rem;
  border: 1px solid #B443FF;
  background: radial-gradient(52.77% 156.87% at 50.15% 128.75%, rgba(192, 97, 255, 0.80) 0%, rgba(118, 0, 196, 0.10) 100%), #13142B;
  box-shadow: 0 0 8px 0 rgba(180, 67, 255, 0.80) inset, 0 0 15px 0 rgba(180, 67, 255, 0.40), 0 0 12.544px 0 rgba(180, 67, 255, 0.50), 0 0 6.272px 0 rgba(180, 67, 255, 0.60), 0 0 1.792px 0 rgba(180, 67, 255, 0.70), 0 0 0.896px 0 rgba(180, 67, 255, 0.80);
}
.btn-violet:hover {
  box-shadow: 0 0 8px 0 #B443FF inset, 0 0 50px 0 rgba(180, 67, 255, 0.60), 0 0 30px 0 rgba(180, 67, 255, 0.70), 0 0 15px 0 rgba(180, 67, 255, 0.80), 0 0 6px 0 rgba(180, 67, 255, 0.90), 0 0 2px 0 #B443FF;

}
.btn-violet .btn-text {
  position: relative;
  color: #B443FF;
  text-align: center;
  text-shadow: 0 0 3px rgba(117, 11, 187, 0.40), 0 0 4px rgba(0, 0, 0, 0.50), 0 0 1px rgba(205, 147, 243, 0.90);
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.text-violet {
  color: #B443FF;
}
.text-blue {
  color: #30B9FF;
}

/* /main */

/* header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  padding: 2vw 8vw 1vw;
  width: 100%;
}
.header-logo {
  
}

.header-logo-img {
  width: 16vw;
}
/* /header */



/* screens */
.screen-1,
.screen-2,
.screen-3,
.screen-4,
.screen-5,
.initializing {
  opacity: 0;
  visibility: hidden !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  line-height: 0 !important;
  position: fixed;
  z-index: -1;
}
.screen-1.show,
.screen-2.show,
.screen-3.show,
.screen-4.show,
.screen-5.show {
  position: relative;
  height: auto !important;
  padding: auto !important;
  margin: auto !important; 
  border: auto !important;
  line-height: auto !important;
  opacity: 1;
  visibility: visible !important;
  z-index: 100;
}
.screen-4.show {
  height: 100vh !important;
}
.initializing.show {
  opacity: 1;
  width: 100%;
  height: 100% !important;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  visibility: visible !important;
  animation: LoadHide 0.1s ease-in-out 3.5s forwards;
}
@keyframes LoadHide {
  0% {
    height: auto !important;
    padding: auto !important;
    margin: auto !important; 
    border: auto !important;
    line-height: auto !important;
    opacity: 1;
    visibility: visible;
  }
  100% {
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important; 
    border: none !important;
    line-height: 0 !important;
    opacity: 0;
    visibility: hidden !important;
    z-index: -1;
  }
}
/* /screens */


/* screen-1 */
.first {
  position: relative;
}
.first-title {
  height: 6.9375rem;
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}
.first-title-text {
  opacity: 0;
  position: relative;
  transform: translate(-50%, 0);
  background: linear-gradient(92deg, #6DCEFF 0%, #FFF 51.63%, #6DCEFF 103.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Orbitron", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out 0.6s, opacity 0.6s ease-out 0.6s;
}
.screen-1.show .first-title-text {
  opacity: 1;
  transform: translate(0, 0);
}
.first-title-text-top {
  font-size: 2.5rem;
}
.first-title-text-bottom {
  font-size: 3.25rem;
}
.first-title-timer {
  opacity: 0;
  position: relative;
  transform: translate(50%, 0);
  width: 19.9375rem;
  height: 6.9375rem;
  position: relative;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out 0.6s, opacity 0.6s ease-out 0.6s;
}
.screen-1.show .first-title-timer {
  opacity: 1;
  transform: translate(0, 0);
}
.first-title-timer-img {
  position: relative;
  z-index: 11;
  background: url("/images/timer.png") no-repeat center center;
  background-size: contain;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  filter: drop-shadow(0 0 1px rgb(17, 255, 255)) drop-shadow(0 0 5px rgba(48, 185, 255, 0.50));
  will-change: filter;
  animation: alternate 1s TimerGlow 0.6s infinite;
}
@keyframes TimerGlow {
  0% {
    filter: drop-shadow(0 0 1px rgb(17, 255, 255)) drop-shadow(0 0 5px rgba(48, 185, 255, 0.50));
  }
  20% {
    filter: drop-shadow(0 0 1px rgb(17, 255, 255)) drop-shadow(0 0 5px rgba(48, 185, 255, 0.50));
  }
  80% {
    filter: drop-shadow(0 0 1px rgb(17, 255, 255)) drop-shadow(0 0 1px rgb(17, 255, 255)) drop-shadow(0 0 2px rgb(17, 255, 255)) drop-shadow(0 0 3px rgba(48, 185, 255, 0.90)) drop-shadow(0 0 3px rgba(48, 185, 255, 0.90)) drop-shadow(0 0 4px rgba(48, 185, 255, 0.70)) drop-shadow(0 0 5px rgba(48, 185, 255, 0.60)) drop-shadow(0 0 5px rgba(48, 185, 255, 0.50));
  }
  100% {
    filter: drop-shadow(0 0 1px rgb(17, 255, 255)) drop-shadow(0 0 1px rgb(17, 255, 255)) drop-shadow(0 0 2px rgb(17, 255, 255)) drop-shadow(0 0 3px rgba(48, 185, 255, 0.90)) drop-shadow(0 0 3px rgba(48, 185, 255, 0.90)) drop-shadow(0 0 4px rgba(48, 185, 255, 0.70)) drop-shadow(0 0 5px rgba(48, 185, 255, 0.60)) drop-shadow(0 0 5px rgba(48, 185, 255, 0.50));
  }
}
.first-title-timer-text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 12;
  transform: translate(-50%, -50%);
  width: 80%;  
  background: linear-gradient(92deg, #6DCEFF 0%, #FFF 51.63%, #6DCEFF 103.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Realest-Extended", monospace;
  font-size: 3.8rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 15px rgba(48, 185, 255, 0.40), 0 0 12.544px rgba(48, 185, 255, 0.50);
}
.first-title-timer-text::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 50%;
  top: 90%;
  z-index: 13;
  transform: translate(-50%, -50%);
  background: rgba(34, 163, 243, 0.8);
  mix-blend-mode: plus-lighter;
  filter: blur(30px);
  opacity: 0;
  will-change: opacity;
  animation: alternate 0.5s TimerGlowAfter 0.6s infinite;
}
@keyframes TimerGlowAfter {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.first-title-timer-text-content {
  width: 45%;
  text-align: left;
}
.first-title-timer-text-center {
  width: 10%;
  text-align: center;
}

.box {
  position: relative;
  width: 59.375rem;
  height: 29.1875rem;
  margin: -3rem auto 0;
  z-index: 10;
}
.box-smoke {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  z-index: 11;
  transform: translate(-50%, -50%);
  background: url("/images/smoke.png") no-repeat center center;
  background-size: contain;
  will-change: opacity;
  transition: opacity 1.2s ease-out 0.6s;
}
.screen-1.show .box-smoke,
.screen-3.show .box-smoke,
.screen-5.show .box-smoke {
  opacity: 1;
}

.box-light {
  opacity: 0.5;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  z-index: 12;
  transform: translate(-50%, -50%);
  background: rgba(34, 163, 243, 0.70);
  mix-blend-mode: plus-lighter;
  filter: blur(150px);
  will-change: opacity;
  transition: opacity 1.2s ease-out 0.6s;
}
.screen-1.show .box-light,
.screen-3.show .box-light,
.screen-5.show .box-light {
  opacity: 1;
}

.box-light-min {
  opacity: 0.5;
  position: absolute;
  width: 70%;
  height: 70%;
  left: 50%;
  top: 50%;
  z-index: 12;
  transform: translate(-50%, -50%);
  background: rgba(34, 163, 243, 0.70);
  mix-blend-mode: plus-lighter;
  filter: blur(150px);
  will-change: opacity;
  transition: opacity 1.2s ease-out 0.6s;
}
.screen-1.show .box-light-min,
.screen-3.show .box-light-min,
.screen-5.show .box-light-min {
  opacity: 1;
}

.box-img {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: auto;
  left: 50%;
  top: 50%;
  z-index: 20;
  border: none;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(0.6);
  filter: brightness(1);
  will-change: filter, transform, opacity;
  transition: filter 0.4s ease-out 0.2s, transform 0.4s ease-out 0.2s, opacity 0.4s ease-out 0.2s;
}
.screen-1.show .box-img {
  filter: brightness(1.2);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.box-img:hover {
  transition: filter 0.2s ease-out, transform 0.2s ease-out;
  filter: brightness(1.3) !important;
  transform: translate(-50%, -50%) scale(1.01) !important;
}

.decor-line-left {
  opacity: 0;
  position: absolute;
  left: -2%;
  top: 21%;
  z-index: 19;
  transform: translate(-50%, 0);
  width: 21.1875rem;
  height: 25.3125rem;
  background: url("/images/decor-line-left.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 0.6s, opacity 1.2s ease-out 0.6s;
}
.screen-1.show .decor-line-left,
.screen-5.show .decor-line-left {
  opacity: 1;
  transform: translate(0%, 0%);
}
.decor-line-right {
  opacity: 0;
  position: absolute;
  right: -2%;
  top: 21%;
  z-index: 19;
  transform: translate(50%, 0);
  width: 21.1875rem;
  height: 25.3125rem;
  background: url("/images/decor-line-right.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 0.6s, opacity 1.2s ease-out 0.6s;
}
.screen-1.show .decor-line-right,
.screen-5.show .decor-line-right {
  opacity: 1;
  transform: translate(0%, 0%);
}

.decor-oval-left {
  opacity: 0;
  position: absolute;
  left: 1%;
  top: 26%;
  z-index: 19;
  transform: translate(0%, -50%);
  width: 1.8125rem;
  height: 7.4375rem;
  background: url("/images/decor-oval.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 0.6s, opacity 1.2s ease-out 0.6s;
  animation: alternate 1.2s DecorOval 0.6s infinite;
}
.screen-1.show .decor-oval-left,
.screen-5.show .decor-oval-left {
  opacity: 1;
  transform: translate(0%, 0%);
}
.decor-oval-right {
  opacity: 0;
  position: absolute;
  right: 1%;
  top: 26%;
  z-index: 19;
  transform: translate(0%, -50%);
  width: 1.8125rem;
  height: 7.4375rem;
  background: url("/images/decor-oval.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 0.6s, opacity 1.2s ease-out 0.6s;
  animation: alternate 1.2s DecorOval 0.6s infinite;
}
.screen-1.show .decor-oval-right,
.screen-5.show .decor-oval-right {
  opacity: 1;
  transform: translate(0%, 0%);
}
@keyframes DecorOval {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -50%);
  }
}

.decor-plus-left {
  opacity: 0;
  position: absolute;
  left: -3%;
  top: 98%;
  z-index: 19;
  transform: translate(-50%, 0);
  width: 4.8125rem;
  height: 1.3125rem;
  background: url("/images/decor-plus-blue.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 0.6s, opacity 1.2s ease-out 0.6s;
  animation: alternate 1.2s DecorPlusLeft 0.6s infinite;
}
.screen-1.show .decor-plus-left,
.screen-5.show .decor-plus-left {
  opacity: 1;
  transform: translate(0%, 0%);
}
.decor-plus-right {
  opacity: 0;
  position: absolute;
  right: -3%;
  top: 98%;
  z-index: 19;
  transform: translate(50%, 0);
  width: 4.8125rem;
  height: 1.3125rem;
  background: url("/images/decor-plus-blue.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 0.6s, opacity 1.2s ease-out 0.6s;
  animation: alternate 1.2s DecorPlusRight 0.6s infinite;
}
.screen-1.show .decor-plus-right,
.screen-5.show .decor-plus-right {
  opacity: 1;
  transform: translate(0%, 0%);
}
@keyframes DecorPlusLeft {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
@keyframes DecorPlusRight {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50%, 0);
  }
}

.first-subtitle {
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: -15%;
  z-index: 20;
  transform: translate(-50%, 50%);
  width: 22.02813rem;
  height: 4.92169rem;
  background: url("/images/first-subtitle.png") no-repeat center center;
  background-size: cover;
  color: #FFF;  
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.92169rem;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 0.6s, opacity 1.2s ease-out 0.6s;
}
.screen-1.show .first-subtitle {
  opacity: 1;
  transform: translate(-50%, 0%);
}

.note {
  opacity: 0;
  position: relative;
  margin: 6rem auto 0;
  width: 49.5rem;
  height: 6.6875rem;
  transform: translate(-50%, 0%);
  background: url("/images/note.png") no-repeat center center;
  background-size: contain;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 0.6s, opacity 1.2s ease-out 0.6s;
}
.screen-1.show .note {
  opacity: 1;
  transform: translate(0%, 0%);
}
.note-text-left {
  padding: 1rem 0 0 1.75rem;
  width: 56%;
  color: #FFF;
  text-align: left;
  font-family: "Orbitron", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
.note-text-right {
  padding: 2.25rem 1.75rem 0 0;
  width: 44%;
  color: #FFF;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}

.btn-join {
  margin: 3rem auto 0;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 0.6s, opacity 1.2s ease-out 0.6s;
}
.screen-1.show .btn-join {
  opacity: 1;
  transform: translate(0%, 0%);
}
/* /screen-1 */


/* screen-2 */
.screen-2 .bg {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  background: url("/images/bg2.jpg") no-repeat center center;
  background-size: cover;
  transition: opacity 0.2s ease-out;
}
.screen-2.show .bg {
  opacity: 1;
}
.choose {
  position: relative;
  z-index: 2;
}
.choose-title {
  opacity: 0;
  position: relative;
  margin: 0 auto;
  width: 50rem;
  transform: translate(-50%, 0);
  background: linear-gradient(92deg, #B443FF 0%, #FFF 51.63%, #B443FF 103.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 3.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out 0.2s, opacity 0.6s ease-out 0.2s;
}
.screen-2.show .choose-title {
  opacity: 1;
  transform: translate(0, 0);
}
.choose-subtitle {
  opacity: 0;
  position: relative;
  margin: 1.5rem auto 0;
  padding: 1rem 2rem;
  transform: translate(50%, 0);
  width: 25.33763rem;
  height: 6.35638rem;
  background: url("/images/choose-subtitle.png") no-repeat center center;
  background-size: contain;
  color: #FFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out 0.2s, opacity 0.6s ease-out 0.2s;
}
.screen-2.show .choose-subtitle {
  opacity: 1;
  transform: translate(0, 0);
}

.choose-items-wrap {
  width: 77.6875rem;
  margin: 0 auto;
  position: relative;
}
.choose-items {
  position: relative;
  margin: 3.13rem auto 0;
  padding: 0 3.8rem;
  width: 77.6875rem;
  height: 32.275rem;
  background: url("/images/decor-line-choose.png") no-repeat center center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose-items::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 200%;
  background: url("/images/choose-smoke.png") no-repeat center center;
  background-size: contain;
}
.choose-item {
  opacity: 0;
  position: relative;
  width: 23.1875rem;
  height: 29.3125rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transform: translate(0%, 0%);
  will-change: transform, filter;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.screen-2.show .choose-item-blue {
  opacity: 1;
}
.choose-item-green {
  transform: translate(-100%, 0%);
}
.screen-2.show .choose-item-green {
  opacity: 1;
  transform: translate(0%, 0%);
}
.choose-item-violet {
  transform: translate(-200%, 0%);
}
.screen-2.show .choose-item-violet {
  opacity: 1;
  transform: translate(0%, 0%);
}
.choose-item:hover {
  transition: transform 0.6s ease-out;
  transform: translate(0%, -5%) !important;
}
.choose-item-blue:hover {
  filter: drop-shadow(0 0 1px rgba(48, 185, 255, 0.90)) drop-shadow(0 0 2px rgba(48, 185, 255, 0.80)) drop-shadow(0 0 10px rgba(48, 185, 255, 0.50));
}
.choose-item-green:hover {
  filter: drop-shadow(0 0 1px rgba(27, 255, 149, 0.90)) drop-shadow(0 0 2px rgba(27, 255, 149, 0.80)) drop-shadow(0 0 10px rgba(27, 255, 149, 0.50));
}
.choose-item-violet:hover {
  filter: drop-shadow(0 0 1px rgba(180, 67, 255, 0.90)) drop-shadow(0 0 2px rgba(180, 67, 255, 0.80)) drop-shadow(0 0 10px rgba(180, 67, 255, 0.50));
}
.choose-item-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.choose-item-title {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 2.2rem;
  transform: translate(-50%, 0);
  color: #FFF;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.choose-item-text {
  width: 60%;
  position: absolute;
  left: 50%;
  top: 22rem;
  transform: translate(-50%, 0);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.choose-item-blue .choose-item-text {
  color: #30B9FF;
  text-shadow: 0 0 15px rgba(48, 185, 255, 0.40), 0 0 12.544px rgba(48, 185, 255, 0.50), 0 0 6.272px rgba(48, 185, 255, 0.60);
}
.choose-item-green .choose-item-text {
  color: #1BFF95;
  text-shadow: 0 0 15px rgba(27, 255, 149, 0.40), 0 0 12.544px rgba(27, 255, 149, 0.50), 0 0 6.272px rgba(27, 255, 149, 0.60);

}
.choose-item-violet .choose-item-text {
  color: #B443FF;
  text-shadow: 0 0 15px rgba(180, 67, 255, 0.40), 0 0 12.544px rgba(180, 67, 255, 0.50), 0 0 6.272px rgba(180, 67, 255, 0.60);
}
.choose-item-icon {
  position: absolute;
  width: 50%;
  left: 50%;
  top: 50%;
  z-index: 13;
  transform: translate(-50%, -50%) scale(1);
  will-change: transform;
  transition: transform 0.6s ease-out;
}
.choose-item:hover .choose-item-icon {
  transform: translate(-50%, -50%) scale(1.1);
}
.choose-item-light {
  position: absolute;
  width: 40%;
  height: 40%;
  left: 50%;
  top: 50%;
  z-index: 12;
  transform: translate(-50%, -50%) scale(1);
  mix-blend-mode: plus-lighter;
  filter: blur(25px);
  will-change: transform;
  transition: transform 0.6s ease-out;
}
.choose-item:hover .choose-item-light {
  transform: translate(-50%, -50%) scale(1.1);
}
.choose-item-blue .choose-item-light {
  background: #22A3F3;
}
.choose-item-green .choose-item-light {
  background: #1BFF95;
}
.choose-item-violet .choose-item-light {
  background: #B443FF;
}

.choose-decor-noodle {
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 28.5625rem;
  height: 16rem;
  background: url("/images/decor-noodle.png") no-repeat center top;
  background-size: 100% auto;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.screen-2.show .choose-decor-noodle {
  opacity: 1;
  transform: translate(-50%, 0%);
}

.choose-decor-oval-left {
  opacity: 0;
  position: absolute;
  left: -2.5rem;
  top: 1.5rem;
  z-index: 19;
  transform: translate(0%, 50%);
  width: 2.6875rem;
  height: 26.25rem;
  background: url("/images/decor-oval-big-blue.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.screen-2.show .choose-decor-oval-left {
  opacity: 1;
  transform: translate(0%, 0%);
}
.choose-decor-oval-right {
  opacity: 0;
  position: absolute;
  right: -2.5rem;
  top: 1.5rem;
  z-index: 19;
  transform: translate(0%, -50%);
  width: 2.6875rem;
  height: 26.25rem;
  background: url("/images/decor-oval-big-violet.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.screen-2.show .choose-decor-oval-right {
  opacity: 1;
  transform: translate(0%, 0%);
}

.choose-decor-plus-left {
  opacity: 0;
  position: absolute;
  left: 9.62rem;
  top: -5.19rem;
  z-index: 19;
  transform: translate(-50%, 0);
  width: 4.8125rem;
  height: 1.3125rem;
  background: url("/images/decor-plus-blue.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.screen-2.show .choose-decor-plus-left {
  opacity: 1;
  transform: translate(0%, 0%);
}
.choose-decor-plus-right {
  opacity: 0;
  position: absolute;
  right: 9.62rem;
  top: -5.19rem;
  z-index: 19;
  transform: translate(0%, -350%);
  width: 4.8125rem;
  height: 1.3125rem;
  background: url("/images/decor-plus-violet.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.screen-2.show .choose-decor-plus-right {
  opacity: 1;
  transform: translate(0%, 0%);
}

.choose-decor-triangle-blue {
  opacity: 0;
  position: absolute;
  left: 24.35rem;
  top: 27.7rem;
  z-index: 19;
  width: 5.375rem;
  height: 3.625rem;
  background: url("/images/decor-triangle-blue.png") no-repeat center center;
  background-size: contain;
  will-change: opacity;
  transition: opacity 0.6s ease-out;
}
.screen-2.show .choose-decor-triangle-blue {
  opacity: 1;
}
.choose-decor-triangle-green {
  opacity: 0;
  position: absolute;
  right: 24.6rem;
  top: 1.3rem;
  z-index: 19;
  width: 5.375rem;
  height: 3.625rem;
  background: url("/images/decor-triangle-green.png") no-repeat center center;
  background-size: contain;
  will-change: opacity;
  transition: opacity 0.6s ease-out;
}
.screen-2.show .choose-decor-triangle-green {
  opacity: 1;
}
/* /screen-2 */


/* screen-3 */
.preview {
  position: relative;
}
.preview-title {
  opacity: 0;
  position: relative;
  z-index: 11;
  transform: translate(-100%, 0);
  margin: 0 auto;
  width: 50rem;
  background: linear-gradient(92deg, #6DCEFF 0%, #FFF 51.63%, #6DCEFF 103.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out 4.8s, opacity 0.6s ease-out 4.8s;
}
.screen-3.show .preview-title {
  opacity: 1;
  transform: translate(0, 0);
}

.preview-subtitle {
  opacity: 0;
  position: relative;
  z-index: 11;
  transform: translate(-100%, 0);
  margin: 1rem auto 0;
  width: 25.1rem;
  height: 4.92169rem;
  background: url("/images/preview-subtitle.png") no-repeat center center;
  background-size: cover;
  color: #FFF;  
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.92169rem;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out 4.8s, opacity 0.6s ease-out 4.8s;
}
.screen-3.show .preview-subtitle {
  opacity: 1;
  transform: translate(0, 0);
}

.preview-subtitle-bottom {
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: -6.5%;
  z-index: 20;
  transform: translate(-50%, 50%);
  width: 37.82156rem;
  height: 2.557rem;
  background: url("/images/preview-subtitle-bottom.png") no-repeat center center;
  background-size: cover;
  color: #FFF;  
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.557rem;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out 4.8s, opacity 0.6s ease-out 4.8s;
}
.screen-3.show .preview-subtitle-bottom {
  opacity: 1;
  transform: translate(-50%, 0%);
}

.screen-3 .box-smoke {
  transition: opacity 1.2s ease-out 4.8s;
}
.screen-3.show .box-smoke {
  opacity: 1;
}

.screen-3 .box-light {
  transition: opacity 1.2s ease-out 4.8s;
}
.screen-3.show .box-light {
  opacity: 1;
}

.screen-3 .box-light-min {
  transition: opacity 1.2s ease-out 4.8s;
}
.screen-3.show .box-light-min {
  opacity: 1;
}

.preview-decor-line-left {
  opacity: 0;
  position: absolute;
  left: 5%;
  top: 21%;
  z-index: 19;
  transform: translate(-50%, 0);
  width: 16.2485rem;
  height: 23.6935rem;
  background: url("/images/preview-decor-line-left.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out 4.8s, opacity 0.6s ease-out 4.8s;
}
.screen-3.show .preview-decor-line-left {
  opacity: 1;
  transform: translate(0%, 0%);
}
.preview-decor-line-right {
  opacity: 0;
  position: absolute;
  right: 5%;
  top: 21%;
  z-index: 19;
  transform: translate(50%, 0);
  width: 16.2485rem;
  height: 23.6935rem;
  background: url("/images/preview-decor-line-right.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out 4.8s, opacity 0.6s ease-out 4.8s;
}
.screen-3.show .preview-decor-line-right {
  opacity: 1;
  transform: translate(0%, 0%);
}

.screen-3 .box {
  margin: -5rem auto 0;
}

.screen-3.show .box-img {
  filter: brightness(1.2);
  opacity: 1;
  transform: translate(-50%, -41%) scale(0.8);
  transition: transform 0.6s ease-out 3.6s, opacity 0.6s ease-out 3.6s;
}
.screen-3 .box-img:hover {
  transform: translate(-50%, -41%) scale(0.81) !important;
}

.preview-about-left {
  opacity: 0;
  position: absolute;
  left: 22%;
  top: 22%;
  z-index: 19;
  transform: translate(0%, 20%);
  padding: 4.2rem 5.2rem;
  width: 23.85431rem;
  height: 19.29913rem;
  background: url("/images/preview-about-left.png") no-repeat center center;
  background-size: contain;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out 6s, opacity 0.6s ease-out 6s;
}
.screen-3.show .preview-about-left {
  opacity: 1;
  transform: translate(0%, 0%);
}
.preview-about-right {
  opacity: 0;
  position: absolute;
  right: 22%;
  top: 38%;
  z-index: 19;
  transform: translate(0%, -20%);
  padding: 5rem 5.2rem;
  width: 23.8125rem;
  height: 16.4375rem;
  background: url("/images/preview-about-right.png") no-repeat center center;
  background-size: contain;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  will-change: transform, opacity;  
  transition: transform 0.6s ease-out 6s, opacity 0.6s ease-out 6s;
}
.screen-3.show .preview-about-right {
  opacity: 1;
  transform: translate(0%, 0%);
}
.preview-about-title {
  padding-bottom: 1rem;
  color: #30B9FF;
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.preview-icons {
  height: 6.4375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 4rem;
}
.preview-icon {
  opacity: 0;
  position: relative;
  cursor: pointer;
  width: 15.5625rem;
  height: 10.4375rem;
  background: url("/images/preview-icon.png") no-repeat center center;
  background-size: contain;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out 4.8s, opacity 0.6s ease-out 4.8s;
}
.preview-icon:nth-child(2) {
  transform: translate(-100%, 0%);
}
.preview-icon:nth-child(3) {
  transform: translate(-200%, 0%);
}
.preview-icon:nth-child(4) {
  transform: translate(-300%, 0%);
}
.preview-icon:nth-child(5) {
  transform: translate(-400%, 0%);
}
.preview-icon:nth-child(6) {
  transform: translate(-500%, 0%);
}
.screen-3.show .preview-icon {
  opacity: 1;
  transform: translate(0%, 0%);
}
.preview-icon:hover {
  filter: drop-shadow(0 0 5px rgba(48, 185, 255, 0.90)) drop-shadow(0 0 20px rgba(48, 185, 255, 0.80)) drop-shadow(0 0 30px rgba(48, 185, 255, 0.70)) drop-shadow(0 0 40px rgba(48, 185, 255, 0.60)) drop-shadow(0 0 50px rgba(48, 185, 255, 0.50));
}
.preview-icon-img {
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: auto;
  will-change: opacity;
  transition: opacity 0.6s ease-out;
}
.preview-icon:hover .preview-icon-img {
  opacity: 0;
}
.preview-icon-content {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  will-change: opacity;
  transition: opacity 0.6s ease-out;
}
.preview-icon:hover .preview-icon-content {
  opacity: 1;
}
.preview-icon-name {
  color: #FFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.preview-icon-type {
  color: #30B9FF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

.screen-3 .btn-get {
  margin: 4rem auto 0;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out 4.8s, opacity 0.6s ease-out 4.8s;
}
.screen-3.show .btn-get {
  opacity: 1;
  transform: translate(0%, 0%);
}
/* /screen-3 */


/* screen-4 */
.screen-4 .bg {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  background: url("/images/bg2.jpg") no-repeat center center;
  background-size: cover;
  transition: opacity 0.2s ease-out;
}
.screen-4.show .bg {
  opacity: 1;
}
.login {
  position: relative;
}
.login-bar {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 20rem;
  z-index: 10;
  transform: translate(-50%, 100%);
  width: 54.6875rem;
  height: 6.125rem;
  background: url("/images/login-bar.png") no-repeat center center;
  background-size: cover;
  overflow: hidden;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.screen-4.show .login-bar {
  opacity: 1;
  transform: translate(-50%, 0%);
}
.login-bar-progress {
  position: absolute;
  left: 1%;
  top: 50%;
  transform: translate(0%, -50%);
  width: 0%;
  height: 100%;
  background: url(/images/login-bar-progress.png) no-repeat left center;
  background-size: auto 167%;
  overflow: hidden;
}
.screen-4.show .login-bar-progress {
  animation: InitializingLoginBarProgress-1 0.3s ease-in-out 0.8s forwards, 
            InitializingLoginBarProgress-2 0.3s ease-in-out 1.6s forwards, 
            InitializingLoginBarProgress-3 0.3s ease-in-out 2.4s forwards;
}
@keyframes InitializingLoginBarProgress-1 {
  0% {
    width: 0%;
  }
  100% {
    width: 33%;
  }
}
@keyframes InitializingLoginBarProgress-2 {
  0% {
    width: 33%;
  }
  100% {
    width: 66%;
  }
}
@keyframes InitializingLoginBarProgress-3 {
  0% {
    width: 66%;
  }
  100% {
    width: 100%;
  }
}

.login-ready {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 8rem;
  z-index: 10;
  transform: translate(0%, 0%);
  padding: 1.8rem 0 0 3rem;
  width: 27rem;
  height: 10.8rem;
  background: url(/images/login-ready.png) no-repeat left center;
  background-size: contain;
  color: #FFF;
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.screen-4.show .login-ready {
  opacity: 1;
  transform: translate(-100%, 0%);
}
.login-confirm {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 29rem;
  z-index: 10;
  transform: translate(-117%, 150%);
  width: 22.4375rem;
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.screen-4.show .login-confirm {
  opacity: 1;
  transform: translate(-117%, 0%);
}

.login-disk {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: -13.95rem;
  z-index: 5;
  transform: translate(-28.3%, 0%);
  width: 74rem;
  height: 74rem;
  will-change: opacity;
  transition: opacity 0.6s ease-out;
}
.screen-4.show .login-disk {
  opacity: 1;
}
.login-disk-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 74rem;
  height: 74rem;
  background: url(/images/login-disk-wrap.png) no-repeat center center;
  background-size: cover;
}
.screen-4.show .login-disk-wrap {
  animation: InitializingLoginDiskWrap-1 0.3s ease-in-out 0.8s forwards, 
            InitializingLoginDiskWrap-2 0.3s ease-in-out 1.6s forwards, 
            InitializingLoginDiskWrap-3 0.3s ease-in-out 2.4s forwards, 
            alternate InitializingLoginDiskWrap-4 1.2s ease-in-out 3.2s infinite;
}
@keyframes InitializingLoginDiskWrap-1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(120deg);
  }
}
@keyframes InitializingLoginDiskWrap-2 {
  0% {
    transform: translate(-50%, -50%) rotate(120deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(240deg);
  }
}
@keyframes InitializingLoginDiskWrap-3 {
  0% {
    transform: translate(-50%, -50%) rotate(240deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes InitializingLoginDiskWrap-4 {
  0% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(300deg);
  }
}

.login-disk-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 56rem;
  height: 56rem;
  background: url(/images/login-disk.png) no-repeat center center;
  background-size: cover;
}
.screen-4.show .login-disk-inner {
  animation: InitializingLoginDisk-1 0.3s ease-in-out 0.8s forwards, 
            InitializingLoginDisk-2 0.3s ease-in-out 1.6s forwards, 
            InitializingLoginDisk-3 0.3s ease-in-out 2.4s forwards,
            alternate InitializingLoginDisk-4 1.2s ease-in-out 3.2s infinite;
}
@keyframes InitializingLoginDisk-1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-120deg);
  }
}
@keyframes InitializingLoginDisk-2 {
  0% {
    transform: translate(-50%, -50%) rotate(-120deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-240deg);
  }
}
@keyframes InitializingLoginDisk-3 {
  0% {
    transform: translate(-50%, -50%) rotate(-240deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes InitializingLoginDisk-4 {
  0% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-300deg);
  }
}

.login-line {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 34rem;
  z-index: 12;
  transform: translate(-21rem, 100%);
  width: 11.51775rem;
  height: 9.64275rem;
  background: url(/images/login-line.png) no-repeat center center;
  background-size: cover;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.screen-4.show .login-line {
  opacity: 1;
  transform: translate(-21rem, 0%);
}

.btn-login {
  position: absolute;
  left: 50%;
  top: 39rem;
  z-index: 12;
  transform: translate(100%, 0%);
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.screen-4.show .btn-login {
  opacity: 1;
  transform: translate(-50%, 0%);
}

.login-note {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 47rem;
  z-index: 12;
  transform: translate(100%, 0%);
  width: 18.1875rem;
  color: #B443FF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.screen-4.show .login-note {
  opacity: 1;
  transform: translate(-50%, 0%);
}
/* /screen-4 */


/* screen-5 */
.access {
  position: relative;
}
.access-title {
  opacity: 0;
  position: relative;
  z-index: 11;
  transform: translate(-100%, 0);
  margin: 0 auto;
  width: 50rem;
  background: linear-gradient(92deg, #6DCEFF 0%, #FFF 51.63%, #6DCEFF 103.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 4.8s, opacity 1.2s ease-out 4.8s;
}
.screen-5.show .access-title {
  opacity: 1;
  transform: translate(0, 0);
}

.access-subtitle {  
  opacity: 0;
  position: relative;
  z-index: 11;
  transform: translate(-100%, 0);
  margin: 1rem auto 0;
  width: 30.91694rem;
  height: 4.92169rem;
  background: url("/images/access-subtitle.png") no-repeat center center;
  background-size: cover;
  color: #FFF;  
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.92169rem;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 4.8s, opacity 1.2s ease-out 4.8s;
}
.screen-5.show .access-subtitle {
  opacity: 1;
  transform: translate(0, 0);
}

.screen-5 .box-img {
  transition: filter 0.4s ease-out 3.6s, transform 0.4s ease-out 3.6s, opacity 0.4s ease-out 3.6s;
}
.screen-5.show .box-img {
  filter: brightness(1.2);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.screen-5 .box-img:hover {
  transform: translate(-50%, -50%) scale(1.11) !important;
}

.access-subtitle-bottom {
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: -15%;
  z-index: 20;
  transform: translate(-50%, 50%);
  width: 29.52813rem;
  height: 4.92169rem;
  background: url("/images/access-subtitle-bottom.png") no-repeat center center;
  background-size: cover;
  color: #FFF;  
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.92169rem;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 4.8s, opacity 1.2s ease-out 4.8s;
}
.screen-5.show .access-subtitle-bottom {
  opacity: 1;
  transform: translate(-50%, 0%);
}

.btn-start {
  margin: 8rem auto 0;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 4.8s, opacity 1.2s ease-out 4.8s;
}
.screen-5.show .btn-start {
  opacity: 1;
  transform: translate(0%, 0%);
}

.access-note {
  opacity: 0;
  position: relative;
  margin: 1rem auto 0;
  z-index: 12;
  transform: translate(100%, 0);
  width: 26.1875rem;
  color: #B443FF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  will-change: transform, opacity;
  transition: transform 1.2s ease-out 4.8s, opacity 1.2s ease-out 4.8s;
}
.screen-5.show .access-note {
  opacity: 1;
  transform: translate(0, 0);
}
/* /screen-5 */


/* initializing */
.initializing .bg {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  background: url("/images/bg3.jpg") no-repeat center center;
  background-size: cover;
  transition: opacity 0.2s ease-out;
}
.initializing.show .bg {
  opacity: 1;
}

.initializing-title {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 15rem;
  z-index: 10;
  transform: translate(-50%, -150%);
  width: 42.93075rem;
  height: 5.73206rem;
  background: url("/images/initializing-title.png") no-repeat center center;
  background-size: cover;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.initializing.show .initializing-title {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.initializing-title-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;  
  color: #DFAFFF;
  text-align: center;
  text-shadow: 0 0 20px rgba(193, 99, 255, 0.60), 0 0 15px rgba(193, 99, 255, 0.80), 0 0 8px #C163FF;
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
}
.initializing-noodle {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 0%);
  width: 31.5625rem;
  height: 24.1875rem;
  background: url("/images/initializing-noodle.png") no-repeat center center;
  background-size: cover;
}

.initializing-bar {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 25rem;
  z-index: 10;
  transform: translate(-50%, 100%);
  width: 54.6875rem;
  height: 6.125rem;
  background: url("/images/initializing-bar.png") no-repeat center center;
  background-size: cover;
  overflow: hidden;
  will-change: transform, opacity;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.initializing.show .initializing-bar {
  opacity: 1;
  transform: translate(-50%, 0%);
}
.initializing-bar-progress {
  position: absolute;
  left: 1%;
  top: 50%;
  transform: translate(0%, -50%);
  width: 0%;
  height: 100%;
  background: url(/images/initializing-bar-progress.png) no-repeat left center;
  background-size: auto 167%;
  overflow: hidden;
}
.initializing.show .initializing-bar-progress {
  animation: InitializingPreviwBarProgress-1 .3s ease-in-out .8s forwards, 
            InitializingPreviwBarProgress-2 .3s ease-in-out 1.6s forwards, 
            InitializingPreviwBarProgress-3 .3s ease-in-out 2.4s forwards;
}
@keyframes InitializingPreviwBarProgress-1 {
  0% {
    width: 0%;
  }
  100% {
    width: 33%;
  }
}
@keyframes InitializingPreviwBarProgress-2 {
  0% {
    width: 33%;
  }
  100% {
    width: 66%;
  }
}
@keyframes InitializingPreviwBarProgress-3 {
  0% {
    width: 66%;
  }
  100% {
    width: 100%;
  }
}
/* /initializing */



/* footer */
.footer {
  position: relative;
  z-index: 101;
  margin: auto auto 0;
  width: 100%;
  background: linear-gradient(180deg, #073255 0%, #000D1F 100%);
  box-shadow: 0 -2px 50px 0 rgba(25, 25, 35, 0.30);
  color: #CFCFCF;
  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: #376487;
  border: 1px solid #1C4362;
  border-radius: 0.75vw;
  z-index: 1;
  color: #CFCFCF;
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
.language-active {
  background: #1C4362;
  color: #fff;
}

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

.rules {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1vw;
  color: #CFCFCF;
  font-family: "Inter", sans-serif;
  font-size: 1.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.rules-link {
  color: #CFCFCF;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.rules-link:hover {
  color: #CFCFCF;
}
.footer-site {
  color: #CFCFCF;
  font-family: "Inter", sans-serif;
  font-size: 1.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: left;
}
.footer-info {
  color: #CFCFCF;
  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: #CFCFCF;
}
.footer-info a:hover {
  color: #CFCFCF;
}
/* /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: 66.667vw;
  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(48, 185, 255, 0.3);
  box-shadow: 0 0 1.042vw rgba(48, 185, 255, 0.4), 0 0 2.083vw rgba(180, 67, 255, 0.3);
  background: radial-gradient(125.61% 78.26% at -8.89% 27.62%, rgba(48, 185, 255, 0.12) 0%, rgba(48, 185, 255, 0.00) 100%), rgba(0, 14, 32, 0.85);
  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(48, 185, 255, 0.2) 0%, rgba(48, 185, 255, 0) 60%), radial-gradient(70% 70% at 80% 50%, rgba(180, 67, 255, 0.2) 0%, rgba(180, 67, 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(48, 185, 255, 0.05), rgba(180, 67, 255, 0.05));
  z-index: 0;
}
.cookies-text {
  position: relative;
  z-index: 1;
  flex: 1;
}
.cookies-title {
  font-family: "Orbitron", 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(48, 185, 255, 0.5), 0 0 2.083vw rgba(180, 67, 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: "Orbitron", 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: #30baff;
  text-decoration: underline;
  transition: color 0.16s ease-out-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: auto;
  background: #30baff;
  border: 1vw solid #30baff;
  border-radius: 2vw;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 1.5vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.btn-accept .btn-text {
  font-size: 1.3vw;
}
@media (max-width: 660px) {
  .btn-accept {
    height: 8.2vw;
    padding: 2rem;
    font-size: 3.5vw;
  }
}
/* 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: 27rem 0 10rem;
  }

  .header-logo {
    margin: 0 auto;
  }

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

  .spin.hide {
    display: none;
  }

  .footer-container {
    padding: 4.75vw 0;
  }

  .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.6s 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 */
  .first-title {
    display: block;
    height: auto;
     margin: 0 auto;
  }
  .screen-1.show .first-title-text {
    width: 80%;
    margin: 0 auto;
  }
  .first-title-text-top {
    margin: 0 auto;
    text-align: center;
    font-size: 13rem;
  }
  .first-title-text-bottom {
    margin: 0 auto;
    text-align: center;
    font-size: 17rem;
  }
  .first-title-timer {
    width: 107.9375rem;
    height: 44.9375rem;
    margin: 0 auto;
  }
  .first-title-timer-text {
    font-size: 20.8rem;
  }
  .screen-1 .box {
    position: relative;
    width: 135.375rem;
    height: 66.1875rem;
    margin: -13rem auto 0;
  }
  .box-img:hover {
    transform: translate(-50%, -50%) scale(1) !important;
  }
  .decor-oval-left,
  .decor-oval-right,
  .decor-plus-left,
  .decor-plus-right {
    display: none;
  }
  .decor-line-left,
  .decor-line-right {
    width: 50.1875rem;
    height: 60.3125rem;
  }
  .first-subtitle {
    bottom: -23%;
    width: 86.02813rem;
    height: 15.92169rem;
    font-size: 5.25rem;
    line-height: 15.92169rem;
  }
  .note {
    margin: 18rem auto 0;
    width: 126rem;
    height: 45.625rem;
    background: url("/images/note-m.png") no-repeat center center;
    background-size: contain;
    display: block;
    padding: 3rem 9rem;
  }
  .note-text-left {
    padding: 0;
    width: 100%;
    text-align: center;
    font-size: 7.75rem;
  }
  .note-text-right {
    padding: 0;
    width: 100%;
    text-align: center;
    font-size: 6.25rem;
  }
  .btn-violet {
    width: 118rem;
    border-radius: 9.25rem;
  }
  .btn-violet .btn-text {
    font-size: 7rem;
  }
  .btn-join {
    margin: 6rem auto 0;
  }
  /* /screen-1 mb */


  /* screen-2 mb */
  .choose-title {
    width: 90%;
    font-size: 15.25rem;
  }
  .choose-subtitle {
    padding: 4rem 2rem;
    width: 115.33763rem;
    height: 28.35638rem;
    font-size: 8.2rem;
  }

  .choose-items-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .choose-items {
    margin: 19.13rem -16rem 0;
    padding: 0 22rem;
    width: 378.6875rem;
    height: 157.275rem;
  }
  .choose-items::before {
    display: none;
  }
  .choose-item {
    width: 125.1875rem;
    height: 157.3125rem;
  }
  .choose-decor-triangle-blue {
    left: 118.35rem;
    top: 137.7rem;
    width: 28.375rem;
    height: 21.625rem;
  }
  .choose-decor-triangle-green {
    right: 118.6rem;
    top: -0.19rem;
    width: 28.375rem;
    height: 21.625rem;
  }
  .choose-item-title {
    top: 12.2rem;
    font-size: 7.75rem;
  }
  .choose-item-text {
    top: 121rem;
    font-size: 7.75rem;
  }
  .choose-decor-plus-left {
    left: 7rem;
    top: 5.81rem;
    width: 28.8125rem;
    height: 7.3125rem;
  }
  .choose-decor-plus-right {
    right: 7rem;
    top: 5.81rem;
    width: 28.8125rem;
    height: 7.3125rem;
  }

  .choose-decor-oval-left,
  .choose-decor-oval-right,
  .choose-decor-noodle {
    display: none;
  }
  /* /screen-2 mb */

  /* screen-3 mb */
  .preview-title {
    width: 90%;
    font-size: 13rem;
  }
  .preview-subtitle {
    padding: 4rem 2rem;
    width: 115.33763rem;
    height: 18.35638rem;
    font-size: 8.2rem;
    line-height: 10.5rem;
    filter: brightness(1.3);
  }
  .screen-3 .box {
    position: relative;
    width: 135.375rem;
    height: 66.1875rem;
    margin: -7rem auto 0;
  }
  .screen-3.show .box-img {
    transform: translate(-50%, -41%) scale(1);
    filter: drop-shadow(0 0 2.611px rgba(48, 185, 255, 0.90)) drop-shadow(0 0 6.526px rgba(48, 185, 255, 0.90)) drop-shadow(0 0 13.053px rgba(48, 185, 255, 0.80)) drop-shadow(0 0 19.579px rgba(48, 185, 255, 0.70)) drop-shadow(0 0 26.105px rgba(48, 185, 255, 0.60));
  }
  .preview-decor-line-left {
    left: -13%;
    top: 14%;
    width: 55.2485rem;
    height: 80.6935rem;
  }
  .preview-decor-line-right {
    right: -13%;
    top: 14%;
    width: 55.2485rem;
    height: 80.6935rem;
  }
  .preview-subtitle-bottom {
    left: 50%;
    bottom: -50.5%;
    width: 118.82156rem;
    height: 18rem;
    background: url("/images/preview-subtitle-bottom-bg.png") no-repeat center center;
    background-size: contain;
    font-size: 6.25rem;
    line-height: 1;
    padding: 2rem 5rem;
  }
  .preview-about-left {
    left: 8%;
    top: 83rem;
    z-index: 19;
    padding: 6.2rem 9rem;
    width: 60.8125rem;
    height: 45.29913rem;
    background: url("/images/preview-about-left-m.png") no-repeat center center;
    background-size: contain;
    font-size: 4.1rem;
    line-height: 1.4;
  }
  .preview-about-title {
    font-size: 5.25rem;
  }
  .preview-about-right {
    right: 8%;
    top: 96rem;
    padding: 6.2rem 9rem;
    width: 60.8125rem;
    height: 32.4375rem;
    background: url("/images/preview-about-right-m.png") no-repeat center center;
    background-size: contain;
  }
  .preview-icons {
    height: auto;
    margin-top: 39rem;
    flex-wrap: wrap;
  }
  .preview-icon {
    width: 42.5625rem;
    height: 26.4375rem;
  }
  /* /screen-3 mb */


  /* screen-4 mb */
  .login-disk {
    left: 50%;
    top: 10rem;
    z-index: 5;
    transform: translate(-50%, 0%);
    width: 95rem;
    height: 95rem;
  }
  .login-disk-wrap {
    width: 180rem;
    height: 180rem;
  }
  .login-disk-inner {
    width: 135rem;
    height: 135rem;
  }
  .login-ready {
    top: 72rem;
    padding: 6.8rem 0 0 12rem;
    width: 126rem;
    height: 48.8rem;
    font-size: 14rem;
  }
  .screen-4.show .login-ready {
    transform: translate(-50%, 0%);
  }
  .login-bar {
      width: 126rem;
    height: 14rem;
    top: 123rem;
  }

  .login-confirm {
    left: 9%;
    top: 141rem;
    width: 80.4375rem;
    font-size: 8rem;
  }
  .screen-4.show .login-confirm {
    transform: translate(0%, 0%)
  }

  .login-line {
    left: 41%;
    top: 141rem;
    transform: translate(0, 100%);
    width: 74.10981rem;
    height: 46.68388rem;
    background: url(/images/login-line-m.png) no-repeat center center;
    background-size: cover;
  }
  .screen-4.show .login-line {
    transform: translate(0, 0%);
  }
  .btn-login {
    top: 194rem;
  }
  .screen-4.show .btn-login {
    opacity: 1;
    transform: translate(-50%, 0%);
  }
  .login-note {
    top: 222rem;
    font-size: 7rem;
    width: 100rem;
  }
  .screen-4.show .login-note {
    transform: translate(-50%, 0%);
  }
  /* /screen-4 mb */


  /* screen-5 mb */

  .access-title {
    width: 75%;
    padding: 0 10%;
    font-size: 15rem;
    position: relative;
  }
  .access-title::before {
    opacity: 0;
    content: "";
    width: 9.1rem;
    height: 30.15419rem;
    background: url("/images/access-title-m.png") no-repeat center center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 10%;
    transform: translate(0, 0);
    will-change: transform, opacity;
    transition: opacity 0.6s ease-out 1.2s;
    animation: alternate 1.2s AccessTitleLeftM 2.4s infinite;
  }
  .screen-5.show .access-title::before {
    opacity: 1;
  }
  .access-title::after {
    opacity: 0;
    content: "";
    width: 9.1rem;
    height: 30.15419rem;
    background: url("/images/access-title-m.png") no-repeat center center;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 10%;
    transform: translate(0, 0);
    will-change: transform, opacity;
    transition: opacity 0.6s ease-out 1.2s;
    animation: alternate 1.2s AccessTitleRightM 2.4s infinite;
  }
  .screen-5.show .access-title::after {
    opacity: 1;
  }
  @keyframes AccessTitleLeftM {
    0% {
      transform: translate(0%, 0%);
    }
    100% {
      transform: translate(-50%, 0%);
    }
  }
  @keyframes AccessTitleRightM {
    0% {
      transform: translate(0%, 0%);
    }
    100% {
      transform: translate(50%, 0%);
    }
  }
  .access-subtitle {
    margin: 6rem auto 0;
    padding: 5rem 11rem;
    width: 115.31244rem;
    height: 32.5625rem;
    background: url(/images/access-subtitle-m.png) no-repeat center center;
    background-size: cover;
    font-size: 8.2rem;
    line-height: 1.3;
  }
  .screen-5 .box {
    position: relative;
    width: 135.375rem;
    height: 66.1875rem;
    margin: 10rem auto 0;
  }
  .screen-5.show .box-img {
    transform: translate(-50%, -41%) scale(1);
    filter: drop-shadow(0 0 2.611px rgba(48, 185, 255, 0.90)) drop-shadow(0 0 6.526px rgba(48, 185, 255, 0.90)) drop-shadow(0 0 13.053px rgba(48, 185, 255, 0.80)) drop-shadow(0 0 19.579px rgba(48, 185, 255, 0.70)) drop-shadow(0 0 26.105px rgba(48, 185, 255, 0.60));
  }

  .screen-5 .decor-line-left {
    left: -15%;
    top: 6rem;
    width: 59.2485rem;
    height: 77.6935rem;
  }
  .screen-5 .decor-line-right {
    right: -15%;
    top: 6rem;
    width: 59.2485rem;
    height: 77.6935rem;
  }
  .access-subtitle-bottom {
    bottom: -40%;
    width: 129.52813rem;
    height: 21.92169rem;
    font-size: 5.8rem;
    line-height: 21.92169rem;
  }
  .screen-5 .decor-plus-left {
    opacity: 0;
    display: block;
    width: 26.8125rem;
    height: 11.3125rem;
    left: 50%;
    top: -5rem;
    z-index: 30;
    transform: translate(-50%, 0%);
    will-change: transform, opacity;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    animation: alternate 1.2s DecorPlusLeftM 2.4s infinite;
  }
  .screen-5.show .decor-plus-left {
    opacity: 1;
    transform: translate(-50%, 50%);
  }
  @keyframes DecorPlusLeftM {
    0% {
      transform: translate(-50%, 50%);
    }
    100% {
      transform: translate(-50%, 0%);
    }
  }

  .btn-start {
    margin: 43rem auto 0;
  }
  .access-note {
    margin: 4rem auto 0;
    font-size: 7rem;
    width: 100rem;
  }
  .screen-5.show .access-note {
    transform: translate(0%, 0%);
  }
  /* /screen-5 mb */


  /* initializing mb */
  .initializing-title {
    top: 85rem;
    width: 125rem;
    height: 48.32381rem;
    background: url("/images/initializing-title-m.png") no-repeat center center;
    background-size: cover;
    line-height: 1.3;
  }
  .initializing-title-text {
    font-size: 13rem;
  }
  .initializing-noodle {
    width: 111.5625rem;
    height: 73.1875rem;
  }
  .initializing-bar {
      width: 126rem;
    height: 14rem;
    top: 123rem;
  }
  /* /initializing mb */

  .screen-1,
  .screen-2,
  .screen-3,
  .screen-4,
  .screen-5,
  .initializing {
    overflow: hidden !important;
  }
}
/* /media */


.popup-wrap {
  position: fixed;
  inset: 0;
  z-index: 9995;
  background: rgba(5, 4, 18, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  cursor: pointer;
}
.popup-wrap.show {
  display: block;
  animation: popupFadeIn 0.25s ease;
}
@keyframes popupFadeIn {
  from {
    opacity: 0;
  }
  to   {
    opacity: 1;
  }
}
 
.popup-terms {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9996;
  width: min(74vw, 90vw);
  max-height: 80vh;
  overflow-y: auto;
  background: #000E20;
  border: 1px solid rgba(48, 185, 255, 0.4);
  border-radius: 0.52vw;
  box-shadow: 0 0 3vw rgba(48, 185, 255, 0.15), 0 0 2vw rgba(48, 185, 255, 0.10);
  cursor: default;
  display: none;
  animation: popupSlideIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.popup-terms.show {
  display: block;
}
.popup-terms-close {
  position: sticky;
  top: 1vw;
  margin-left: auto;
  margin-right: 1vw;
  width: 2.2vw;
  height: 2.2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(48, 185, 255, 0.1);
  border: 1px solid rgba(48, 185, 255, 0.35);
  border-radius: 0.26vw;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  z-index: 1;
}
.popup-terms-close svg {
  width: 0.78vw;
  height: 0.78vw;
}
.popup-terms-close:hover {
  background: rgba(48, 185, 255, 0.22);
  border-color: rgba(48, 185, 255, 0.8);
  color: #ffffff;
}
@keyframes popupSlideIn {
  from {
    transform: translate(-50%, calc(-50% + 1.5vw));
    opacity: 0;
  }
  to   {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}


.terms {
  width: 100%;
  max-width: 74vw;
  margin: 0 auto;
  padding: 3vw 3vw 5vw;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Inter", sans-serif;
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1.5;
}
.terms h2 {
  color: #ffffff;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 2.5vw;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.terms h2:after {
  content: "";
  position: relative;
  width: 12vw;
  height: 1px;
  display: block;
  background: linear-gradient(90deg, transparent 0%, #30B9FF 50%, transparent 100%);
  border: none;
  margin: 1rem auto 2.5rem;
}
.terms h3 {
  margin: 2rem 0 0.75rem;
  color: #30B9FF;
  font-family: "Orbitron", sans-serif;
  font-size: 1.8vw;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.terms h4 {
  margin: 1.5rem 0 0.5rem;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  font-size: 1.2vw;
  font-weight: 700;
  line-height: 1.2;
}
.terms :is(li, p) {
  margin: 0.4rem 0;
}
.terms strong {
  font-weight: 700;
  color: #ffffff;
}
.terms ol {
  list-style-type: decimal;
  padding-left: 2vw;
}
.terms ul {
  list-style-type: disc;
  padding-left: 2vw;
}

.cookies-text {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", sans-serif;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.2;
}
.cookie-link {
  color: #30B9FF;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.1vw;
  font-family: "Orbitron", sans-serif;
}

@media (max-width: 767px) {
  .terms {
    font-size: 3.73vw;
    padding: 8vw 6.4vw 10vw;
    max-width: 100%;
  }
  .terms h1 {
    font-size: 9.6vw;
  }
  .terms h2 {
    font-size: 7.8vw;
  }
  .terms h3 {
    font-size: 4.27vw;
  }
  
  .popup-terms-close {
      width: 5.2vw;
      height: 5.2vw;
  }
  .popup-terms-close svg {
    width: 2.78vw;
    height: 2.78vw;
  }
  .cookies-text {
    font-size: 3.73vw;
  }
}



