@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

@font-face {
  font-family: "Fredoka";
  src: url("/Fredoka-VariableFont_wdth,wght.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  font-family: "Fredoka";
  background-color: #070A12;
}

:root {
  --container-width: 1160px;
  --bg-main: #070A12;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.12);
  --text-main: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.72);
  --accent: #59B2FF;
  --accent-2: #A78BFA;
  --danger: #FF4D6D;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bg-main);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.age-strip {
  background: rgba(255, 77, 109, 0.15);
  border-bottom: 1px solid rgba(255, 77, 109, 0.25);
}
.age-strip__container {
  width: min(var(--container-width), 100% - 40px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}
.age-strip__badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 77, 109, 0.3);
  border: 1px solid rgba(255, 77, 109, 0.4);
  font-size: 12px;
  font-weight: 700;
}
.age-strip__text {
  margin: 0;
  font-size: 13px;
  color: var(--text-main);
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 18, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}
.site-header__container {
  width: min(var(--container-width), 100% - 40px);
  margin: 0 auto;
  padding: 14px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.site-header__brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}
.site-header__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex: 0 0 auto;
  object-fit: contain;
  display: block;
}
.site-header__title {
  font-weight: 800;
  font-size: 16px;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-header__nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}
.site-header__menu {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}
.site-header__menu-link {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}
.site-header__menu-link:hover {
  background: var(--surface);
  color: var(--text-main);
}
.site-header__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.site-header__action {
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.site-header__action--ghost {
  background: var(--surface);
  border: 1px solid var(--stroke);
  color: var(--text-main);
}
.site-header__action--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #070A12;
}
@media (max-width: 940px) {
  .site-header__nav {
    display: none;
  }
  .site-header__actions {
    display: flex;
    justify-self: end;
  }
  .site-header__action {
    height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
  }
}
@media (max-width: 420px) {
  .site-header__container {
    gap: 12px;
  }
  .site-header__title {
    max-width: 110px;
  }
  .site-header__actions {
    gap: 8px;
  }
  .site-header__action {
    height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.06) brightness(0.9);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.84) 0%, rgba(7, 10, 18, 0.72) 44%, rgba(7, 10, 18, 0.92) 100%), radial-gradient(720px 420px at 18% 16%, rgba(89, 178, 255, 0.22), transparent 62%), radial-gradient(620px 380px at 82% 20%, rgba(167, 139, 250, 0.18), transparent 66%), radial-gradient(700px 520px at 60% 100%, rgba(89, 178, 255, 0.12), transparent 66%);
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 2;
  width: min(var(--container-width), 100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero__content {
  min-width: 0;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25px;
  backdrop-filter: blur(10px);
}
.hero__title {
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.4px;
  color: var(--text-main);
}
.hero__description {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.hero__button {
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.15px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}
.hero__button:hover {
  transform: translateY(-1px);
}
.hero__button:active {
  transform: translateY(0);
}
.hero__button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #070A12;
  box-shadow: 0 18px 42px rgba(89, 178, 255, 0.14), 0 18px 42px rgba(167, 139, 250, 0.12);
}
.hero__button--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  color: var(--text-main);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__meta-item {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.hero__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.hero__tile {
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}
.hero__tile--primary {
  grid-column: span 2;
  padding: 20px;
  background: linear-gradient(135deg, rgba(89, 178, 255, 0.16), rgba(167, 139, 250, 0.12)), rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.hero__tile-title {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.15px;
  color: var(--text-main);
}
.hero__tile-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}
.hero__note {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.hero__note-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 999px;
  background: rgba(255, 77, 109, 0.85);
  box-shadow: 0 0 0 6px rgba(255, 77, 109, 0.12);
  flex: 0 0 auto;
}
.hero__note-text {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
@media (max-width: 980px) {
  .hero {
    padding: 76px 0 90px;
  }
  .hero__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__title {
    font-size: 34px;
  }
  .hero__visual {
    grid-template-columns: 1fr;
  }
  .hero__tile--primary, .hero__note {
    grid-column: auto;
  }
}
@media (max-width: 560px) {
  .hero {
    padding: 62px 0 74px;
  }
  .hero__title {
    font-size: 28px;
    line-height: 1.15;
  }
  .hero__description {
    font-size: 15px;
  }
  .hero__button {
    width: 100%;
    justify-content: center;
  }
}

.games {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.92) 0%, rgba(7, 10, 18, 0.96) 100%);
}
.games__container {
  width: min(var(--container-width), 100% - 40px);
  margin: 0 auto;
}
.games__header {
  max-width: 560px;
  margin-bottom: 48px;
}
.games__title {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--text-main);
}
.games__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.games__card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.games__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.45);
}
.games__image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 18px;
  aspect-ratio: 16/10;
  background: rgba(255, 255, 255, 0.04);
}
.games__image img {
  width: 100%;
  height: 100%;
  transform: scale(1.04);
}
.games__card-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}
.games__card-description {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
@media (max-width: 980px) {
  .games__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .games {
    padding: 72px 0;
  }
  .games__title {
    font-size: 28px;
  }
  .games__grid {
    grid-template-columns: 1fr;
  }
}

.manual {
  padding: 96px 0;
  background: rgba(7, 10, 18, 0.96);
}
.manual__container {
  width: min(var(--container-width), 100% - 40px);
  margin: 0 auto;
}
.manual__header {
  max-width: 620px;
  margin-bottom: 52px;
}
.manual__title {
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--text-main);
}
.manual__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}
.manual__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.manual__card {
  position: relative;
  padding: 22px 20px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}
