@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter-VariableFont_opsz\,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter-Italic-VariableFont_opsz\,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-h1-mobile: 24px;
  --fs-h2-mobile: 20px;
  --fs-h3-mobile: 17px;
  --fs-body-mobile: 15px;
  --fs-menu-mobile: 14px;
  --fs-btn-mobile: 15px;

  --lh-h1: 1.3;
  --lh-h2: 1.4;
  --lh-h3: 1.4;
  --lh-body: 1.6;
  --lh-menu: 1.5;
  --lh-btn: 1.4;

  --fs-h1-desktop: 34px;
  --fs-h2-desktop: 26px;
  --fs-h3-desktop: 20px;
  --fs-body-desktop: 16px;
  --fs-menu-desktop: 15px;
  --fs-btn-desktop: 16px;

  --radius-base: 8px;

  --header-count: "1";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  font-size: var(--fs-body-mobile);
  line-height: var(--lh-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-body);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  color: var(--color-text-heading);
}

h1 {
  font-size: var(--fs-h1-mobile);
  line-height: var(--lh-h1);
  font-weight: 700;
}

h2 {
  font-size: var(--fs-h2-mobile);
  line-height: var(--lh-h2);
  font-weight: 600;
}

h3 {
  font-size: var(--fs-h3-mobile);
  line-height: var(--lh-h3);
  font-weight: 500;
}

p {
  margin: 0 0 16px;
}

ul,
ol {
  margin: 20px 0;
  padding-left: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-base);
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: var(--fs-btn-mobile);
  line-height: var(--lh-btn);
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.15s ease;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 8px 16px var(--shadow-btn-primary);
  transform: translateY(-1px);
}

.btn--secondary {
  background-color: var(--color-secondary-btn);
  color: var(--color-secondary-text);
}

.btn--secondary:hover {
  background-color: var(--color-secondary-btn-hover);
}

.btn--slot {
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn--slot:hover {
  background-color: var(--color-primary-hover);
}

.header {
  background-color: var(--color-header-bg);
  padding: 10px 0 12px;
  width: 100%;
  height: 120px;
  position: fixed;
  z-index: 1;
}

.header__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header__bonus {
  position: relative;
  border: none;
  background: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header__bonus-img {
  display: block;
  width: 32px;
  height: 32px;
}

.header__bonus::after {
  content: var(--header-count);
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: red;
  width: 1rem;
  height: 1rem;
  text-align: center;
  border-radius: 50%;
  line-height: 1rem;
  font-weight: bolder;
  color: #fff;
  font-size: 0.8rem;
}

.header__logo {
  grid-column: 2;
  justify-self: center;
}

.header__logo-img {
  max-height: 40px;
}

.header__burger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  grid-column: 3;
  justify-self: end;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  border: none;
  background: none;
  padding: 0;
  position: relative;
}

.header__burger-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-bg-content);
  transition: 0.2s transform, 0.2s opacity, 0.2s top;
}

.header__burger--active .header__burger-line:nth-child(1) {
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
}

.header__burger--active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
}

.header__action {
  display: flex;
  gap: 8px;
  width: 100%;
}

.header__action .btn {
  flex: 1 1 50%;
}

.header__nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 165px;
  background-color: var(--color-header-bg);
  padding: 16px 20px 24px;
  display: none;
  overflow-y: auto;
  z-index: 900;
}

.header__nav--active {
  display: block;
}

.header__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.header__menu-item {
  width: 100%;
}

.header__menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 24px;
  background-color: var(--color-primary);
  color: var(--color-header-text);
  text-decoration: none;
  font-family: var(--font-heading);
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.header__menu-link:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.header__menu-icon {
  flex: 0 0 auto;
  font-size: 0.8em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header__menu-icon-img {
  width: 18px;
  height: 18px;
  display: block;
}

.header__menu-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__menu-label {
  font-size: var(--fs-menu-mobile);
  font-weight: 600;
}

.header__menu-subtitle {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
}

body.body--noscroll {
  overflow: hidden;
}

main {
  padding-top: 100px;
}

.hero {
  background-color: #151515;
  padding: 24px 0 40px;
  color: var(--color-text-inverse);
}

.hero__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
}

.hero__content {
  max-width: 727px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}

.hero__badge-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.hero__badge-text {
  font-size: 13px;
  color: var(--color-text-inverse);
}

.hero__title {
  font-size: var(--fs-h1-mobile);
  line-height: var(--lh-h1);
  font-weight: 700;
  color: var(--color-text-inverse);
  margin-bottom: 12px;
}

