/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

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

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

/* =========================
       FONTS
    ========================= */

@font-face {
  font-family: 'Roboto';
  src: url('/fontsQSDFGj/outfit-variablefontQSDFGj.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('/fontsQSDFGj/roboto-variablefontQSDFGj.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.body {
  background: #211260;
}

.headerQSDFGj {
  background: #211260;
  position: relative;
  z-index: 20;
}

.headerQSDFGj__inner {
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.headerQSDFGj__logo {
  justify-self: center;
}

.headerQSDFGj__logo img {
  height: 38px;
}

.headerQSDFGj__menu {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.headerQSDFGj__menu a {
  color: #fff;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
}

.headerQSDFGj__actions {
  display: flex;
  justify-self: end;
  align-items: center;
}

.headerQSDFGj__reg {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 20px 0 0 20px;
  border-right: 1px solid #000;
  background: #483989;
}

.headerQSDFGj__reg a {
  margin: 0;
  color: #fff;
  font-family: Outfit;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}

.headerQSDFGj__reg p {
  margin: 0;
  color: #fff;
  font-family: Outfit;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}

.headerQSDFGj__dot {
  width: 13px;
  height: 13px;
  border-radius: 6.5px;
  background: #ef0;
  box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.15),
    0 0 8px rgba(255, 255, 255, 0.1);
}

.headerQSDFGj__login {
  padding: 10px 18px;
  border-radius: 0 20px 20px 0;
  background: #483989;
  border: none;
  color: #fff;
  font-family: Outfit;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.headerQSDFGj__burger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  justify-self: end;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  z-index: 10;
}

.headerQSDFGj__burger span {
  width: 36px;
  height: 3.667px;
  background: #e39543;
  border-radius: 2px;
}

.headerQSDFGj__mobile {
  position: fixed;
  inset: 0;
  background: #211260;
  transform: translateX(100%);
  transition: 0.3s ease;
  padding: 120px 32px;
}

.headerQSDFGj__mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.headerQSDFGj__mobile li {
  margin-bottom: 28px;
}

.headerQSDFGj__mobile a {
  color: #fff;
  font-family: Outfit;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
}

.headerQSDFGj.is-open .headerQSDFGj__mobile {
  transform: translateX(0);
}

@media (max-width: 992px) {
  .headerQSDFGj__nav,
  .headerQSDFGj__actions {
    display: none;
  }

  .headerQSDFGj__burger {
    display: flex;
  }

  .headerQSDFGj__inner {
    grid-template-columns: auto 1fr auto;
  }

  .headerQSDFGj__logo {
    justify-self: start;
  }
}

/* ===== BURGER → CLOSE (X) ===== */

.headerQSDFGj.is-open .headerQSDFGj__burger span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.headerQSDFGj.is-open .headerQSDFGj__burger span:nth-child(2) {
  opacity: 0;
}

.headerQSDFGj.is-open .headerQSDFGj__burger span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.headerQSDFGj__burger span {
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.heroQSDFGj {
  background: #211260;
  padding: 50px 0;
  overflow: hidden;
}

.heroQSDFGj__viewport {
  position: relative;
  height: 320px;
}

.heroQSDFGj__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 980px;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s;
}

.heroQSDFGj__slide img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.heroQSDFGj__slide.is-active {
  opacity: 1;
  z-index: 3;
  transform: translate(-50%, -50%) scale(1);
}

.heroQSDFGj__slide.is-next {
  opacity: 0.6;
  z-index: 2;
  transform: translate(-41%, -50%) scale(0.9);
}

.heroQSDFGj__slide.is-prev {
  opacity: 0.6;
  z-index: 1;
  transform: translate(-60%, -50%) scale(0.9);
}

.heroQSDFGj__arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e39543;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 10;
}

.heroQSDFGj__prev {
  left: 0;
}
.heroQSDFGj__next {
  right: 0;
}

.heroQSDFGj__arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.heroQSDFGj__prev::before {
  transform: rotate(-135deg);
}
.heroQSDFGj__next::before {
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .heroQSDFGj {
    padding: 0px;
  }
  .heroQSDFGj__viewport {
    height: 200px;
  }

  .heroQSDFGj__arrow {
    width: 24px;
    height: 24px;
  }

  .heroQSDFGj__arrow::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

.gamesQSDFGj {
  background: #211260;
  padding: 48px 0 64px;
}

.bg-frame {
  background-color: #453888;
}

.gamesQSDFGj__title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 32px;
  color: #fff;
  font-family: Outfit;
  font-size: 32px;
  font-weight: 400;
  line-height: 52px;
  text-transform: uppercase;
  justify-content: center;
}

.gamesQSDFGj__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f3ff00;
}

.gamesQSDFGj__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gamesQSDFGj__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gamesQSDFGj__img {
  width: 230.398px;
  height: 113.273px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 0 51px 0 rgba(247, 44, 255, 0.4);
}

.gamesQSDFGj__badges {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  max-width: 100%;
}

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

.gamesQSDFGj__badge {
  padding: 5px 10px;
  border-radius: 6px;
  background: #2a1b6d;
  color: #fff;
  font-family: Outfit;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  white-space: nowrap;
}

.gamesQSDFGj__badge--count {
  background: #f72cff;
}

@media (max-width: 1273px) {
  .gamesQSDFGj__grid {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
}

@media (max-width: 768px) {
  .gamesQSDFGj__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gamesQSDFGj__title {
    font-size: 24px;
    line-height: 36px;
  }
}

.footerQSDFGj {
  background: #15144a;
  padding: 56px 0 40px;
}

.footerQSDFGj__top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 40px;
}

.footerQSDFGj__title {
  color: #ef0;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footerQSDFGj__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerQSDFGj__list li {
  margin-bottom: 10px;
}

.footerQSDFGj__list a {
  color: #fff;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.25px;
  text-decoration: none;
}

.footerQSDFGj__list a:hover {
  text-decoration: underline;
}

.footerQSDFGj__text {
  color: #bbb;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  margin-bottom: 10px;
}

.footerQSDFGj__col--wide {
  max-width: 520px;
}

.footerQSDFGj__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.footerQSDFGj__legal {
  color: #bbb;
  font-family: Roboto;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  margin-bottom: 24px;
}

.footerQSDFGj__build {
  text-align: center;
  color: #bbb;
  font-family: Outfit;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .footerQSDFGj__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.registerQSDFGj {
  background: #24145e;
  padding: 80px 0;
  color: #fff;
}

.registerQSDFGj__wrap {
  max-width: 980px;
}

.registerQSDFGj__title {
  text-align: center;
  font-family: Outfit;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.registerQSDFGj__subtitle {
  text-align: center;
  font-family: Outfit;
  font-size: 14px;
  margin-bottom: 40px;
}

.registerQSDFGj__form input,
.registerQSDFGj__form select {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #000;
  font-family: Roboto;
  font-size: 14px;
}

.registerQSDFGj__form input::placeholder {
  color: #000;
  opacity: 0.6;
}

.registerQSDFGj__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.registerQSDFGj__phone {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.registerQSDFGj__check,
.registerQSDFGj__channels label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: Roboto;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  margin-bottom: 14px;
}

.registerQSDFGj__check a {
  font-family: Roboto;
  color: #fff;
}

.registerQSDFGj__check input,
.registerQSDFGj__channels input {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 4px;
  position: relative;
}

.registerQSDFGj__check input:checked,
.registerQSDFGj__channels input:checked {
  background: #ef0;
  border-color: #ef0;
}

.registerQSDFGj__check input:checked::after,
.registerQSDFGj__channels input:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #24145e;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.registerQSDFGj__channels {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
}

.registerQSDFGj__hint {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #bbb;
}

.registerQSDFGj__hint-x {
  color: #ef0;
  margin-right: 6px;
}

.registerQSDFGj__legal {
  font-size: 12px;
  color: #bbb;
  line-height: 18px;
  margin: 20px 0 28px;
}

.registerQSDFGj__btn {
  width: 100%;
  height: 56px;
  border-radius: 28px;
  background: #e69b45;
  color: #fff;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.registerQSDFGj__message {
  display: none;
  text-align: center;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  color: #ef0;
  font-family: Roboto;
  font-size: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.registerQSDFGj__message.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.registerQSDFGj__message {
  display: none;
}

.registerQSDFGj__message.is-visible {
  display: block;
}

@media (max-width: 768px) {
  .registerQSDFGj__grid {
    grid-template-columns: 1fr;
  }
}
.faqQSDFGj {
  padding: 80px 16px;
  background: #211260;
}

.faqQSDFGj__pageTitle {
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.faqQSDFGj__box {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 22px;
  background: #1e105f;
  box-shadow: 1px 0 43.4px 0 #8060c3;
}

.faqQSDFGj__item {
  border-radius: 25px;
  background: #453888;
  overflow: hidden;
  margin-bottom: 16px;
  transition: box-shadow 0.3s ease;
}

.faqQSDFGj__item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.faqQSDFGj__header {
  width: 100%;
  border: none;
  background: #453888;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 25px;
}

.faqQSDFGj__item.is-open .faqQSDFGj__header {
  border-radius: 25px 25px 0 0;
}

.faqQSDFGj__header span {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
  text-transform: uppercase;
}

.faqQSDFGj__icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #ff0;
  border-bottom: 2px solid #ff0;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faqQSDFGj__item.is-open .faqQSDFGj__icon {
  transform: rotate(-135deg);
}

.faqQSDFGj__content {
  background: #453888;
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
}

.faqQSDFGj__item.is-open .faqQSDFGj__content {
  padding: 20px 28px 28px;
  max-height: 1000px;
  opacity: 1;
}

.faqQSDFGj__content p {
  color: #ededed;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .faqQSDFGj__header span {
    font-size: 18px;
    line-height: 24px;
  }
}

.faqQSDFGj__pageTitle {
  color: #fff;
  font-family: Outfit;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.faqQSDFGj__header span {
  color: #fff;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px; /* 129.167% */
  text-transform: uppercase;
  margin: 0;
}

.faqQSDFGj__content p {
  color: var(--text_gray, #ededed);
  font-family: Outfit;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 128.571% */
  text-transform: uppercase;
}

.faqQSDFGj__content ul {
  padding-left: 18px;
  list-style: disc;
}

.faqQSDFGj__content li {
  color: var(--text_gray, #ededed);
  font-family: Outfit;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
  list-style-type: disc;
}