.manual__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #070A12;
  font-weight: 900;
  font-size: 14px;
}
.manual__card-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
}
.manual__card-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
@media (max-width: 1100px) {
  .manual__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .manual__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .manual {
    padding: 72px 0;
  }
  .manual__title {
    font-size: 28px;
  }
  .manual__grid {
    grid-template-columns: 1fr;
  }
}

.manual {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: rgba(7, 10, 18, 0.96);
}
.manual::before, .manual::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}
.manual::before {
  top: -180px;
  left: -200px;
  background: radial-gradient(circle, rgba(89, 178, 255, 0.9), rgba(89, 178, 255, 0.4), transparent 70%);
}
.manual::after {
  bottom: -220px;
  right: -220px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.9), rgba(167, 139, 250, 0.4), transparent 70%);
}
.manual__container {
  position: relative;
  z-index: 2;
  width: min(var(--container-width), 100% - 40px);
  margin: 0 auto;
}

.faq {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: rgba(7, 10, 18, 0.96);
}
.faq::before, .faq::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.faq::before {
  top: -220px;
  right: -220px;
  background: radial-gradient(circle, rgba(89, 178, 255, 0.85), rgba(89, 178, 255, 0.35), transparent 70%);
}
.faq::after {
  bottom: -220px;
  left: -220px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.85), rgba(167, 139, 250, 0.35), transparent 70%);
}
.faq__container {
  position: relative;
  z-index: 2;
  width: min(var(--container-width), 100% - 40px);
  margin: 0 auto;
}
.faq__header {
  max-width: 620px;
  margin-bottom: 44px;
}
.faq__title {
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--text-main);
}
.faq__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}
.faq__list {
  display: grid;
  gap: 14px;
}
.faq__item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--text-main);
  text-align: left;
}
.faq__question-text {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}
.faq__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  flex: 0 0 auto;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
}
.faq__icon::after {
  width: 2px;
  height: 14px;
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}
.faq__answer {
  padding: 0 18px 18px;
}
.faq__answer-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.faq__item.is-open {
  border-color: rgba(255, 255, 255, 0.18);
}
.faq__item.is-open .faq__icon::after {
  transform: scaleY(0);
  opacity: 0;
}
@media (max-width: 560px) {
  .faq {
    padding: 72px 0;
  }
  .faq__title {
    font-size: 28px;
  }
  .faq__question {
    padding: 16px 16px;
  }
  .faq__answer {
    padding: 0 16px 16px;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 36px;
  background: radial-gradient(900px 520px at 18% 0%, rgba(89, 178, 255, 0.1), transparent 60%), radial-gradient(860px 520px at 85% 10%, rgba(167, 139, 250, 0.09), transparent 62%), rgba(7, 10, 18, 0.98);
  border-top: 1px solid var(--stroke);
}
.site-footer::before, .site-footer::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.site-footer::before {
  top: -260px;
  left: -240px;
  background: radial-gradient(circle, rgba(89, 178, 255, 0.85), rgba(89, 178, 255, 0.32), transparent 70%);
}
.site-footer::after {
  bottom: -300px;
  right: -260px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.85), rgba(167, 139, 250, 0.3), transparent 70%);
}
.site-footer__container {
  position: relative;
  z-index: 2;
  width: min(var(--container-width), 100% - 40px);
  margin: 0 auto;
}
.site-footer__top {
  display: grid;
  gap: 26px;
  margin-bottom: 28px;
}
.site-footer__brand {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}
.site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 14px;
  transition: transform 160ms ease, background 160ms ease;
}
.site-footer__brand-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.04);
}
.site-footer__brand-link:active {
  transform: translateY(0);
}
.site-footer__brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 36px rgba(89, 178, 255, 0.12), 0 18px 36px rgba(167, 139, 250, 0.1);
}
.site-footer__brand-name {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.2px;
  color: var(--text-main);
  white-space: nowrap;
}
.site-footer__legal-lines {
  display: grid;
  gap: 10px;
}
.site-footer__legal-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}
.site-footer__title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.15px;
  color: var(--text-main);
}
.site-footer__title--center {
  text-align: center;
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.site-footer__link-item {
  margin: 0;
  padding: 0;
}
.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
  transition: color 160ms ease, transform 160ms ease;
}
.site-footer__link:hover {
  color: var(--text-main);
  transform: translateY(-1px);
}
.site-footer__link:active {
  transform: translateY(0);
}
.site-footer__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: auto;
  margin-bottom: auto;
  padding: 6px 0;
}
.site-footer__badge {
  width: 102px;
  height: 102px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.site-footer__badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}