.hero__text {
  display: none;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 20px;
}

.hero__promo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-base);
  background: var(--gradient-promo);
}

.hero__promo-text p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 6px;
  text-align: center;
}

.hero__promo-text p:last-child {
  margin-bottom: 0;
}

.hero__promo-btn {
  align-self: center;
  width: 100%;
  max-width: 400px;
}

.hero__media {
  max-width: 420px;
}

.hero__image {
  border-radius: var(--radius-base);
}

.slots {
  background-color: var(--color-bg-content);
  padding: 40px 0;
}

.slots__header {
  text-align: left;
  margin-bottom: 24px;
}

.slots__title {
  margin-bottom: 8px;
}

.slots__subtitle {
  margin: 0;
  color: var(--color-text-subheading);
}

.slots__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.slot-card {
  background-color: #f9f8fc;
  border-radius: var(--radius-base);
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.slot-card__image {
  display: flex;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
}

.slot-card__image img {
  object-fit: contain;
  height: 213.14px;
}

.slot-card__title {
  font-size: 14px;
  line-height: 1.4;
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  margin: 4px 0 6px;
  text-align: center;
}

.content {
  background-color: var(--color-bg-content);
  padding: 40px 0;
}

.content__inner {
  padding-top: 0;
  padding-bottom: 0;
}

.content h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.content h3 {
  margin-top: 30px;
  margin-bottom: 16px;
  color: var(--color-text-heading);
}

.content p {
  color: var(--color-text-main);
  margin-bottom: 16px;
}

.content ul,
.content ol {
  margin: 20px 0;
  padding-left: 20px;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-table-border);
  font-size: 14px;
}

.content th,
.content td {
  min-width: 100px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-table-border);
}

.content th {
  background-color: var(--color-table-header-bg);
  text-align: left;
  color: var(--color-text-heading);
  font-weight: 600;
}

.content tr:last-child td {
  border-bottom: none;
}

.content img {
  margin: 24px 0;
  border-radius: var(--radius-base);
}

.faq {
  background-color: var(--color-bg-content);
  padding: 40px 0 48px;
}

.faq__inner {
  padding: 40px;
}

.faq__title {
  margin: 0 0 16px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.faq__item-open {
  background: var(--color-faq-bg-open);
}

.faq__question-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__question {
  margin: 0;
  color: var(--color-title);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}

.faq__question:hover {
  color: var(--color-faq-question-hover);
}

.faq__icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.faq__icon::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-faq-icon);
  border-bottom: 2px solid var(--color-faq-icon);
  transform: rotate(45deg);
}

.faq__item--open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  display: none;
  padding: 0 16px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  opacity: 0.9;
}

.faq__answer p {
  margin: 0;
}

.faq__item--open .faq__answer {
  display: block;
}

.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text-main);
  padding: 24px 0 20px;
  font-size: 13px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__top {
  display: flex;
  justify-content: center;
}

.footer__logo {
  display: inline-flex;
}

.footer__logo-img {
  max-width: 110px;
}

.footer__divider {
  border: none;
  border-top: 1px solid var(--color-footer-divider);
  margin: 14px 0;
}

.footer__middle {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__nav-groups {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.footer__nav-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-footer-text-secondary);
  margin-bottom: 8px;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.footer__nav-item:hover a {
  color: var(--color-footer-divider);
}

.footer__nav-link {
  color: var(--color-footer-text-main);
  text-decoration: none;
}

.footer__nav-link:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer__social-link {
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 8px;
  padding: 6px;
  color: var(--color-footer-text-main);
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.08);
}

.footer__social-link:hover {
  background-color: rgba(175, 31, 204, 0.25);
}

.footer__social-icon img {
  width: 32px;
  height: 32px;
}

.footer__payments-grid {
  display: flex;
  gap: 14px 12px;
  justify-content: center;
}

.footer__payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  padding: 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.04);
}

.footer__payment-icon {
  max-height: 22px;
  width: auto;
  filter: grayscale(1);
}

.footer__payment-icon {
  filter: brightness(0) invert(1);
}

