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

html {
  scroll-behavior: smooth;
}

.bg_main {
  background: linear-gradient(to bottom, rgba(11, 15, 26, 0) 0%, rgba(11, 15, 26, 0.85) 55%, #0b0f1a 100%), url("/assets/img/main_bg.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  background-attachment: scroll;
}

body {
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: #ffffff;
  background-color: #0b0f1a;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(11, 15, 26, 0.95), rgba(11, 15, 26, 0.85));
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header__container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  font-size: 22px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.5px;
}
.header__nav {
  display: flex;
  gap: 32px;
}
.header__nav a {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  transition: color 0.3s ease;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}
.header__nav a:hover {
  color: #d4af37;
}
.header__nav a:hover::after {
  width: 100%;
}

/* Burger */
.burger {
  display: none;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.burger span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Adaptive */
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: #141a2e;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .header__nav a {
    font-size: 22px;
  }
  .burger {
    display: flex;
  }
}
body.menu-open {
  overflow: hidden;
}

.hero {
  margin-top: 40px;
}
.hero__container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 64px 64px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 30px 80px rgba(0, 0, 0, 0.45);
}
.hero__badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero__text {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  color: #b8c1ec;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero .hero__btn {
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 20%;
  border: none;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}
.hero .hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.hero .hero__btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}
.hero .hero__link {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.85;
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}
.hero .hero__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.hero .hero__link:hover {
  opacity: 1;
}
.hero .hero__link:hover::after {
  opacity: 1;
}
.hero__visual {
  text-align: right;
}
.hero__visual img {
  max-width: 380px;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.6));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 56px 32px;
  }
  .hero__visual {
    text-align: center;
  }
  .hero__visual img {
    max-width: 300px;
  }
  .hero__actions {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 34px;
  }
  .hero__text {
    font-size: 16px;
  }
}
.games {
  padding: 80px 0;
}
.games__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 56px;
}
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Game Card */
.game-card {
  padding: 24px;
  border-radius: 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 25px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 35px 80px rgba(0, 0, 0, 0.6);
}
.game-card__image {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}
.game-card__image img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-card__image img {
  transform: scale(1.06);
}
.game-card__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}
.game-card__btn {
  display: block;
  width: 100%;
  padding: 14px 0;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  color: #000;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}
.game-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
  .games__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .games__grid {
    grid-template-columns: 1fr;
  }
  .games__title {
    font-size: 32px;
  }
}
.about {
  padding: 30px 0;
  /* LEFT IMAGE */
  /* RIGHT CONTENT */
  /* FEATURES GRID */
}
.about__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about__image {
  border-radius: 28px;
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.about__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
}
.about__subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #d4af37;
}
.about__text {
  font-size: 18px;
  line-height: 1.7;
  color: #b8c1ec;
  margin-bottom: 36px;
  max-width: 640px;
}
.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.about .about-card {
  padding: 26px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 25px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.about .about-card:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 35px 80px rgba(0, 0, 0, 0.6);
}
.about .about-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 20px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.about .about-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about .about-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #b8c1ec;
}

@media (max-width: 992px) {
  .about__container {
    grid-template-columns: 1fr;
  }
  .about__image {
    max-width: 500px;
    margin: 0 auto;
  }
  .about__features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .about__title {
    font-size: 32px;
  }
  .about__subtitle {
    font-size: 18px;
  }
  .about__text {
    font-size: 16px;
  }
}
.features {
  padding: 100px 0;
}
.features__title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
}
.features__subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 18px;
  color: #b8c1ec;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Feature card */
.feature-card {
  padding: 32px 28px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 25px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 35px 80px rgba(0, 0, 0, 0.6);
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #b8c1ec;
}

@media (max-width: 992px) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
  .features__title {
    font-size: 32px;
  }
}
.disclaimer {
  padding: 20px 0;
}

.disclaimer__box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 56px;
  text-align: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 30px 80px rgba(0, 0, 0, 0.5);
}

.disclaimer__title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.disclaimer__text {
  font-size: 17px;
  line-height: 1.7;
  color: #b8c1ec;
}
.disclaimer__text:not(:last-child) {
  margin-bottom: 16px;
}

.footer {
  padding-top: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}
.footer__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer__text {
  font-size: 15px;
  line-height: 1.7;
  color: #b8c1ec;
}