.site-footer__badge:active {
  transform: translateY(0);
}
.site-footer__badge--static {
  pointer-events: none;
  cursor: default;
  opacity: 0.92;
}
.site-footer__badge-image {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
}
.site-footer__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}
.site-footer__note + .site-footer__note {
  margin-top: 12px;
}
.site-footer__bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 14px;
}
.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.site-footer__bottom-link {
  font-size: 13.5px;
  font-weight: 900;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.site-footer__bottom-link:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
.site-footer__bottom-link:active {
  transform: translateY(0);
}
.site-footer__copyright {
  margin: 0;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
@media (max-width: 980px) {
  .site-footer {
    padding: 62px 0 30px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .site-footer__title--center {
    text-align: left;
  }
  .site-footer__badges {
    justify-content: flex-start;
    margin-top: 6px;
    margin-bottom: 0;
  }
}
@media (max-width: 560px) {
  .site-footer {
    padding: 54px 0 26px;
  }
  .site-footer__brand, .site-footer__col {
    padding: 18px;
    border-radius: 20px;
  }
  .site-footer__brand-name {
    font-size: 15px;
  }
  .site-footer__legal-text {
    font-size: 13px;
  }
  .site-footer__bottom-links {
    justify-content: flex-start;
  }
}

.legal-page {
  background: rgba(7, 10, 18, 0.96);
}
.legal-page__container {
  width: min(var(--container-width), 100% - 40px);
  margin: 0 auto;
}
.legal-page__hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(900px 520px at 18% 10%, rgba(89, 178, 255, 0.16), transparent 62%), radial-gradient(860px 520px at 85% 20%, rgba(167, 139, 250, 0.12), transparent 66%), rgba(7, 10, 18, 0.92);
}
.legal-page__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25px;
}
.legal-page__title {
  margin: 14px 0 10px;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.4px;
  color: var(--text-main);
}
.legal-page__lead {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}
.legal-page__meta {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}
.legal-page__meta-item {
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.legal-page__meta-label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.2px;
  margin-bottom: 4px;
}
.legal-page__meta-value {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: var(--text-main);
  word-break: break-word;
}
.legal-page__meta-link {
  color: var(--text-main);
}
.legal-page__meta-link:hover {
  color: rgba(255, 255, 255, 0.96);
}
.legal-page__content {
  padding: 44px 0 84px;
}
.legal-page__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}
.legal-page__sidebar {
  position: sticky;
  top: 92px;
}
.legal-page__toc {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}
.legal-page__toc-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 950;
  color: var(--text-main);
  letter-spacing: 0.15px;
}
.legal-page__toc-nav {
  display: grid;
  gap: 8px;
}
.legal-page__toc-link {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.legal-page__toc-link:hover {
  transform: translateY(-1px);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.legal-page__toc-link:active {
  transform: translateY(0);
}
.legal-page__body {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}
.legal-page__section {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-page__section:first-child {
  padding-top: 0;
}
.legal-page__section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.legal-page__section-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.1px;
  color: var(--text-main);
}
.legal-page__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
}
.legal-page__text + .legal-page__text {
  margin-top: 12px;
}
.legal-page__card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-page__card-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 950;
  color: var(--text-main);
}
.legal-page__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.legal-page__list-item {
  position: relative;
  padding-left: 16px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}