.footer__payment:nth-last-child(1) {
  width: 30px;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.footer__text,
.footer__rights {
  margin: 0;
  color: var(--color-footer-text-main);
}

.footer--stuck {
  margin-top: auto !important;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-scrolltop-bg);
  color: var(--color-scrolltop-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.15s ease,
    box-shadow 0.2s ease;
  z-index: 50;
}

.scroll-top__icon {
  font-size: 20px;
}

.scroll-top--visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background-color: var(--color-scrolltop-bg-hover);
  box-shadow: 0 8px 16px var(--shadow-btn-primary);
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .header__inner {
    position: relative;
  }

  .header__top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .header__logo {
    grid-column: 2;
    justify-self: center;
  }

  .header__burger {
    grid-column: 3;
    justify-self: end;
  }

  .header__bonus {
    position: absolute;
    display: inline-flex;
    width: auto;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
}

@media (min-width: 768px) {
  body {
    font-size: var(--fs-body-desktop);
  }

  h1 {
    font-size: var(--fs-h1-desktop);
  }

  h2 {
    font-size: var(--fs-h2-desktop);
  }

  h3 {
    font-size: var(--fs-h3-desktop);
  }

  .btn {
    font-size: var(--fs-btn-desktop);
  }

  .header {
    height: 86px;
  }

  .header__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
    width: auto;
  }

  .header__top {
    margin-right: auto;
  }

  .header__bonus {
    order: 3;
    display: inline-flex;
  }

  .header__bonus-img {
    width: 36px;
    height: 36px;
  }

  .header__logo {
    justify-self: flex-start;
    order: 1;
  }

  .header__burger {
    display: none;
  }

  .header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .header__action {
    order: 2;
    display: flex;
    width: auto;
    gap: 12px;
  }

  .header__action .btn {
    flex: 0 0 auto;
    width: auto;
  }

  .header__nav {
    display: none !important;
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 0;
    overflow: visible;
  }

  .header__menu {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0;
  }

  .header__menu-link {
    background: none;
    border-radius: 0;
    padding: 0;
    width: auto;
    box-shadow: none;
    transform: none;
    text-align: left;
    font-size: var(--fs-menu-desktop);
  }

  .header__menu-link:hover {
    background: none;
    color: var(--color-link-hover);
    box-shadow: none;
  }

  .header__menu-icon {
    display: none;
  }

  .header__menu-subtitle {
    display: none;
  }

  .header__menu-label {
    font-size: var(--fs-menu-desktop);
  }

  .header__burger {
    display: none;
  }

  .header__action {
    display: flex;
    width: auto;
    gap: 12px;
  }

  .header__action .btn {
    width: auto;
  }

  main {
    padding-top: 85px;
  }

  .hero {
    padding: 40px 0 56px;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
  }

  .hero__promo {
    flex: 0 0 320px;
    max-width: 360px;
    padding: 28px 24px;
    border-radius: 16px;
  }

  .hero__promo-text p {
    text-align: center;
  }

  .hero__content {
    flex: 1 1 auto;
    max-width: 720px;
  }

  .hero__text {
    display: block;
  }

  .slots {
    padding: 60px 0;
  }

  .slots__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .content {
    padding: 60px 0;
  }

  .content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .content p {
    margin-bottom: 20px;
  }

  .faq__item {
    padding: 24px;
  }

  .faq__question-row {
    padding: 24px;
  }

  .faq__question {
    font-size: 18px;
  }

  .faq__answer {
    padding: 0 24px 24px;
    font-size: 15px;
  }

  .footer {
    padding: 40px 0 30px;
  }

  .footer__inner-top {
    display: flex;
    justify-content: space-between;
  }

  .footer__top {
    grid-column: 1;
    justify-content: flex-start;
  }

  .footer__logo-img {
    max-width: 140px;
    height: 70px;
  }

  .footer__middle {
    grid-column: 2;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }

  .footer__nav {
    flex: 1 1 auto;
  }

  .footer__nav-groups {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer__nav-list {
    align-items: flex-start;
  }

  .footer__socials {
    flex: 0 0 auto;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 4px;
  }

  .footer__divider:first-of-type {
    grid-column: 1 / -1;
    margin: 10px 0 8px;
  }

  .footer__payments {
    grid-column: 1 / -1;
  }

  .footer__payments-icon {
    justify-content: center;
    gap: 18px 28px;
  }

  .footer__payment-icon {
    max-height: 26px;
  }

  .footer__divider:nth-of-type(2) {
    grid-column: 1 / -1;
    margin: 12px 0 10px;
  }

  .footer__bottom {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer__text {
    max-width: 860px;
  }

  .scroll-top {
    width: 56px;
    height: 56px;
    right: 24px;
    bottom: 24px;
  }
}
.content__inner > div {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}
