* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --Dark-BG-2: #1f1f1f;
}

button {
  font-family: inter;
}

input {
  font-family: inter;
}

.header {
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  z-index: 9999;
}

.header_container {
  max-width: 1920px;
  height: 73px;
  margin: auto;
  padding: 0 40px 0 494px;
  justify-content: flex-start;
  display: flex;
  align-items: center;
}

.header_inner:nth-child(1) {
  margin-right: 259px;
}

.header_inner:nth-child(2) {
  margin-right: 228px;
}

.split{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  cursor: none;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
@media (pointer: coarse) {
  .split { cursor: default; }
}
.split.dragging { cursor: none; }

.split__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.split__line{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255,255,255,.12) 6%,
    rgba(255,255,255,.65) 30%,
    #fff 50%,
    rgba(255,255,255,.65) 70%,
    rgba(255,255,255,.12) 94%,
    transparent 100%
  );
  pointer-events: none;
  will-change: left;
}

.split__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(14,14,14,.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 5px rgba(255,255,255,.05),
    0 6px 28px rgba(0,0,0,.55);
  transition: transform .12s ease, box-shadow .12s ease;
}
.split.dragging .split__handle {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 0 0 6px rgba(255,255,255,.08),
    0 8px 32px rgba(0,0,0,.65);
}

.split__cursor {
  position: absolute;
  pointer-events: none;
  z-index: 50;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .18s ease;
  will-change: left, top;
}
.split__cursor.visible { opacity: 1; }
.split.dragging .split__cursor svg circle:first-child {
  fill: rgba(0,0,0,0.4);
}

.split__touch-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.split__touch-hint.animate { opacity: 1; }
.split__touch-hint.done { opacity: 0; }

.split__range{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: none;
  -webkit-appearance: none;
  appearance: none;
  touch-action: none;
}
@media (pointer: coarse) {
  .split__range { cursor: default; }
}

.header_inner:nth-child(3) {
  margin-right: auto;
}

.header_inner:last-child {
  display: flex;
  gap: 15px;
}

.header_menu {
  display: flex;
  gap: 24px;
}

.header_menu ul,
li {
  list-style: none;
}