.legal-page__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.legal-page__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 3px;
}
.legal-page__link:hover {
  text-decoration-color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 980px) {
  .legal-page__title {
    font-size: 34px;
  }
  .legal-page__layout {
    grid-template-columns: 1fr;
  }
  .legal-page__sidebar {
    position: static;
    top: auto;
  }
  .legal-page__meta {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .legal-page__hero {
    padding: 60px 0 34px;
  }
  .legal-page__title {
    font-size: 28px;
  }
  .legal-page__body {
    padding: 18px;
    border-radius: 20px;
  }
}

.auth-page__section {
  width: 100%;
  padding: 72px 0;
}
.auth-page__container {
  width: min(420px, 100% - 40px);
  margin: 0 auto;
}
.auth-page__card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}
.auth-page__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.3px;
  color: var(--text-main);
}
.auth-page__subtitle {
  margin: 0 0 24px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.auth-page__form {
  display: grid;
  gap: 18px;
}
.auth-page__field {
  display: grid;
  gap: 6px;
}
.auth-page__label {
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.75);
}
.auth-page__input {
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-main);
  font-size: 14px;
  transition: border-color 160ms ease, background 160ms ease;
}
.auth-page__input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(167, 139, 250, 0.6);
}
.auth-page__submit {
  margin-top: 6px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 0;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.2px;
  color: #070A12;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.auth-page__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(89, 178, 255, 0.22), 0 14px 32px rgba(167, 139, 250, 0.18);
}
.auth-page__submit:active {
  transform: translateY(0);
}
.auth-page__footer {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 13.5px;
}
.auth-page__footer-text {
  color: var(--text-muted);
}
.auth-page__footer-link {
  font-weight: 900;
  color: var(--text-main);
}
.auth-page__footer-link:hover {
  text-decoration: underline;
}
@media (max-width: 560px) {
  .auth-page__card {
    padding: 22px;
    border-radius: 20px;
  }
  .auth-page__title {
    font-size: 24px;
  }
}

.auth-redirect {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(6px);
}
.auth-redirect__box {
  padding: 28px 32px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  text-align: center;
  max-width: 360px;
}
.auth-redirect__spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--accent);
  animation: auth-spin 1s linear infinite;
}
.auth-redirect__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

@keyframes auth-spin {
  to {
    transform: rotate(360deg);
  }
}
.auth-redirect {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 180ms ease;
}
.auth-redirect.is-open {
  display: flex;
  opacity: 1;
}
.auth-redirect__box {
  padding: 28px 32px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  text-align: center;
  max-width: 360px;
}
.auth-redirect__spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--accent);
  animation: auth-spin 1s linear infinite;
}
.auth-redirect__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

@keyframes auth-spin {
  to {
    transform: rotate(360deg);
  }
}
.register-page {
  min-height: calc(100vh - var(--header-height, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(900px 520px at 18% 10%, rgba(89, 178, 255, 0.16), transparent 62%), radial-gradient(860px 520px at 85% 20%, rgba(167, 139, 250, 0.14), transparent 66%), rgba(7, 10, 18, 0.96);
}
.register-page__section {
  width: 100%;
  padding: 72px 0;
}
.register-page__container {
  width: min(460px, 100% - 40px);
  margin: 0 auto;
}
.register-page__card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}
.register-page__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.3px;
  color: var(--text-main);
}
.register-page__subtitle {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.register-page__form {
  display: grid;
  gap: 16px;
}
.register-page__field {
  display: grid;
  gap: 6px;
}
.register-page__label {
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.75);
}
.register-page__input {
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-main);
  font-size: 14px;
  transition: border-color 160ms ease, background 160ms ease;
}
.register-page__input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(89, 178, 255, 0.55);
}
.register-page__submit {
  margin-top: 6px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 0;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.2px;
  color: #070A12;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.register-page__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(89, 178, 255, 0.22), 0 14px 32px rgba(167, 139, 250, 0.18);
}
.register-page__submit:active {
  transform: translateY(0);
}
.register-page__footer {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 13.5px;
}
.register-page__footer-text {
  color: var(--text-muted);
}
.register-page__footer-link {
  font-weight: 900;
  color: var(--text-main);
}
.register-page__footer-link:hover {
  text-decoration: underline;
}
@media (max-width: 560px) {
  .register-page__card {
    padding: 22px;
    border-radius: 20px;
  }
  .register-page__title {
    font-size: 24px;
  }
}

.register-redirect {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}
.register-redirect.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.register-redirect__box {
  padding: 28px 32px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  text-align: center;
  max-width: 360px;
}
.register-redirect__spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--accent);
  animation: register-spin 1s linear infinite;
}
.register-redirect__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

@keyframes register-spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=main.css.map */
