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

@font-face {
  font-family: 'Roboto';
  src: url('/fontsTNFiLUI/roboto-variablefontTNFiLUI.woff2')
    format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Chango';
  src: url('/fontsTNFiLUI/chango-regularTNFiLUI.woff2') format('woff2');
  font-weight: 400;
  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: 1280px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

:root {
  --text_white: #ffffff;
  --text_gray: #dcdcdc;
  --burger_color: #d685f6;
}

.headerTNFiLUI {
  background: linear-gradient(180deg, #070506 0%, #1c1426 100%);
  position: relative;
  z-index: 100;
}

.headerTNFiLUI__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headerTNFiLUI__logo img {
  height: 64px;
  width: auto;
}

.headerTNFiLUI__logo {
  display: none;
}

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

.navTNFiLUI__list a {
  color: #fff;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}

.btnTNFiLUI {
  color: #fff;
  text-align: center;
  font-family: Chango, cursive;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  padding: 12px 28px;
  border-radius: 15px;
  border: 1px solid var(--text_gray);
  background: linear-gradient(90deg, #9c27ca 0%, #ba73e1 44.71%, #9c27ca 100%);
  box-shadow: 0 0 11.4px rgba(105, 187, 245, 0.36);
  text-decoration: none;
  white-space: nowrap;
}

.burgerTNFiLUI {
  display: none;
  width: 36px;
  height: 26px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.burgerTNFiLUI span {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: var(--burger_color);
}

.mobileTNFiLUI {
  position: absolute;
  inset: 100% 0 auto 0;
  background: linear-gradient(180deg, #070506 0%, #1c1426 100%);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.mobileTNFiLUI.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobileTNFiLUI__list {
  list-style: none;
  padding: 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobileTNFiLUI__list a {
  color: var(--text_white);
  font-family: Roboto, sans-serif;
  font-size: 18px;
  text-decoration: none;
}

.mobileTNFiLUI__btn {
  margin-top: 12px;
  display: inline-block;
  text-align: center;
  font-family: Chango, cursive;
  font-size: 18px;
  padding: 12px 24px;
  border-radius: 15px;
  border: 1px solid var(--text_gray);
  background: linear-gradient(90deg, #9c27ca 0%, #ba73e1 44.71%, #9c27ca 100%);
}

@media (max-width: 900px) {
  .navTNFiLUI,
  header .btnTNFiLUI {
    display: none;
  }

  .burgerTNFiLUI {
    display: flex;
  }

  .headerTNFiLUI__logo {
    display: block;
  }
}
.heroTNFiLUI {
  background: url('/imagesTNFiLUI/hero-planetTNFiLUI.webp') center / cover
    no-repeat;
  color: var(--text_white, #fff);
}

.heroTNFiLUI__container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.heroTNFiLUI__content {
  max-width: 520px;
}

.heroTNFiLUI__title {
  color: var(--text_white, #fff);
  font-family: Chango, cursive;
  font-size: 38px;
  font-weight: 400;
  line-height: 41px;
  margin-bottom: 20px;
}

.heroTNFiLUI__desc {
  color: var(--text_white, #fff);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 32px;
}

.heroTNFiLUI__btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
}

.heroTNFiLUI__image {
  display: flex;
  justify-content: flex-end;
}

.heroTNFiLUI__image img {
  width: 741px;
  height: 540px;
  display: block;
}

@media (max-width: 1024px) {
  .heroTNFiLUI__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px;
  }

  .heroTNFiLUI__content {
    max-width: 100%;
  }

  .heroTNFiLUI__image {
    display: none;
  }
}

@media (max-width: 768px) {
  .heroTNFiLUI {
    background: url('/imagesTNFiLUI/hero-planetmbTNFiLUI.webp') center / cover
      no-repeat;
    padding: 40px 10px;
  }

  .heroTNFiLUI__container {
    padding: 0;
  }

  .heroTNFiLUI__title {
    font-size: 32px;
    line-height: 36px;
    text-align: left;
  }

  .heroTNFiLUI__desc {
    font-size: 16px;
    line-height: 22px;
    text-align: left;
  }

  .heroTNFiLUI__image {
    display: none;
  }
}

.aboutTNFiLUI {
  background: #000;
  color: #fff;
  padding: 60px 0;
}

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

.aboutTNFiLUI__title {
  color: #fff;
  text-align: center;
  font-family: Chango;
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  margin-bottom: 48px;
}

.aboutTNFiLUI__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

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

.aboutTNFiLUI__subtitle {
  color: var(--text_white, #fff);
  text-align: justify;
  font-family: Chango;
  font-size: 22px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 20px;
}

.aboutTNFiLUI__content p {
  color: #dcdcdc;
  text-align: justify;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 18px;
}

.aboutTNFiLUI__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .aboutTNFiLUI__grid {
    grid-template-columns: 1fr;
  }

  .aboutTNFiLUI__image {
    order: 2;
  }

  .aboutTNFiLUI__content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .aboutTNFiLUI__title {
    font-size: 28px;
    line-height: 36px;
  }

  .aboutTNFiLUI__subtitle {
    font-size: 20px;
    line-height: 26px;
  }
}
.playTNFiLUI {
  color: #fff;
  background: #070506;
  padding: 60px 0;
}

.playTNFiLUI__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.playTNFiLUI__title {
  color: #fff;
  text-align: center;
  font-family: Chango;
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  margin-bottom: 16px;
}

.playTNFiLUI__desc {
  max-width: 920px;
  color: #dcdcdc;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 40px;
}

.playTNFiLUI__demo {
  width: 100%;
  max-width: 1240px;

  aspect-ratio: 1240 / 631;

  border-radius: 28px;
  position: relative;
  overflow: hidden;

  background: url('/imagesTNFiLUI/playdemobgTNFiLUI.webp') center / cover
    no-repeat;
}

.playTNFiLUI__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.playTNFiLUI__iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.playTNFiLUI__bottom {
  width: 100%;
  max-width: 1240px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.playTNFiLUI__btn {
  width: 100%;
  max-width: 1000px;
}

.playTNFiLUI__likes {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;

  font-family: Chango;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

@media (max-width: 1024px) {
  .playTNFiLUI__bottom {
    flex-direction: column;
    gap: 20px;
  }

  .playTNFiLUI__btn {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .playTNFiLUI__title {
    font-size: 28px;
    line-height: 36px;
  }

  .playTNFiLUI__desc {
    font-size: 15px;
  }

  .playTNFiLUI__demo {
    aspect-ratio: 375 / 239;
    background: url('/imagesTNFiLUI/playdemombTNFiLUI.webp') center / cover
      no-repeat;
  }
}

.quizTNFiLUI {
  background: url('/imagesTNFiLUI/quebgTNFiLUI.webp') center / cover no-repeat;
  padding: 60px 0;
  position: relative;
  color: #fff;
}

.quizTNFiLUI.is-blurred .quizTNFiLUI__overlay {
  display: flex;
}

.quizTNFiLUI__container {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
}

.quizTNFiLUI__title {
  font-family: Chango;
  font-size: 38px;
  line-height: 44px;
  margin-bottom: 24px;
}

.quizTNFiLUI__steps {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.quizTNFiLUI__step {
  width: 34px;
  height: 34px;
  border-radius: 25px;
  border: 1px solid #9584ce;
  background: linear-gradient(180deg, #070506, #1c1426);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Chango;
}

.quizTNFiLUI__step.is-active {
  background: #9c27ca;
}

.quizTNFiLUI__line {
  flex: 1;
  height: 1px;
  background: rgba(149, 132, 206, 0.4);
}

.quizTNFiLUI__stepContent {
  display: none;
}

.quizTNFiLUI__stepContent h3 {
  color: var(--text_white, #fff);
  font-family: Chango;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 15px;
}

.quizTNFiLUI__stepContent.is-active {
  display: block;
}

.quizTNFiLUI__option {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 15px;
  border: 1px solid #9584ce;
  background: rgba(0, 0, 0, 0.41);
  backdrop-filter: blur(12.35px);
  margin-bottom: 14px;
}

.quizTNFiLUI__option input {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #9584ce;
  border-radius: 50%;
  position: relative;
}

.quizTNFiLUI__option span {
  color: var(--text_white, #fff);
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.quizTNFiLUI__option input:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #b96cff;
  border-radius: 50%;
}

.quizTNFiLUI__nextBtn {
  width: 100%;
  height: 56px;
  margin-top: 16px;
  font-family: Chango;
  font-size: 18px;
  color: #fff;
  border-radius: 15px;
  border: 1px solid #dcdcdc;
  background: linear-gradient(90deg, #9c27ca, #ba73e1, #9c27ca);
  box-shadow: 0 0 11.4px rgba(105, 187, 245, 0.36);
  cursor: pointer;
}

.quizTNFiLUI__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.41);
  backdrop-filter: blur(24.65px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.quizTNFiLUI__overlay.is-open {
  display: flex;
}

.quizTNFiLUI__popup {
  max-width: 620px;
  padding: 48px;
  border-radius: 50px;
  border: 1px solid #9584ce;
  background: linear-gradient(180deg, #070506, #1c1426);
  text-align: center;
}

.quizTNFiLUI__popup h2 {
  color: var(--text_white, #fff);
  text-align: center;
  font-family: Chango;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  margin-bottom: 10px;
}

.quizTNFiLUI__popup p {
  color: #dcdcdc;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 10px;
}

.quizTNFiLUI__rocket {
  width: 96px;
  margin-bottom: 16px;
}

.quizTNFiLUI__popupPrimary,
.quizTNFiLUI__popupSecondary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 100%;
  font-family: Chango;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  border-radius: 15px;
  border: 1px solid #dcdcdc;
  box-shadow: 0 0 11.4px rgba(105, 187, 245, 0.36);
}

.quizTNFiLUI__popupPrimary {
  background: linear-gradient(90deg, #9c27ca, #ba73e1, #9c27ca);
  margin-bottom: 14px;
}

.quizTNFiLUI__popupSecondary {
  background: transparent;
}

@media (max-width: 768px) {
  .quizTNFiLUI__popup {
    max-width: 100%;
    padding: 28px 20px;
    margin: 0 16px;
    border-radius: 28px;
  }

  .quizTNFiLUI__rocket {
    width: 72px;
    margin-bottom: 14px;
  }

  .quizTNFiLUI__popup h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
  }

  .quizTNFiLUI__popup p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 18px;
  }

  .quizTNFiLUI__popupPrimary,
  .quizTNFiLUI__popupSecondary {
    height: 48px;
    font-size: 16px;
    border-radius: 12px;
  }

  .quizTNFiLUI__popupPrimary {
    margin-bottom: 12px;
  }
}

@media (max-width: 1024px) {
  .quizTNFiLUI__container {
    grid-template-columns: 1fr;
  }
  .quizTNFiLUI__right {
    display: none;
  }
}

.reviewsTNFiLUI {
  padding: 80px 0;
  background: #070506;
}

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

.reviewsTNFiLUI__item {
  padding: 32px;
  border-radius: 40px;
  border: 1px solid var(--stroke, #9584ce);
  background: linear-gradient(180deg, #070506 0%, #1c1426 100%);
}

.reviewsTNFiLUI__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.reviewsTNFiLUI__name {
  color: var(--text_white, #fff);
  font-family: Chango;
  font-size: 22px;
  font-weight: 400;
  line-height: 27px;
}

.reviewsTNFiLUI__stars {
  display: flex;
  gap: 6px;
}

.reviewsTNFiLUI__stars img {
  width: 15px;
  height: 15px;
  display: block;
}

.reviewsTNFiLUI__text {
  color: var(--text_white, #fff);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

@media (max-width: 1024px) {
  .reviewsTNFiLUI__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reviewsTNFiLUI__item {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .reviewsTNFiLUI {
    padding: 60px 0;
  }

  .reviewsTNFiLUI__name {
    font-size: 20px;
  }

  .reviewsTNFiLUI__text {
    font-size: 15px;
    line-height: 21px;
  }
}

.contactTNFiLUI {
  padding: 80px 0;
  color: #fff;
  background: #070506;
}

.contactTNFiLUI__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contactTNFiLUI__title {
  text-align: center;
  font-family: Chango;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 32px;
}

.contactTNFiLUI__image img {
  width: 100%;
  border-radius: 32px;
  display: block;
}

.contactTNFiLUI__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contactTNFiLUI__form input,
.contactTNFiLUI__form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 15px;
  border: none;
  font-family: Roboto;
  font-size: 16px;
  color: #000;
  background: #ededed;
}

.contactTNFiLUI__form textarea {
  min-height: 140px;
  resize: none;
}

.contactTNFiLUI__btn {
  margin-top: 12px;
  height: 56px;
  border-radius: 15px;
  border: 1px solid #dcdcdc;
  font-family: Chango;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(90deg, #9c27ca 0%, #ba73e1 44.71%, #9c27ca 100%);
  box-shadow: 0 0 11.4px rgba(105, 187, 245, 0.36);
  cursor: pointer;
}

.contactTNFiLUI__success {
  display: none;
  margin-top: 12px;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  color: #9dff00;
}

@media (max-width: 1024px) {
  .contactTNFiLUI__container {
    grid-template-columns: 1fr;
  }

  .contactTNFiLUI__image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contactTNFiLUI {
    padding: 60px 0;
  }

  .contactTNFiLUI__image {
    display: none;
  }

  .contactTNFiLUI__title {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .contactTNFiLUI__btn {
    height: 52px;
    font-size: 16px;
  }
}

.ageTNFiLUI {
  background: #070506;
  padding: 80px 0;
}

.ageTNFiLUI__box {
  margin: 0 auto;
  padding: 40px 48px;
  border-radius: 40px;
  border: 1px solid var(--stroke, #9584ce);
  background: linear-gradient(180deg, #070506 0%, #1c1426 100%);
  text-align: center;
}

.ageTNFiLUI__title {
  color: var(--stroke, #9584ce);
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 20px;
}

.ageTNFiLUI__text {
  color: #f1f1f1;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  max-width: 1000px;
  margin: auto;
}

@media (max-width: 768px) {
  .ageTNFiLUI {
    padding: 60px 0;
  }

  .ageTNFiLUI__box {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .ageTNFiLUI__title {
    font-size: 36px;
    line-height: 48px;
  }
}

.footerTNFiLUI {
  padding: 80px 0 40px;
  background: #070506;
}

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

.footerTNFiLUI__title {
  color: #f1f1f1;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 12px;
}

.footerTNFiLUI__text {
  color: var(--text_gray, #dcdcdc);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.footerTNFiLUI__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text_gray, #dcdcdc);
  font-family: Roboto;
  font-size: 16px;
  line-height: 22px;
}

.footerTNFiLUI__contact img {
  width: 20px;
  height: 20px;
  display: block;
}

.footerTNFiLUI__navList {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.footerTNFiLUI__navList a {
  color: var(--button, #d685f6);
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}

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

  .footerTNFiLUI__navList {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footerTNFiLUI {
    padding: 60px 0 32px;
  }

  .footerTNFiLUI__navList {
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
}

.featuresTNFiLUI {
  background: #070506;
  padding: 80px 0;
}

.featuresTNFiLUI__list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.featuresTNFiLUI__item {
  border-radius: 25px;
  border: 1px solid var(--stroke, #9584ce);
  background: linear-gradient(180deg, #070506 0%, #1c1426 100%);

  padding: 25px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.featuresTNFiLUI__icon {
  width: 103px;
  height: 103px;
  object-fit: contain;
  margin-bottom: 20px;
}

.featuresTNFiLUI__title {
  margin: 0 0 12px;
  color: var(--text_white, #fff);
  text-align: center;

  font-family: Chango;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.featuresTNFiLUI__text {
  margin: 0;
  color: var(--text_gray, #dcdcdc);
  text-align: center;

  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

@media (max-width: 1024px) {
  .featuresTNFiLUI__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .featuresTNFiLUI__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featuresTNFiLUI__item {
    padding: 25px;
  }

  .featuresTNFiLUI__icon {
    width: 103px;
    height: 103px;
    margin-bottom: 18px;
  }
}

.terms {
  padding: 40px 0;
  background: #070506;
}

.terms h1 {
  color: #fff;

  font-family: Chango;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  margin-bottom: 24px;
}

.terms h2 {
  color: #fff;
  font-family: Chango;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 24px;
  margin-top: 20px;
}

.terms span {
  color: var(--text_gray, #dcdcdc);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.terms p {
  color: var(--text_gray, #dcdcdc);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 24px;
}

.terms ul {
  list-style: disc;
}

.terms ul li {
  color: #dcdcdc;

  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  list-style-type: disc;
  margin-left: 15px;
}

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

  .terms h1 {
    font-size: 22px;
  }
}

.ageTNFiLUI {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  font-family: 'Poppins', system-ui, sans-serif;
}

.ageTNFiLUI.is-open {
  display: block;
}

.ageTNFiLUI__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 0, 20, 0.75);
  backdrop-filter: blur(6px);
}

.ageTNFiLUI__modal {
  position: relative;
  max-width: 420px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 32px 28px;
  border-radius: 22px;
  background: radial-gradient(120% 120% at 50% 0%, #3a1c71 0%, #12002b 70%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
}

.ageTNFiLUI__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ageTNFiLUI__text {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 26px;
}

.ageTNFiLUI__actions {
  display: flex;
  gap: 14px;
}

.ageTNFiLUI__btn {
  flex: 1;
  height: 52px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ageTNFiLUI__btn:active {
  transform: translateY(1px);
}

.ageTNFiLUI__btn--yes {
  color: #fff;
  border: 1px solid var(--text_gray);
  background: linear-gradient(90deg, #9c27ca 0%, #ba73e1 44.71%, #9c27ca 100%);
  box-shadow: 0 0 11.4px rgba(105, 187, 245, 0.36);
}

.ageTNFiLUI__btn--no {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}