.menu_link {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu_link:hover {
  color: #fe99ff;
}

.header_button {
  width: 136px;
  height: 41px;
  border-radius: 12px;
  background: linear-gradient(
      0deg,
      var(--Accent-100, #fe99ff),
      var(--Accent-100, #fe99ff)
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  cursor: pointer;
  border: 0px;
  font-family: inter, sans-serif;
  box-shadow: 0px -1px 0px 0px #00000014 inset;
  transition: all 0.3s ease;
}

.header_button:hover {
  opacity: 80%;
}

.header_button:focus {
  opacity: 70%;
}

.switch_container {
  width: 50px;
  height: 26px;
  background-color: #171717;
  border-radius: 126px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.switch_light,
.switch_dark {
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.switch_circle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transform: translateX(0);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 0;
}

.switch_light,
.switch_dark {
  position: relative;
  z-index: 1;
}

.header_lang_item {
  position: relative;
  width: 107px;
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  height: 25px;
  border-radius: 128px;
  align-items: center;
  cursor: pointer;
}

.header_lang_main {
  width: 79px;
  justify-content: space-between;
  display: flex;
  padding: 0 6px;
  height: 23px;
  align-items: center;
  border-radius: 128px;
}

.header_lang_main span {
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
}

.header_lang_button {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  max-width: 1920px;
  padding: 0 40px;
  margin: auto;
}

.hero_container {
  background-size: cover;
  background-position: center;
  border-radius: 0 0 40px 40px;
  width: 100%;
  padding-top: 92px;
  border: 2px solid #fd8fff26;
  border-top: 0;
  padding-bottom: 133px;
  position: relative;
  text-align: center;
}

.hero_title {
  text-align: center;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 160px;
  margin: 0px;
  margin-top: 50px;
}

.hero_paragraph {
  text-align: center;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  color: #ffffff99;
  line-height: 150%;
  margin: 0px;
}

.hero_button {
  width: 182px;
  height: 41px;
  background: linear-gradient(
      0deg,
      var(--Accent-100, #fe99ff),
      var(--Accent-100, #fe99ff)
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  border-radius: 12px;
  box-shadow: 0px -1px 0px 0px #00000014 inset;
  color: #0f0f0f;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  cursor: pointer;
  border: 0px;
  margin-top: 98px;
  transition: all 0.3s ease;
}

.hero_button:hover {
  opacity: 80%;
}

.hero_button:focus {
  opacity: 70%;
}

.cheat_text_section {
  max-width: 1920px;
  margin: auto;
  text-align: center;
  margin-top: 120px;
  justify-content: center;
}

.cheat_text_section_title {
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  text-align: center;
}

.cheat_text_section_paragraph {
  width: 512px;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 150%;
  margin: auto;
}

.cheat_main_section {
  max-width: 1920px;
  margin: auto;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.cheat_main_left_inner,
.cheat_main_right_inner {
  position: relative;
  width: 302.67px;
  padding: 28px 23px 24px;
  border-radius: 16px;
  z-index: 1;
  overflow: hidden;
}

.cheat_main_left_inner::before,
.cheat_main_right_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    131.89deg,
    rgba(255, 255, 255, 0.05) 2.72%,
    rgba(255, 255, 255, 0) 40.54%,
    rgba(255, 255, 255, 0) 59.46%,
    rgba(255, 255, 255, 0.05) 97.28%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cheat_main_center_inner {
  width: 302px;
  padding: 0 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fe8fff 0%, #832b83 100%);
  border: 1px solid
    linear-gradient(
      131.89deg,
      rgba(255, 255, 255, 0.05) 2.72%,
      rgba(255, 255, 255, 0) 40.54%,
      rgba(255, 255, 255, 0) 59.46%,
      rgba(255, 255, 255, 0.05) 97.28%
    );
  padding-top: 16px;
  padding-bottom: 24px;
  text-align: center;
}

.cheat_main_left_inner h2,
.cheat_main_right_inner h2,
.cheat_main_center_inner h2 {
  margin: 0px;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 120%;
  color: #ffffff;
  margin-top: 34px;
  text-align: start;
}

.cheat_main_left_inner p,
.cheat_main_right_inner p,
.cheat_main_center_inner p {
  margin: 0px;
  color: #ffffff99;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 150%;
  margin-top: 12px;
  text-align: start;
}

.cheat_button_section {
  max-width: 1920px;
  margin: auto;
  text-align: center;
  margin-top: 48px;
  justify-content: center;
}

.cheat_button_section button {
  width: 203px;
  height: 41px;
  border-radius: 12px;
  background: linear-gradient(
      0deg,
      var(--Accent-100, #fe99ff),
      var(--Accent-100, #fe99ff)
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  box-shadow: 0px -1px 0px 0px #00000014 inset;
  border: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inter;
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cheat_button_section button:hover {
  opacity: 80%;
}

.cheat_button_section button:focus {
  opacity: 70%;
}

.demo_container {
  max-width: 940px;
  margin: auto;
  text-align: center;
  margin-top: 120px;
}

.demo_text h2 {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  text-align: center;
  margin: 0px;
}

.demo_text p {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  text-align: center;
  margin: 0px;
  margin-top: 12px;
}

.demo_item {
  margin-top: 48px;
  border: 1px solid;
  border-image-source: linear-gradient(
    131.89deg,
    rgba(255, 255, 255, 0.3) 2.72%,
    rgba(255, 255, 255, 0) 40.54%,
    rgba(255, 255, 255, 0) 59.46%,
    rgba(255, 255, 255, 0.3) 97.28%
  );
}

.demo_item img {
  border-radius: 16px;
}

.features_text_section {
  margin-top: 120px;
  text-align: center;
}

.features_text_title {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  margin: 0px;
}

.features_text_description {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #ffffff99;
}

.features_main_container {
  max-width: 940px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.features_main_first_inner,
.features_main_second_inner,
.features_main_third_inner {
  position: relative;
  width: 302.67px;
  border-radius: 16px;
  padding: 24px;
  z-index: 1;
  overflow: hidden;
}

.features_main_first_inner::before,
.features_main_second_inner::before,
.features_main_third_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    131.89deg,
    rgba(255, 255, 255, 0.05) 2.72%,
    rgba(255, 255, 255, 0) 40.54%,
    rgba(255, 255, 255, 0) 59.46%,
    rgba(255, 255, 255, 0.05) 97.28%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: 2;
}

.features_main_fourth_inner,
.features_main_fifth_inner {
  position: relative;
  width: 462px;
  background-color: #171717;
  border-radius: 16px;
  padding: 24px;
  z-index: 1;
  overflow: hidden;
}

.features_main_fourth_inner::before,
.features_main_fifth_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    131.89deg,
    rgba(255, 255, 255, 0.05) 2.72%,
    rgba(255, 255, 255, 0) 40.54%,
    rgba(255, 255, 255, 0) 59.46%,
    rgba(255, 255, 255, 0.05) 97.28%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: 2;
}

.features_main_icons p {
  font-weight: 500;
  font-size: 16px;
  margin: 0px;
}

.features_main_text {
  font-weight: 400;
  font-style: Regular;
  font-size: 13px;
  line-height: 150%;
  margin-top: 12px;
}

.features_button_content {
  text-align: center;
  margin-top: 48px;
}
.features_button_content button {
  width: 202px;
  height: 41px;
  border-radius: 12px;
  background: linear-gradient(
      0deg,
      var(--Accent-100, #fe99ff),
      var(--Accent-100, #fe99ff)
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  box-shadow: 0px -1px 0px 0px #00000014 inset;
  border: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inter;
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.features_button_content button:hover {
  opacity: 80%;
}

.features_button_content button:focus {
  opacity: 70%;
}

.prices_section_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
}

.prices_text_section {
  max-width: 1920px;
  margin: auto;
  text-align: center;
  margin-top: 0;
}

.prices_text_title {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  text-align: center;
  margin: 0px;
}

.prices_text_description {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  text-align: center;
  margin: 0px;
  margin-top: 8px;
}

.prices_product_switcher {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.prices_switcher_btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-family: inter;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
  line-height: 1;
  white-space: nowrap;
}

.prices_switcher_btn svg {
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.18s ease;
}

.prices_switcher_btn:hover {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}

.prices_switcher_btn:hover svg {
  opacity: 0.6;
}

.prices_switcher_btn.active {
  background: rgba(254,153,255,0.08);
  border-color: rgba(254,153,255,0.3);
  color: #fe99ff;
}

.prices_switcher_btn.active svg {
  opacity: 1;
}

.light .prices_switcher_btn {
  color: rgba(0,0,0,0.35);
  border-color: rgba(0,0,0,0.1);
}

.light .prices_switcher_btn:hover {
  color: rgba(0,0,0,0.6);
  border-color: rgba(0,0,0,0.2);
}

.light .prices_switcher_btn.active {
  background: rgba(180,0,200,0.06);
  border-color: rgba(180,0,200,0.25);
  color: #b400c8;
}

.prices_main_section {
  max-width: 920px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 0;
  position: relative;
  box-sizing: border-box;
  padding: 0 16px;
}

.prices_main_inner {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 16px;
  padding: 20px 18px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.prices_main_inner:has(.prices_main_popular) {
  padding-top: 28px;
}

.prices_main_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    131.89deg,
    rgba(255, 255, 255, 0.05) 2.72%,
    rgba(255, 255, 255, 0) 40.54%,
    rgba(255, 255, 255, 0) 59.46%,
    rgba(255, 255, 255, 0.05) 97.28%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: 2;
}

.prices_main_inner h1 {
  font-weight: 600;
  font-size: 32px;
  margin: 0;
  margin-left: 2px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
}

.prices_main_inner P {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 120%;
  margin: 0px;
  margin-top: 16px;
}

.prices_main_inner button {
  width: 100%;
  height: 41px;
  box-shadow: 0px -1px 0px 0px #00000040 inset;
  border-radius: 12px;
  border: 0px;
  cursor: pointer;
  font-family: inter;
  color: #ffffff;
  font-weight: 500;
  margin-top: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.prices_main_inner button:hover {
  opacity: 80%;
}

.prices_main_inner button:focus {
  opacity: 70%;
}

.prices_main_button_popular {
  background: linear-gradient(
      0deg,
      var(--Accent-100, #fe99ff),
      var(--Accent-100, #fe99ff)
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    ) !important;
  color: #0f0f0f !important;
}

.prices_main_popular {
  position: absolute;
  width: 129px;
  height: 22px;
  background: linear-gradient(0deg, #fe99ff, #fe99ff),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  border-radius: 128px;
  color: #0f0f0f;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.prices_buy_link {
  display: block;
}

.prices_button_section {
  margin: auto;
  margin-top: 120px;
  text-align: center;
  max-width: 1920px;
}

.prices_button_section h1 {
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 18px;
  margin: 0px;
  margin-left: 2px;
}

.prices_button_section P {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 150%;
  margin: 0px;
  margin-top: 16px;
}

.prices_button_section button {
  width: 202px;
  height: 41px;
  border-radius: 12px;
  background: linear-gradient(
      0deg,
      var(--Accent-100, #fe99ff),
      var(--Accent-100, #fe99ff)
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  box-shadow: 0px -1px 0px 0px #00000014 inset;
  border: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inter;
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 500;
  margin-top: 32px;
  transition: all 0.3s ease;
}

.prices_button_section button:hover {
  opacity: 80%;
}

.prices_button_section button:hover {
  opacity: 70%;
}

.auth_header {
  max-width: 1920px;
  padding: 0 256px;
  margin: auto;
  margin-top: 24px;
  margin-bottom: 24px;
}

.auth_header_back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: fit-content;
}

.auth_logo_parent {
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth_logo.img {
  width: 48px;
  height: 48px;
  background-size: cover;
}

.auth_header_back p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
}

.auth_container {
  max-width: 360px;
  margin: auto;
  justify-content: center;
  text-align: center;
  margin-top: 24px;
}

.auth_buttons {
  margin-top: 40px;
  width: 100%;
  height: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 16px;
  z-index: 1;
  overflow: hidden;
  position: relative;
}

.auth_buttons::before,
.auth_main_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    131.89deg,
    rgba(255, 255, 255, 0.05) 2.72%,
    rgba(255, 255, 255, 0) 40.54%,
    rgba(255, 255, 255, 0) 59.46%,
    rgba(255, 255, 255, 0.05) 97.28%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: 2;
}

.auth_button {
  width: 174px;
  height: 41px;
  cursor: pointer;
  border: 0;
  font-weight: 500;
  font-size: 14px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.auth_main_inner {
  padding: 0 20px;
  margin-top: 12px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 1;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  text-align: start;
}

.auth_input input {
  width: 100%;
  height: 41px;
  border-radius: 12px;
  border: 0px;
  outline: none;
  padding-left: 44px;
  font-family: inter;
  margin-bottom: 8px;
  box-shadow: 0px -1px 0px 0px #00000040 inset;
}

.auth_input svg:nth-child(1) {
  position: absolute;
  margin-top: 11px;
  margin-left: 15px;
}

.auth_input svg:nth-child(2) {
  position: absolute;
  margin-top: 11px;
  margin-left: 15px;
}

.auth_input svg:nth-child(3) {
  position: absolute;
  margin-top: 11px;
  margin-left: -30px;
  cursor: pointer;
}

.forgot_content a {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  text-decoration: none;
  margin: 0px;
}

.captcha_img {
    width: 100%;
    max-width: 320px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    overflow: hidden;
}

.captcha_inner {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  margin-top: 16px;
}

.auth_input.top {
  margin-top: 8px;
}

.auth_submit button {
  width: 100%;
  height: 41px;
  border: 0px;
  cursor: pointer;
  border-radius: 12px;
  margin-top: 20px;
}

.auth_button_1 {
  width: 100%;
  height: 41px;
  box-shadow: 0px -1px 0px 0px #00000040 inset;
  border: 0px;
  cursor: pointer;
  border-radius: 12px;
  margin-top: 32px;
  color: #ffffff99;
  background: linear-gradient(
      0deg,
      var(--Dark-BG-2, #1f1f1f),
      var(--Dark-BG-2, #1f1f1f)
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0) 100%
    );
}

.auth_logo_backgorund {
  position: relative;
  width: 100%;
  overflow: visible;
  padding-bottom: 40px;
  box-sizing: border-box;
}

.auth_logo_backgorund::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(10px);
  z-index: -1;
  margin: auto;
  background-size: cover;
}

.auth_main_inner h1 {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  text-align: center;
  margin: 0px;
  margin-bottom: 32px;
  margin-top: 8px;
}

.auth_main_paragraph {
  text-align: center;
  font-weight: 400;
  line-height: 150%;
  font-style: Regular;
  font-size: 14px;
}

.header_button_mobile {
  display: none;
}

.features_main_container--soon-premium {
	position: relative;
	isolation: isolate;
}

.features_main_container--soon-premium .features_main_first_inner,
.features_main_container--soon-premium .features_main_second_inner,
.features_main_container--soon-premium .features_main_third_inner,
.features_main_container--soon-premium .features_main_fourth_inner,
.features_main_container--soon-premium .features_main_fifth_inner {
	filter: blur(14px) saturate(0.9);
	transform: scale(1.015);
	opacity: 0.38;
	user-select: none;
	pointer-events: none;
	transition: 0.35s ease;
}

.features_main_container--soon-premium::before {
	content: "";
	position: absolute;
	inset: -8px;
	z-index: 4;
	pointer-events: none;
	border-radius: 28px;
	background:
		radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 28%, rgba(0,0,0,0) 55%),
		linear-gradient(180deg, rgba(7,10,18,0.20) 0%, rgba(7,10,18,0.48) 100%);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.features_main_container--soon-premium::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 5;
	pointer-events: none;
	border-radius: 24px;
	box-shadow:
		inset 0 0 0 1px rgba(255,255,255,0.05),
		0 25px 80px rgba(0,0,0,0.28);
}

.features_soon_overlay {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	overflow: hidden;
}

.features_soon_glow {
	position: absolute;
	width: 420px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(
		ellipse at center,
		rgba(255, 255, 255, 0.14) 0%,
		rgba(255, 255, 255, 0.06) 30%,
		rgba(255, 255, 255, 0.02) 48%,
		rgba(255, 255, 255, 0) 72%
	);
	filter: blur(22px);
	animation: featuresSoonPulse 2.8s ease-in-out infinite;
}

.features_soon_badge {
	position: relative;
	z-index: 2;
	display: inline-block;
	padding: 0;
	border: 0;
	background: linear-gradient(180deg, #ffffff 0%, #d9d9d9 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	border-radius: 0;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;

	font-size: 64px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.38em;
	text-transform: uppercase;

	filter:
		drop-shadow(0 0 8px rgba(255,255,255,0.22))
		drop-shadow(0 0 24px rgba(255,255,255,0.10))
		drop-shadow(0 10px 26px rgba(0,0,0,0.30));

	animation: featuresSoonFloat 2.8s ease-in-out infinite;
}

@keyframes featuresSoonPulse {
	0%,
	100% {
		transform: scale(0.96);
		opacity: 0.7;
	}
	50% {
		transform: scale(1.04);
		opacity: 1;
	}
}

@keyframes featuresSoonFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-3px);
	}
}

@media (max-width: 768px) {
	.features_main_container--soon-premium .features_main_first_inner,
	.features_main_container--soon-premium .features_main_second_inner,
	.features_main_container--soon-premium .features_main_third_inner,
	.features_main_container--soon-premium .features_main_fourth_inner,
	.features_main_container--soon-premium .features_main_fifth_inner {
		filter: blur(10px);
		opacity: 0.34;
	}

	.features_main_container--soon-premium {
		max-height: 340px;
		overflow: hidden;
	}

	.features_soon_badge {
		font-size: 28px;
		letter-spacing: 0.2em;
	}

	.features_soon_glow {
		width: 200px;
		height: 120px;
		filter: blur(16px);
	}
}

@media (max-width: 480px) {
	.features_main_container--soon-premium {
		max-height: 280px;
	}

	.features_soon_badge {
		font-size: 22px;
		letter-spacing: 0.18em;
	}

	.features_soon_glow {
		width: 160px;
		height: 90px;
		filter: blur(14px);
	}
}

.lang_dropdown {
  width: 107px;
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  color: #000;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(-5px);
  pointer-events: none;
  transition: 0.25s ease;
  padding: 4px;
}

.lang_dropdown.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang_option {
  height: 23px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  color: #ffffff99;
  font-size: 11px;
  line-height: 1;
}

.lang_option:not(:last-child) {
  margin-bottom: 4px;
}

.lang_option.active {
  background: #1f1f1f;
  color: #ffffff;
}

.lang_option:hover {
  background: #1f1f1f;
}

.header_lang_button svg {
  transition: transform 0.25s ease;
}

.header_lang_button.active svg {
  transform: rotate(180deg);
}

@media (max-width: 1919px) {
  .header_inner:nth-child(1) {
    margin-right: 259px;
  }

  .header_inner:nth-child(2) {
    margin-right: 218px;
  }

  .header_inner:nth-child(3) {
    margin-right: auto;
  }
}

@media (max-width: 1900px) {
  .header_inner:nth-child(1) {
    margin-right: 259px;
  }

  .header_inner:nth-child(2) {
    margin-right: 210px;
  }

  .header_inner:nth-child(3) {
    margin-right: auto;
  }
}

@media (max-width: 1800px) {
  .header_inner:nth-child(1) {
    margin-right: 200px;
  }

  .header_inner:nth-child(2) {
    margin-right: 150px;
  }

  .header_inner:nth-child(3) {
    margin-right: auto;
  }
}

@media (max-width: 1650px) {
  .header_inner:nth-child(1) {
    margin-right: 100px;
  }

  .header_inner:nth-child(2) {
    margin-right: 150px;
  }

  .header_inner:nth-child(3) {
    margin-right: auto;
  }
}

@media (max-width: 1490px) {
  .header_inner:nth-child(1) {
    margin-right: 0px;
  }

  .header_inner:nth-child(2) {
    margin-right: 40px;
  }

  .header_inner:nth-child(3) {
    margin-right: auto;
  }
}

@media (max-width: 1400px) {
  .header_inner:nth-child(1) {
    margin-right: 0px;
  }

  .header_inner:nth-child(2) {
    margin-right: 50px;
  }

  .header_inner:nth-child(3) {
    margin-right: auto;
  }

  .header_container {
    max-width: 1920px;
    height: 73px;
    margin: auto;
    padding: 0 40px;
    justify-content: flex-start;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 1919px) {
  .features_main_first_inner {
    width: 49%;
  }
  .features_main_second_inner {
    width: 49%;
  }
  .features_main_third_inner {
    width: 49%;
  }
  .features_main_fourth_inner {
    width: 49%;
  }
  .features_main_fifth_inner {
    width: 49%;
  }
  .auth_header {
    max-width: 1920px;
    padding: 0 40px;
    margin: auto;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 1000px) {
  .cheat_main_section {
    display: flex;
    flex-wrap: wrap;
    padding: 0 40px;
  }

  .cheat_main_left_inner,
  .cheat_main_right_inner,
  .cheat_main_center_inner {
    width: 100%;
  }

  .cheat_main_center_inner {
    order: -1;
  }
  .demo_container {
    padding: 0px;
    max-width: 100%;
    width: 100%;
  }
  .demo_item {
    width: 100%;
  }
  .features_main_first_inner {
    width: 100%;
  }
  .features_main_second_inner {
    width: 100%;
  }
  .features_main_third_inner {
    width: 100%;
  }
  .features_main_fourth_inner {
    width: 100%;
  }
  .features_main_fifth_inner {
    width: 100%;
  }

  .prices_main_section {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 0 20px 12px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .prices_main_section::-webkit-scrollbar {
    display: none;
  }

  .prices_main_inner {
    flex: 0 0 240px;
    min-width: 240px;
    width: 240px;
    box-sizing: border-box;
  }

  .prices_main_popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
  }

  .prices_product_switcher {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .prices_switcher_btn {
    flex: 1;
    justify-content: center;
    font-size: 12px;
    padding: 7px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .prices_section_wrap {
    width: 100%;
  }

  .features_main_container {
    padding: 0 20px;
  }
}

@media (max-width: 830px) {
  .header_menu {
    display: none;
  }
  .hero_title {
    font-size: 120px;
  }
  .hero_backg {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media (max-width: 700px) {
  .hero_title {
    font-size: 64px;
  }
  .hero_paragraph {
    font-size: 16px;
  }
  .hero {
    padding: 0 20px;
  }
  body.dark .hero_container {
    background: linear-gradient(
        180deg,
        rgba(254, 143, 255, 0) 0%,
        rgba(254, 143, 255, 0.1) 100%
      ),
      url(/images/back-mobile.svg) no-repeat center/cover !important;
  }
  body.light .hero_container {
    background: linear-gradient(
        180deg,
        rgba(254, 143, 255, 0) 0%,
        rgba(254, 143, 255, 0.1) 100%
      ),
      url(/images/back-mobile-light.svg) no-repeat center/cover !important;
  }
  .hero_container {
    padding-bottom: 48px !important;
  }
  .cheat_main_section {
    padding: 0 20px;
  }
  .features_main_container {
    padding: 0 20px;
  }
  .prices_main_section {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .cheat_text_section_title {
    font-size: 18px;
  }
  .cheat_text_section_paragraph {
    font-size: 14px;
    width: 358px;
  }
}

@media (max-width: 500px) {
  .header_lang_item {
  position: relative;
  width: 107px;
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  height: 25px;
  border-radius: 128px;
  align-items: center;
  margin-top: 9px;
  cursor: pointer;
}

  .header_container {
    padding: 0 20px;
  }
  .header_button {
    display: none;
  }
  .header_button_mobile {
    display: block !important;
    width: 69px;
    height: 41px;
    font-size: 14px;
    border-radius: 12px;
    color: #0f0f0f;
    background: linear-gradient(
        0deg,
        var(--Accent-100, #fe99ff),
        var(--Accent-100, #fe99ff)
      ),
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 100%
      );
    cursor: pointer;
    border: 0px;
    font-family: inter, sans-serif;
    box-shadow: 0px -1px 0px 0px #00000014 inset;
  }
  .switch_container {
    margin-top: 8px;
  }
  .demo_text p {
    font-size: 14px;
    width: 300px;
    margin: auto;
    margin-top: 12px;
  }
  .prices_text_description {
    font-size: 14px;
    width: 300px;
    margin: auto;
    margin-top: 12px;
  }
  .prices_button_section p {
    font-size: 14px;
    width: 300px;
    margin: auto;
    margin-top: 12px;
  }
  .prices_main_inner button {
    margin-top: 14px;
  }
  .prices_switcher_btn svg {
    display: none;
  }
}

@media (max-width: 358px) {
  .cheat_text_section_paragraph {
    width: 100%;
  }
}

.features_img1,
.features_img2,
.features_img3,
.features_img4,
.features_img5 {
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}

.features_main_icons p {
  margin-left: 25px;
}

.prices_discount_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.prices_original_price {
  font-size: 15px;
  font-weight: 500;
  text-decoration: line-through;
  opacity: .45;
}
body.dark .prices_original_price { color: #fff; }
body.light .prices_original_price { color: #000; }
.prices_discount_badge {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(254,153,255,.18);
  color: #fe99ff;
  letter-spacing: .02em;
}
body.light .prices_discount_badge {
  background: rgba(180,0,255,.12);
  color: #b020e0;
}

#page-wrap {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.4,0,.2,1) .1s;
}
body.page-ready #page-wrap {
  opacity: 1;
}

body.auth {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.auth #page-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

body.auth .auth_logo_backgorund {
  flex: 1;
  min-height: unset;
  padding-bottom: 0;
}

body.auth .footer_header {
  position: relative !important;
  bottom: unset !important;
  left: unset !important;
  right: unset !important;
  margin-top: 0 !important;
  flex-shrink: 0;
}