/* 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%;
}

.container {
  max-width: 1240px;
  margin: 0 auto;

  width: 100%;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 16px;
  }
}

/* FONT — Istok Web */
@font-face {
  font-family: 'Istok Web';
  src: url('/fontsastn/istokweb-regularastn-v1.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Istok Web';
  src: url('/fontsASTN/istokweb-boldastn.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* header */
.siteHeaderASTN {
  font-family: 'Istok Web', sans-serif;
}

/* top strip */
.topbarASTN {
  background: #403f45;
  color: #fff;
}
.topbar-innerASTN {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 15px;
  text-align: center;
}

.topbar-textASTN {
  font-size: 12px;
  font-weight: 400;
}
.topbar-phoneASTN {
  font-weight: 700;
}
.topbar-linkASTN {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration-line: underline;
}

/* main header */
.header-mainASTN {
  background: #ffffff;
  position: relative;
}

.header-mainInnerASTN {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
}

/* logo */
.logoBlockASTN {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-iconASTN {
  width: 73px;
  height: 78px;
}
.logo-textASTN {
  width: 195px;
  height: 76px;
}

/* nav */
.mainNavASTN {
  flex: 1;
}
.mainNavASTN-rightASTN {
  text-align: right;
}

.nav-listASTN {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-linkASTN {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  border-radius: 100px;
  background: transparent;
  color: #403f45;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-linkASTN:hover {
  background: rgba(43, 126, 254, 0.08);
}
.nav-link-activeASTN {
  background: #2b7efe;
  color: #fff;
}

/* burger */
.burgerASTN {
  display: none;
  width: 40px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
}

.burgerASTN span {
  display: block;
  width: 26px;
  height: 2px;
  background: #403f45;
  border-radius: 99px;
  margin: 5px auto;
  transition: 0.25s ease;
}

/* burger animation */
.burgerASTN.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burgerASTN.open span:nth-child(2) {
  opacity: 0;
}
.burgerASTN.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE DROPDOWN */
.mobileMenuASTN {
  display: none;
  background: #fff;
  border-top: 1px solid #e3e3e3;
  padding: 20px 16px 24px;
}

.mobileMenuASTN ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobileMenuASTN a {
  padding: 10px 24px;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .mainNavASTN {
    display: none;
  }
  .burgerASTN {
    display: block;
  }

  .logo-iconASTN {
    width: 45px;
    height: 48px;
  }
  .logo-textASTN {
    width: 120px;
    height: 47px;
  }
}

/* MOBILE MENU OPEN */
.mobileMenuASTN.open {
  display: block;
}

/* hero */

/* HERO SECTION */
.heroASTN {
  width: 100%;
  min-height: 600px;
  padding: 160px 15px 120px;

  background-image: url('/imagesASTN/hero-cold-bg-deskASTN.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-innerASTN {
  max-width: 900px;
  margin: 0 auto;
}

/* H1 */
.hero-titleASTN {
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 32px;
}

/* TEXT */
.hero-subASTN {
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 48px;
}

.hero-btnASTN {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  padding: 18px 40px;
  border-radius: 100px;

  border: 5px solid #d6d2eb;
  background: linear-gradient(91deg, #7161de 0.86%, #bc8aeb 86.71%);

  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;

  position: relative;
  transition: 0.25s ease;
}

.hero-btnASTN:hover {
  border-radius: 100px;
  border: 5px solid #5d149d;
  box-shadow: 0 0 27.2px 0 #9173e3;
}

.hero-btnIconASTN {
  width: 42px;
  height: 42px;

  position: absolute;
  right: -22px;
  bottom: -12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .heroASTN {
    padding: 50px 0;
    background-image: url('/imagesASTN/hero-cold-bg-mbASTN.webp');
  }

  .hero-titleASTN {
    font-size: 32px;
  }

  .hero-subASTN {
    font-size: 18px;
  }

  .hero-btnASTN {
    font-size: 18px;
    padding: 16px 32px;
  }

  .hero-btnIconASTN {
    width: 38px;
    height: 38px;
    right: -18px;
    bottom: -10px;
  }
}

/* stats */
.statsASTN {
  padding: 60px 0;
  font-family: 'Istok Web', sans-serif;
}

.stats-titleASTN {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #403f45;
  margin-bottom: 50px;
}

.stats-listASTN {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

/* CARD */
.stats-cardASTN {
  min-height: 180px;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #44a8fb;
  background: #edf2f8;

  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-cardASTN:nth-child(-n + 3) {
}

/* TEXT — numbers */
.stats-cardASTN h3 {
  font-size: 48px;
  font-weight: 700;
  color: #403f45;
  margin-bottom: 14px;
  line-height: 1.1;
}

.stats-cardASTN h3 .local {
  font-size: 20px;
  font-weight: 700;
}

/* TEXT — description */
.stats-cardASTN p {
  font-size: 16px;
  font-weight: 400;
  color: #403f45;
  line-height: 1.3;
}

/* ========= MOBILE ========= */
@media (max-width: 768px) {
  .stats-listASTN {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .stats-cardASTN {
    width: 100%;
    min-height: auto;
    padding: 30px 20px;
  }

  .stats-cardASTN h3 {
    font-size: 24px;
  }

  .stats-cardASTN h3 .local {
    font-size: 16px;
  }
}

.news-dateASTN {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #44a8fb;
  text-align: center;
}

.news-titleASTN {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #403f45;
  text-align: center;
}

.news-textASTN {
  font-size: 15px;
  line-height: 1.5;
  color: #403f45;
  text-align: center;
}

#news_list {
  flex-direction: column;
}

/* about-block */

.aboutBlockASTN {
  padding: 80px 0 60px;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
}

.about-titleASTN {
  color: #403f45;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-textASTN {
  margin: 0 auto 40px;
  color: #403f45;
  font-size: 15px;
  line-height: 1.5;
}

.benefits-titleASTN {
  color: #403f45;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.benefits-listASTN {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  list-style: none;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.benefit-itemASTN {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 24px;
  border-radius: 100px;
  border: 5px solid #d6d2eb;
  background: linear-gradient(91deg, #4c74f3 0.86%, #44a8fb 86.71%);

  color: #fff;
  font-size: 15px;
  font-weight: 700;

  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* иконка */
.benefit-itemASTN img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* -------- MOBILE -------- */
@media (max-width: 768px) {
  .benefits-listASTN {
    flex-direction: column;
    align-items: center;
  }

  .benefit-itemASTN {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* about card */

.aboutSectionASTN {
  padding: 60px 0;
  font-family: 'Istok Web', sans-serif;
}

.about-titleASTN {
  color: #403f45;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-subtitleASTN {
  margin: 0 auto 40px;
  color: #403f45;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.about-listASTN {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

/* FIRST CARD */
.about-cardASTN {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #44a8fb;
  background: #edf2f8;
}

.about-cardASTN p {
  color: #403f45;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

/* SECOND CARD */
.about-cardSecondASTN {
  background: transparent;
  border: 1px solid #44a8fb;
}

/* IMAGE BLOCK */
.about-imageASTN {
  width: 100%;
  height: 356px;
  border-radius: 20px;
  background-image: url('/imagesASTN/snowy-mountains-deskASTN.webp');
  background-size: cover;
  background-position: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-titleASTN {
    padding: 0 15px;
  }

  .about-subtitleASTN {
    padding: 0 20px;
    font-size: 15px;
  }

  .about-listASTN {
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 15px;
  }

  .about-cardASTN,
  .about-cardSecondASTN {
    width: 100%;
    padding: 20px;
  }

  .about-imageASTN {
    width: 100%;
    height: 260px;
    background-image: url('/imagesASTN/snowy-mountains-mbASTN.webp');
  }
}
.whyChooseASTN {
  padding: 60px 0;
  font-family: 'Istok Web', sans-serif;
}

.why-titleASTN {
  color: #403f45;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.why-tableASTN {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  table-layout: fixed;
  border-radius: 12px;
  overflow: hidden;
}

.why-tableASTN th,
.why-tableASTN td {
  padding: 16px 12px;
  text-align: center;
  word-break: break-word;
  hyphens: auto;
}

.why-tableASTN thead th {
  background: #7563df;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.why-tableASTN tbody td {
  background: #edf2f8;
  border-bottom: 1px solid #d5d5d5;
  color: #403f45;
  font-size: 16px;
}

.why-tableASTN tbody tr:last-child td {
  border-bottom: none;
}

.why-tableASTN td.accent {
  color: #7563df;
  font-weight: 700;
}

@media (max-width: 768px) {
  .why-tableASTN {
    width: 100%;
    table-layout: fixed;
  }

  .why-tableASTN th,
  .why-tableASTN td {
    padding: 14px 8px;
    font-size: 15px;
  }
}

/* game section */
.gameSectionASTN {
  padding: 60px 0;
  font-family: 'Istok Web', sans-serif;
}

.game-titleASTN {
  color: #403f45;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.game-subtitleASTN {
  color: #403f45;
  font-size: 16px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.game-topASTN {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.game-leftASTN {
  flex: 1;
}

.game-rightASTN {
  flex-shrink: 0;
}

.octopus-imgASTN {
  width: 610px;
  height: auto;
  border-radius: 20px;
}

.game-nameASTN {
  color: #403f45;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.game-descASTN {
  color: #403f45;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.game-featuresASTN {
  border-radius: 20px;
  background: linear-gradient(91deg, #7161de 0.86%, #bc8aeb 86.71%);
  padding: 30px;
}

.features-titleASTN {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.features-listASTN li {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.features-listASTN li span {
  font-weight: 700;
}

.game-demoWrapASTN {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.demo-imgASTN {
  width: 100%;
  border-radius: 20px;
}

.demo-btnASTN {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
}

/* ===========================
      TABLET (max-width: 1024px)
=========================== */
@media (max-width: 1024px) {
  .game-topASTN {
    gap: 30px;
  }

  .octopus-imgASTN {
    width: 350px;
  }

  .game-nameASTN {
    font-size: 22px;
  }

  .game-descASTN {
    font-size: 15px;
  }

  .game-featuresASTN {
    padding: 24px;
  }
}

/* ===========================
      MOBILE (max-width: 768px)
=========================== */
@media (max-width: 768px) {
  .game-topASTN {
    flex-direction: column;
    gap: 20px;
  }

  .octopus-imgASTN {
    width: 100%;
  }

  .game-descASTN {
    text-align: left;
  }

  .game-nameASTN {
    text-align: left;
  }

  .demo-imgASTN {
    content: url('/imagesASTN/demo-image-game-mbASTN.webp');
  }

  .demo-btnASTN {
    font-size: 28px;
  }
}

/* MODAL */
.gameModalASTN {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gameModalASTN.active {
  display: flex;
}

.gameModal-contentASTN {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 80vh;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}

.gameModal-iframeASTN {
  width: 100%;
  height: 100%;
  border: none;
}

.gameModal-closeASTN {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 34px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
}

.demo-iframeASTN {
  display: none;
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 20px;
  margin-top: 20px;
}

@media (max-width: 740px) {
  .demo-iframeASTN {
    height: 238px;
  }
}

/* faq */
.faq-btnASTN {
  color: #fff;
  text-align: center;
  font-family: 'Istok Web';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 100px;
  border: 5px solid #d6d2eb;
  background: linear-gradient(91deg, #7161de 0.86%, #bc8aeb 86.71%);
  padding: 10px 30px;

  width: max-content;
  margin: auto;
  margin-top: 50px;
}

.faq-btnASTN a {
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.faq-btnASTN:hover {
  border-radius: 100px;
  border: 5px solid #5d149d;
  box-shadow: 0 0 27.2px 0 #9173e3;
}
@media (max-width: 740px) {
  .faq-btnASTN {
    width: 100%;
  }
}

.contactSectionASTN {
  padding: 60px 0;
  font-family: 'Istok Web', sans-serif;
}

.contact-titleASTN {
  color: #403f45;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-subtitleASTN {
  color: #403f45;
  text-align: center;
  font-size: 16px;
  margin: 0 auto 40px;
}

.contact-wrapperASTN {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.contact-imageBoxASTN {
  flex: 1;
}

.contact-imageASTN {
  width: 100%;
  border-radius: 20px;
}

/* FORM */
.contact-formASTN {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-labelASTN {
  color: #3a3a3f;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contact-inputASTN,
.contact-textareaASTN {
  width: 100%;
  background: #f2f6fc;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  color: #403f45;
  font-family: 'Istok Web', sans-serif;
}

.contact-textareaASTN {
  height: 120px;
  resize: none;
}

.contact-btnASTN {
  width: 100%;
  padding: 12px 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  background: linear-gradient(91deg, #7161de 0.86%, #bc8aeb 86.71%);
  border: 5px solid #d6d2eb;
  transition: 0.25s ease;
}

.contact-btnASTN:hover {
  border: 1px solid #cd78ef;
  box-shadow: 0 0 27px #9173e3;
}

/* SUCCESS MESSAGE */
.contact-successASTN {
  margin-top: 10px;
  text-align: center;
  color: #403f45;
  font-size: 16px;
  font-weight: 700;
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-formASTN {
    width: 100%;
  }
  .contact-wrapperASTN {
    flex-direction: column;
  }

  .contact-imageASTN {
    width: 100%;
  }

  .contact-btnASTN {
    font-size: 18px;
  }
}

.footerASTN {
  background: #3a3a3f;
  padding: 60px 0 40px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
}

/* GRID 3 COLUMNS */
.footer-gridASTN {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-titleASTN {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-textASTN {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}

.footer-iconsASTN img {
  height: 60px;
  margin-right: 15px;
}

/* CONTACT LIST */
.footer-contactListASTN {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contactListASTN li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-contactListASTN img {
  width: 20px;
}

/* LABEL = 700 */
.footer-contactListASTN .contact-labelASTN {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

/* VALUE = 400 */
.contact-valueASTN {
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
}

.contact-valueASTN:hover {
  text-decoration: underline;
}

/* NAVIGATION LINKS */
.footer-navASTN {
  max-width: 1240px;
  list-style: none;
  padding: 0;
  margin: 0 auto 25px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-navASTN a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-navASTN a:hover {
  text-decoration: underline;
}

/* COPYRIGHT */
.footer-copyASTN {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.footer-linkASTN {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
/* MOBILE */
@media (max-width: 768px) {
  .footer-gridASTN {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-iconsASTN img {
    height: 50px;
  }

  .footer-navASTN {
    gap: 18px;
    justify-content: center;
  }
}

/* about page */

/* IMAGE BLOCK */
.about-image-2ASTN {
  width: 100%;
  height: 356px;
  border-radius: 20px;
  background-image: url('/imagesASTN/ocean-imageASTN.webp');
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .about-image-2ASTN {
    width: 100%;
    height: 260px;
    background-image: url('/imagesASTN/ocean-image-mbASTN.webp');
  }
}

.whyStandASTN {
  padding: 60px 0;
  font-family: 'Istok Web', sans-serif;
}

.why-titleASTN {
  color: #403f45;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.why-listASTN {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-cardASTN {
  width: 390px;
  padding: 40px 30px;
  border-radius: 20px;
  border: 3px solid #44a8fb;
  background: radial-gradient(
    84.46% 84.46% at 49.83% 15.54%,
    #c7dfff 0%,
    #edf2f8 100%
  );
  text-align: center;
}

.why-iconASTN {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 100px;
  background: #b2c3fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.why-iconASTN img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.why-cardASTN h3 {
  color: #403f45;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-cardASTN p {
  color: #403f45;
  font-size: 16px;
  font-weight: 400;
}

/* TABLET */
@media (max-width: 992px) {
  .why-cardASTN {
    width: 100%;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .why-cardASTN {
    padding: 30px 20px;
  }

  .why-iconASTN {
    width: 70px;
    height: 70px;
    padding: 12px;
  }

  .why-iconASTN img {
    width: 30px;
    height: 30px;
  }

  .why-cardASTN h3 {
    font-size: 18px;
  }

  .why-cardASTN p {
    font-size: 15px;
  }
}

.symbolsSectionASTN {
  padding: 60px 0;
  font-family: 'Istok Web', sans-serif;
}

.symbols-titleASTN {
  color: #403f45;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.symbols-listASTN {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.symbol-cardASTN {
  width: 360px;
  padding: 28px 24px;
  border-radius: 20px;
  border: 5px solid #97b0ff;
  background: linear-gradient(91deg, #d5dfff 0.86%, #bae0ff 86.71%);
}

.symbol-cardASTN h3 {
  color: #403f45;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.symbol-cardASTN p {
  color: #403f45;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

/* Tablet */
@media (max-width: 992px) {
  .symbol-cardASTN {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .symbol-cardASTN {
    padding: 22px 18px;
  }

  .symbol-cardASTN h3 {
    font-size: 18px;
  }

  .symbol-cardASTN p {
    font-size: 14px;
  }
}

/* faq page */
.faqSectionASTN {
  padding: 60px 0;
}

.faq-mainTitleASTN {
  color: #403f45;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-listASTN {
  max-width: 1240px;
  margin: 0 auto;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;

  list-style: none;
  padding: 0;
}

.faq-cardASTN {
  width: 295px;
  height: 296px;
  padding: 40px;

  border-radius: 20px;
  border: 1px solid #44a8fb;
  background: #edf2f8;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  transition: background 0.35s ease, outline 0.35s ease,
    outline-offset 0.35s ease;
}

.faq-cardASTN:hover {
  outline: 3px solid #44a8fb;
  outline-offset: -3px;
  background: radial-gradient(
    84.46% 84.46% at 49.83% 15.54%,
    #c7dfff 0%,
    #edf2f8 100%
  );
}

.faq-cardASTN h2 {
  color: #403f45;
  font-family: 'Istok Web', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-cardASTN p {
  color: #403f45;
  font-family: 'Istok Web', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .faq-listASTN {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .faq-listASTN {
    padding: 0 15px;
    gap: 20px;
    justify-content: center;
  }

  .faq-cardASTN {
    width: 100%;
    height: auto;
  }
}

/* disclaimer page */

.disclaimer-section {
  padding: 70px 0;
}

.disclaimer-wrappASTN {
  border-radius: 20px;
  background: linear-gradient(91deg, #7161de 0.86%, #bc8aeb 86.71%);
  padding: 50px;
  max-width: 820px;
  margin: auto;
}

.disclaimer-tittleASTN {
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.disclaimer-textASTN {
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* terms */

.terms {
  padding: 70px 0;
}

.terms ul,
.terms ul li {
  list-style: disc;
}

.terms ul {
  margin-left: 20px;
}

.terms p,
ul {
  color: #403f45;
  font-family: 'Istok Web', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.terms h1 {
  color: #403f45;
  font-family: 'Istok Web', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.terms h2 {
  color: #403f45;
  font-family: 'Istok Web', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

@media (max-width: 740px) {
  .terms {
    padding: 20px 0;
  }
}

.ageModalASTN {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.ageModal-contentASTN {
  width: 650px;
  max-width: 90%;
  background: #403f45;
  border-radius: 30px;
  border: 1px solid #44a8fb;
  padding: 40px 50px;
  text-align: center;
  position: relative;
  color: #fff;
}

.ageModal-closeASTN {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.ageModal-titleASTN {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.ageModal-textASTN {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 40px;
  line-height: 1.5;
}

.ageModal-buttonsASTN {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.ageModal-btnExitASTN {
  padding: 14px 40px;
  border-radius: 100px;
  background: #56555b;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.ageModal-btnEnterASTN {
  padding: 14px 40px;
  border-radius: 100px;
  border: 2px solid #44a8fb;
  color: #44a8fb;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.ageModal-btnEnterASTN:hover {
  background: #44a8fb;
  color: #fff;
  transition: 0.2s;
}

@media (max-width: 600px) {
  .ageModal-contentASTN {
    padding: 30px 25px;
  }

  .ageModal-titleASTN {
    font-size: 26px;
  }

  .ageModal-textASTN {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .ageModal-buttonsASTN {
    flex-direction: column;
    gap: 15px;
  }

  .ageModal-btnExitASTN,
  .ageModal-btnEnterASTN {
    width: 100%;
    padding: 16px;
  }
}