/* Bottom */
.footer__bottom {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
}

.footer__bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__links {
  display: flex;
  gap: 28px;
}
.footer__links a {
  font-size: 14px;
  color: #d4af37;
  transition: opacity 0.3s ease;
}
.footer__links a:hover {
  opacity: 0.8;
}

.footer__age {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__age span {
  font-size: 14px;
  color: #b8c1ec;
}
.footer__age strong {
  font-size: 26px;
  font-weight: 800;
  color: #d4af37;
}

@media (max-width: 992px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__bottom-container {
    flex-direction: column;
    text-align: center;
  }
}
.contact {
  padding: 100px 0;
  /* FORM */
}
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact__content {
  max-width: 480px;
}
.contact__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact__text {
  font-size: 18px;
  line-height: 1.6;
  color: #b8c1ec;
}
.contact__form {
  padding: 44px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 30px 70px rgba(0, 0, 0, 0.45);
}
.contact__field {
  margin-bottom: 18px;
}
.contact__field input,
.contact__field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.contact__field input::-moz-placeholder, .contact__field textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.contact__field input:focus,
.contact__field textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}
.contact__field textarea {
  resize: none;
  min-height: 120px;
}
.contact__btn {
  width: 100%;
  margin-top: 14px;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  color: #000;
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}
.contact__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(212, 175, 55, 0.65), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.contact__btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.popup.active {
  opacity: 1;
  pointer-events: auto;
}
.popup__content {
  width: 100%;
  max-width: 420px;
  text-align: center;
  padding: 48px 42px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.65);
  animation: popupScale 0.4s ease;
}
.popup h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
}
.popup p {
  font-size: 16px;
  line-height: 1.6;
  color: #b8c1ec;
  margin-bottom: 28px;
}
.popup .popup__btn {
  width: 100%;
  margin-top: 14px;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  color: #000;
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}
.popup .popup__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(212, 175, 55, 0.65), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.popup .popup__btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

/* Popup animation */
@keyframes popupScale {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .contact__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact__content {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .contact__title {
    font-size: 32px;
  }
  .contact__text {
    font-size: 16px;
  }
  .contact__form {
    padding: 32px 26px;
  }
}
.game {
  padding: 20px 0;
  text-align: center;
}
.game__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}
.game__subtitle {
  font-size: 18px;
  color: #b8c1ec;
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}
.game__frame-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 30px 80px rgba(0, 0, 0, 0.55);
}
.game__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.game__note {
  margin-top: 24px;
  font-size: 14px;
  color: #b8c1ec;
}

.policy {
  padding: 20px 0;
}
.policy__container {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 64px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 35px 90px rgba(0, 0, 0, 0.55);
}
.policy__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}
.policy__subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 14px;
  color: #d4af37;
}
.policy__text {
  font-size: 16px;
  line-height: 1.75;
  color: #b8c1ec;
}
.policy__text:not(:last-child) {
  margin-bottom: 18px;
}

.faq {
  padding: 20px 0;
}
.faq__container {
  max-width: 900px;
  margin: 0 auto;
}
.faq__title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 25px 60px rgba(0, 0, 0, 0.45);
}
.faq-item__header {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: left;
}
.faq-item__icon {
  font-size: 26px;
  font-weight: 400;
  color: #d4af37;
  transition: transform 0.3s ease;
}
.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item__content p {
  padding: 0 26px 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #b8c1ec;
}
.faq-item.active .faq-item__content {
  max-height: 300px;
}
.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.responsible {
  padding: 80px 0px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.responsible__container {
  text-align: center;
  max-width: 900px;
}
.responsible__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.responsible__text {
  font-size: 17px;
  color: #b8c1ec;
  margin-bottom: 36px;
}
.responsible__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.responsible__logos img {
  max-height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.responsible__logos img:hover {
  opacity: 1;
}

.disclaimer__container {
  margin: 0 auto;
  padding: 52px 60px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 30px 80px rgba(0, 0, 0, 0.55);
}
.disclaimer__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
}
.disclaimer__text {
  font-size: 16px;
  line-height: 1.75;
  color: #b8c1ec;
}
.disclaimer__text:not(:last-child) {
  margin-bottom: 18px;
}/*# sourceMappingURL=style.css.map */