@import url("https://fonts.googleapis.com/css2?family=Manrope:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after {
  content: "prev";
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after {
  content: "next";
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
html {
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: #fff;
}
body {
  overflow-x: hidden;
  background-color: #101435 !important;
  min-width: 280px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.video-section {
  position: absolute;
  width: 100%;
  z-index: -1;
}
.video-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.video-bg {
  width: 100%;
  height: auto;
  display: block;
}
.gradient-edge-top {
  z-index: 1;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    180deg,
    rgb(16 20 53) 0%,
    rgb(16 20 53 / 0%) 100%
  );
  background: linear-gradient(
    180deg,
    rgb(118 77 240) 0%,
    rgb(118 77 240 / 0%) 100%
  );
  opacity: 0.6;
}
.sw-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: -webkit-linear-gradient(
    0deg,
    rgb(16 20 53 / 80%) 0%,
    rgb(16 20 53 / 80%) 50%
  );
  background: -moz-linear-gradient(
    0deg,
    rgb(16 20 53 / 80%) 0%,
    rgb(16 20 53 / 80%) 50%
  );
  background: linear-gradient(
    0deg,
    rgb(16 20 53 / 80%) 0%,
    rgb(16 20 53 / 80%) 50%
  );
}
.gradient-edge-bottom {
  z-index: 1;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(0deg, rgb(16 20 53) 0%, rgb(16 20 53 / 0%) 100%);
}
.rotate-animation {
  animation: rotate-animation 10s infinite linear;
}
@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input {
  border: none;
  outline: none;
  padding: 0;
  resize: none;
}
button,
a {
  cursor: pointer;
  outline: none;
}
h1,
h2,
h3 {
  margin: 0;
}
p {
  margin: 0;
  padding: 0;
}
button,
input {
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
}
.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.container {
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
}
h1,
h2,
h3 {
  font-weight: 600;
}
.main-background {
  position: relative;
  padding: 0;
}
.section-title {
  max-width: 953px;
  width: 100%;
  margin: 100px auto;
}
.section-title .subtitle {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .section-title {
    margin: 40px auto;
  }
  .section-title h1 {
    max-width: 300px;
  }
  .section-title .subtitle {
    margin-top: 16px;
    font-size: 16px;
  }
}
* {
  --gradient-text: 0deg, #888888 0%, #ffffff 75%;
}
h1 {
  font-style: normal;
  font-weight: 900;
  font-size: 50px;
  line-height: 125%;
  text-align: center;
  text-transform: uppercase;
  margin-inline: auto;
}
h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 105%;
  text-align: center;
}
h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 105%;
  text-align: center;
}
h1,
h2,
h3 {
  background: -webkit-linear-gradient(var(--gradient-text));
  background: -moz-linear-gradient(var(--gradient-text));
  background: linear-gradient(var(--gradient-text));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
}
@media (max-width: 1200px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 370px) {
  h1 {
    font-size: 25px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
}
.header {
  min-height: 190px;
  width: 100%;
  padding: 0 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .header {
    padding-bottom: 60px;
    min-height: 127px;
  }
}
.progress__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
.progress__line {
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  width: 28px;
  height: 2px;
  background: #fff3;
  border-radius: 100px;
}
.progress__line.active {
  background-color: #764df0;
}
.progress__item.active .progress__num {
  background: #764df0;
  background: linear-gradient(
    to top,
    rgb(118 77 240 / 100%) 0%,
    rgb(118 77 240 / 0%) 100%
  );
  background-size: 100% 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  border: solid 1px #764df0;
  font-weight: 800;
  color: #fff;
}
.progress__item.active span {
  font-weight: 800;
  color: #fff;
}
.progress__item span {
  display: block;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  padding-top: 5px;
  text-align: center;
  text-transform: uppercase;
  color: rgb(255 255 255 / 50%);
}
.progress__num {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  margin-bottom: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  text-transform: uppercase;
  color: rgb(255 255 255 / 50%);
}
.progress__item.gift .progress__num {
  border: 1px solid #ffdd57;
}
.progress__item.gift span {
  background: linear-gradient(
    236.32deg,
    #ffdd57 19.99%,
    #fff6a8 38.51%,
    #facd54 53.33%,
    #fff49a 75.55%,
    #bb9138 87.33%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
  text-fill-color: rgba(0, 0, 0, 0);
}
.video-box {
  overflow: hidden;
  position: relative;
}
.video-box__wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .video-box__wrapper {
    text-align: center;
    margin-bottom: 24px;
  }
}
.video-box__wrapper .container {
  position: relative;
}
1picture img {
  max-height: 100vh;
  width: 100%;
  object-fit: cover;
}
.video-box__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .video-box__inner {
    padding: 24px 24px 16px;
    border-radius: 15px;
  }
}
.video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 40vw;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  border: solid 1px rgba(255, 255, 255, 0.2);
  border: 1px solid #764df0;
  position: relative;
  z-index: 10;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}
.video video {
  width: 100%;
  height: auto;
  display: block;
  background-color: #000;
}
.fade-up {
  opacity: 0;
  transform: translateY(18px);
}
.fade-up.is-in {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.32s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.form label input {
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
@media (max-width: 768px) {
  .video {
    border-radius: 15px;
    max-width: 100%;
  }
}
.video-box .video__watching {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  color: #ffce48;
  color: #764df0;
  text-shadow: 0 0 8px rgba(118, 77, 240, 0.5);
  background: linear-gradient(
    90deg,
    #9f7bff 0%,
    #cbbaff 25%,
    #e0d6ff 50%,
    #cbbaff 75%,
    #9f7bff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .video-box .video__watching {
    font-size: 12px;
    margin-top: 16px;
  }
}
.form-section {
  position: relative;
  padding: 60px 120px 120px;
  background: rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .form-section {
    padding: 40px 60px 60px;
  }
}
@media (max-width: 992px) {
  .form-section {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .form-section {
    padding: 24px 8px 8px;
    border-radius: 15px;
  }
}
.form-section__inner {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .form-section__inner {
    border-radius: 15px;
  }
}
.form-section__wrapper {
  overflow: hidden;
}
.form-section__wrapper .container {
  position: relative;
}
.form-section__wrapper .container .curl1 {
  width: 20vw;
  left: -8vw;
  top: 2vw;
}
.form-section__wrapper .container .curl2 {
  width: 20vw;
  right: -8vw;
  bottom: 2vw;
  transform: scale(1, -1);
}
.form-section__wrapper .container .curl1,
.form-section__wrapper .container .curl2 {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 1500px) {
  .form-section__wrapper .container .curl1,
  .form-section__wrapper .container .curl2 {
    width: 340px;
  }
}
@media (max-width: 1400px) {
  .form-section__wrapper .container .curl1,
  .form-section__wrapper .container .curl2 {
    width: 320px;
  }
}
@media (max-width: 1300px) {
  .form-section__wrapper .container .curl1,
  .form-section__wrapper .container .curl2 {
    width: 260px;
  }
}
@media (max-width: 768px) {
  .form-section__wrapper .container .curl1,
  .form-section__wrapper .container .curl2 {
    display: none;
  }
}
.form-section__wrapper {
  position: relative;
  width: 100%;
  margin: 60px auto;
}
.form-section__inner {
  background: linear-gradient(
    to top,
    rgb(118 77 240 / 70%) 0%,
    rgb(118 77 240 / 0%) 100%
  );
  background-size: 100% 30%;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .form-section__wrapper {
    margin: 30px auto;
  }
}
.form {
  max-width: 860px;
  width: 100%;
  background: #1a1e42;
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  margin: 0 auto;
  padding: 60px;
}
.form__title {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .form__title {
    margin-bottom: 8px;
  }
}
.form__subtitle {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  max-width: 609px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .form__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 330px;
  }
}
@media (max-width: 1200px) {
  .form {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .form {
    padding: 24px 16px 16px;
    border-radius: 15px;
  }
}
.form label {
  position: relative;
  width: 100%;
  font-size: 24px;
  line-height: 140%;
}
@media (max-width: 768px) {
  .form label {
    font-size: 16px;
  }
}
.form input {
  display: block;
  padding: 14px 16px 16px;
  margin-top: 12px;
  height: 64px;
  background: #0006;
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  width: 100%;
  font-size: 24px;
  line-height: 140%;
  color: #fff;
}
.form input::-webkit-input-placeholder {
  color: #fff3;
}
.form input::-moz-placeholder {
  color: #fff3;
}
.form input:-ms-input-placeholder {
  color: #fff3;
}
.form input::-ms-input-placeholder {
  color: #fff3;
}
@media (min-width: 768px) {
  .form input:hover {
    border: 1px solid hsla(0, 0%, 100%, 0.6);
  }
}
.form input:focus {
  border: 1px solid hsla(0, 0%, 100%, 0.6);
}
@media (max-width: 768px) {
  .form input {
    margin-top: 8px;
    height: 48px;
    padding: 13px 16px;
    font-size: 16px;
  }
}
.reviews {
  margin: 60px 0;
}
@media (max-width: 768px) {
  .reviews {
    margin: 30px 0;
  }
}
.reviews__inner {
  padding: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .reviews__inner {
    border-radius: 15px;
    padding: 24px 0 40px;
  }
}
.reviews__title {
  max-width: 710px;
  margin: 0 auto 50px;
}
@media (max-width: 768px) {
  .reviews__title {
    margin-bottom: 24px;
    max-width: 320px;
  }
}
.reviews__slider {
  width: 100%;
  overflow: visible;
}
@media (max-width: 768px) {
  .reviews__slider {
  }
}
.reviews__slider .swiper-slide {
  position: relative;
  max-width: 395px;
  width: 100%;
  padding: 15px;
  overflow: hidden;
  background: #1a1e42;
  border: solid 1px rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reviews__slider .swiper-slide img {
  border-radius: 15px;
}
.reviews__slider .swiper-slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 224px;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #764df0;
  opacity: 0.6;
  -webkit-filter: blur(20px);
  filter: blur(20px);
}
@media (max-width: 768px) {
  .reviews__slider .swiper-slide {
    max-width: 209px;
    border-radius: 15px;
    padding: 8px;
  }
  .reviews__slider .swiper-slide img {
    border-radius: 12px;
  }
}
.reviews__slider .swiper-slide:nth-child(2n):before {
  background-color: #050505;
  background-color: #764df0;
}
.reviews__btns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.reviews__btns .swiper-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: auto;
  right: auto;
  margin: 0;
  background-color: #0000;
}
.reviews__btns .swiper-btn:after {
  display: none;
}
.footer {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: rgb(255 255 255 / 50%);
  margin: 80px auto;
  padding-bottom: 80px;
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer {
    margin: 30px auto;
    padding-bottom: 30px;
    font-size: 14px;
  }
  .footer .container {
    gap: 16px;
  }
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer__links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}
@media (max-width: 768px) {
  .footer__links a:active {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}
.footer__description {
  max-width: 955px;
}
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: none;
}
.modal.open,
.modal.visible {
  display: block;
}
.modal__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 90%);
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: opacity 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.modal.open .modal__overlay {
  opacity: 1;
}
.modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 8px)) scale(0.98);
  width: min(960px, calc(100vw - 24px));
  max-height: min(90vh, 720px);
  background: #1a1e42;
  border: solid 1px rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transition:
    opacity 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.modal.open .modal__dialog {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.modal__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  background: rgb(0 0 0 / 20%);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}
.modal__title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}
.modal__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff14;
  color: #fff;
  border: 1px solid hsla(0, 0%, 100%, 0.15);
}
@media (min-width: 768px) {
  .modal__close:hover {
    background: #ffffff26;
  }
}
.modal__content {
  padding: 16px;
  overflow: auto;
}
.modal__content.legal {
  padding: 24px;
  text-align: left;
}
.legal__section + .legal__section {
  margin-top: 20px;
}
.legal__subtitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  margin: 16px 0 8px;
  color: #fff;
  text-align: left;
}
.legal__list {
  margin: 10px 0 0 18px;
  padding: 0 0 0 2px;
  list-style: none;
}
.legal__list li {
  position: relative;
  padding-left: 16px;
  margin: 8px 0;
}
.legal__list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(270deg, #764df0, #764df0);
  box-shadow: 0 0 6px #764df059;
  transform: translateY(-50%);
}
.legal__notice {
  border: 1px solid hsla(0, 0%, 100%, 0.15);
  border-radius: 15px;
  padding: 16px;
  margin: 8px 0 16px;
}
.legal__notice--warn {
  background: #ffce4826;
  color: #764df059;
}
.legal__notice--danger {
  background: #e9424226;
  border-color: #e9424259;
}
.legal__notice--danger .legal__list li:before {
  background: #e94242;
  box-shadow: 0 0 6px #e9424259;
}
.legal__notice-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffce48;
  color: #764df0;
  text-shadow: 0 0 8px rgba(118, 77, 240, 0.5);
  background: linear-gradient(
    90deg,
    #9f7bff 0%,
    #cbbaff 25%,
    #e0d6ff 50%,
    #cbbaff 75%,
    #9f7bff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal__contact {
  border-radius: 12px;
  padding: 12px;
  background: #1a1e42;
  border: 1px solid hsla(0, 0%, 100%, 0.12);
}
.legal a {
  color: #764df0;
  text-shadow: 0 0 8px rgba(118, 77, 240, 0.5);
  background: linear-gradient(
    90deg,
    #9f7bff 0%,
    #cbbaff 25%,
    #e0d6ff 50%,
    #cbbaff 75%,
    #9f7bff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) {
  .legal a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}
.modal__content h3 {
  font-size: 18px;
  margin: 16px 0 8px;
}
.modal__content p,
.modal__content li {
  color: #fffc;
}
.modal__content ul {
  padding-left: 18px;
}
.icon-watching {
  width: 26px;
}
:root {
  --bg1: #2c384c;
  --bg2: #202a3a;
  --accent: #764df0;
  --muted: rgba(255, 255, 255, 0.15);
  --text: #eafaf1;
  --label-dim: rgba(255, 255, 255, 0.72);
  --circle-size: 64px;
}
@media (max-width: 720px) {
  :root {
    --circle-size: 40px;
  }
}
#header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  position: relative;
  box-sizing: border-box;
  z-index: 1;
}
.logo_small_support {
  max-width: 100%;
  width: auto;
  height: 42px;
  padding: 0;
  margin: 0;
}
@media (max-width: 720px) {
  #header {
    padding: 20px 8px 30px;
  }
  .logo_small_support {
    height: 36px;
  }
}
.form-container:has(.custom-select-wrapper),
.form-loader-wrapper:has(.custom-select-wrapper),
.signup-content:has(.custom-select-wrapper) {
  overflow: visible !important;
}
.custom-select-trigger:hover:not(:focus) {
  border-color: #d0d0d0;
}
.custom-select-trigger:focus-visible {
  outline: #4a90d9 solid 2px;
  outline-offset: 2px;
}
[type="submit"]:disabled {
  opacity: 50% !important;
  cursor: not-allowed !important;
}
.fa-sr-only-focusable:not(:focus),
.sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
:host,
:root {
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}
:host,
:root {
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
}
:host,
:root {
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}
.lock-card {
  max-width: 860px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lock-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lock-icon {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
}
.lock-icon svg {
  width: 15px;
  height: 15px;
  fill: #3d5a72;
}
.lock-title {
  font-size: 24px;
  font-weight: 500;
  color: #b8cfe0;
}
.lock-sub {
  font-size: 22px;
  color: #b8cfe0;
  margin-top: 10px;
}
.unlock-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
}
.unlock-fill {
  height: 100%;
  background: var(--player-accent, #00d4ff);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--player-accent-glow, rgba(0, 212, 255, 0.38));
  transition: width 0.4s ease;
}
.unlock-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.unlock-pct {
  font-family: "Oxanium", monospace;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--player-accent, #00d4ff);
}
.unlock-label {
  font-family: "Oxanium", monospace;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--player-accent, #00d4ff);
}
@media (max-width: 768px) {
  .lock-title {
    font-size: 16px;
  }
  .lock-sub {
    font-size: 14px;
    margin-top: 2px;
  }
  .unlock-pct {
    font-size: 14px;
  }
  .unlock-label {
    font-size: 14px;
  }
}
:root {
  --player-accent: #a855f7;
  --player-accent-dim: rgba(168, 85, 247, 0.18);
  --player-accent-glow: rgba(168, 85, 247, 0.38);
}
.player-wrap,
.player-wrap video {
  background: #000;
  width: 100%;
  height: 100%;
}
.player-error__code {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: Oxanium, "Courier New", monospace;
}
.p-time,
.player-error__code {
  font-family: Oxanium, "Courier New", monospace;
}
:root {
  --player-text: #b8cfe0;
  --player-text-dim: #3d5a72;
  --player-danger: #ff4560;
  --player-radius: 10px;
  --player-transition: 0.22s ease;
}
[data-player] {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.player-wrap {
  position: relative;
  border-radius: var(--player-radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.6),
    0 32px 80px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  cursor: none;
  user-select: none;
  -webkit-user-select: none;
  contain: layout;
  transition: box-shadow 0.3s;
}
.player-wrap:hover {
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.6),
    0 32px 80px rgba(0, 0, 0, 0.9),
    0 0 0 1px var(--player-accent-dim),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.player-wrap.show-cursor {
  cursor: default;
}
.player-wrap video {
  position: absolute;
  inset: 0;
  object-fit: contain;
}
.player-wrap:-moz-full-screen,
.player-wrap:-ms-fullscreen,
.player-wrap:-webkit-full-screen,
.player-wrap:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  aspect-ratio: unset !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: #000 !important;
}
.player-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.player-center-btn,
.player-error,
.player-overlay,
.player-spinner {
  z-index: 2;
  position: absolute;
}
.player-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.player-spinner {
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  pointer-events: none;
}
.player-spinner::after,
.player-spinner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
}
.player-spinner::before {
  border-top-color: var(--player-accent);
  animation: 0.75s linear infinite p-spin;
}
.player-spinner::after {
  inset: 8px;
  border-bottom-color: var(--player-accent-dim);
  animation: 1.1s linear infinite reverse p-spin;
}
@keyframes p-spin {
  to {
    transform: rotate(360deg);
  }
}
.player-error {
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.player-error__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 69, 96, 0.1);
  border: 1px solid rgba(255, 69, 96, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.player-error__icon svg {
  width: 18px;
  height: 18px;
  fill: var(--player-danger);
}
.player-error__code {
  font-size: 10px;
  color: var(--player-danger);
}
.player-error__msg {
  font-size: 13px;
  color: var(--player-text-dim);
}
.player-center-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 1.5px solid var(--player-accent-dim);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  backdrop-filter: blur(12px) saturate(1.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition:
    border-color var(--player-transition),
    background var(--player-transition),
    transform var(--player-transition),
    box-shadow var(--player-transition);
  box-shadow:
    0 0 16px var(--player-accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.player-center-btn:hover {
  border-color: var(--player-accent);
  background: var(--player-accent-dim);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow:
    0 0 24px var(--player-accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.player-center-btn:active {
  transform: translate(-50%, -50%) scale(0.96);
}
.player-center-btn svg {
  fill: #fff;
  width: 32px;
  height: 32px;
  display: block;
  margin-left: 4px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}
@media (max-width: 480px) {
  .player-center-btn {
    width: 54px;
    height: 54px;
  }
  .player-center-btn svg {
    width: 22px;
    height: 22px;
  }
}
.player-overlay {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0,
    rgba(0, 0, 0, 0.32) 32%,
    transparent 60%
  );
  transition: opacity 0.28s;
}
.player-fill,
.player-track {
  border-radius: 2px;
  position: relative;
}
.p-btn,
.player-bar {
  align-items: center;
  display: flex;
}
.p-btn,
.p-time {
  color: var(--player-text);
}
.player-progress {
  padding: 0 16px 8px;
}
.player-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: height 0.14s;
}
.player-track.no-seek {
  cursor: default;
  pointer-events: none;
}
.player-fill {
  height: 100%;
  background: var(--player-accent);
  box-shadow: 0 0 10px var(--player-accent-glow);
  pointer-events: none;
  transition: width 0.15s linear;
}
.player-fill::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  background: var(--player-accent);
  border-radius: 50%;
  box-shadow:
    0 0 10px var(--player-accent),
    0 0 20px var(--player-accent-glow);
  transition: transform 0.14s;
}
.player-bar {
  gap: 2px;
  padding: 0 10px 14px;
}
.p-btn {
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 7px;
  border-radius: 6px;
  justify-content: center;
  flex-shrink: 0;
  transition:
    color var(--player-transition),
    background var(--player-transition);
  line-height: 0;
}
.p-btn:hover {
  color: var(--player-accent);
  background: var(--player-accent-dim);
}
.p-btn:active {
  transform: scale(0.92);
}
.p-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}
.p-vol-group {
  display: flex;
  align-items: center;
  gap: 4px;
}
.p-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 70px;
  height: 3px;
  border-radius: 2px;
  outline: 0;
  cursor: pointer;
  border: none;
}
.p-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--player-accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--player-accent-glow);
  cursor: pointer;
  border: none;
  transition: transform 0.1s;
}
.p-vol-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}
.p-vol-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--player-accent);
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 6px var(--player-accent-glow);
  cursor: pointer;
}
.p-vol-slider::-ms-thumb {
  width: 12px;
  height: 12px;
  background: var(--player-accent);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.p-time {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 0 4px;
}
.p-time__sep {
  color: var(--player-text-dim);
  margin: 0 3px;
}
.p-spacer {
  flex: 1;
}
.reg-form-wrapp {
  width: 100%;
  max-width: 600px;
  margin: 50px auto 0;
}
