html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: normal;

  color: #ffe3ce;
  background-color: #000000;
}

p {
  font-size: 25px;
  font-weight: 300;
}

h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 700;
  background: linear-gradient(
    to bottom,
    #2e1e00 0%,
    #422100 15%,
    #ffc77d 50%,
    #422100 75%,
    #2e1e00 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-style: italic;
  font-size: 60px;
  font-weight: 500;
  font-stretch: ultra-condensed;
  line-height: 0.9;
  color: #ffc77da9;
}

h4 {
  font-style: italic;
  font-size: 20px;
  margin-right: auto;
  margin-bottom: 10px;
}

h5 {
  font-size: 30px;
  font-weight: 400;
  color: antiquewhite;
}

.no-select {
  user-select: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 30px 0;
}

.header__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo__img {
  padding: 0 30px;
  height: 50px;
  width: 250px;
}

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 30px;
  gap: 30px;
}

.nav__link {
  color: #ffe3ce;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover {
  color: #ff9d41;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff9d41;
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1002;
}

.burger__line {
  width: 100%;
  height: 3px;
  background: #ffe3ce;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.wrapper {
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.bronze-background {
  /* 1. Задаємо базовий темний фон */
  background-color: #000000;
  min-height: 100vh;

  position: relative; /* Щоб позиціонувати плями відносно body */
}

/* Створення імітації "плям" за допомогою псевдоелемента */
.bronze-background::before {
  content: "";
  position: absolute;
  top: -150px; /* Зсуваємо вгору */
  left: -150px; /* Зсуваємо вліво */
  width: 400px;
  height: 400px;
  border-radius: 50%; /* Робить його круглим */

  /* 2. Створення "бронзової" плями за допомогою градієнта */
  /* Використовуємо radial-gradient, щоб він був м'яким */
  background: radial-gradient(
    circle at center,
    rgb(250, 138, 27),
    rgba(0, 0, 0, 0) 80%
  );

  /* 3. ДОДАЄМО РОЗМИТТЯ (Ключовий момент) */
  /* Використовуємо filter: blur для сильного розмиття */
  filter: blur(100px);

  /* Додатково можна додати анімацію для руху */
}

/* Створення другої плями для ефекту */
.bronze-background::after {
  content: "";
  position: absolute;
  bottom: -100px; /* Зсуваємо вниз */
  right: 50px;
  width: 5px;
  height: 5px;
  border-radius: 50%;

  /* Схожий градієнт, але трохи інший відтінок або розмір */
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.6),
    rgba(212, 175, 55, 0) 0%
  );

  /* Розмиття */
  filter: blur(50px);
  z-index: -1; /* Відсуваємо за вміст */
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Чтобы частицы не мешали взаимодействию с контентом */
  z-index: 1; /* Чтобы частицы были над фоном, но под контентом */
}

.particle {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #d4af3793; /* Бронзовый/золотой цвет */
  pointer-events: none;
  opacity: 10; /* Начальная прозрачность */
  animation: particle-animation linear infinite;
}

/* Анимация вылета и рассеивания частиц */
@keyframes particle-animation {
  0% {
    transform: translate(0, 0) scale(0.5);
    opacity: 0.8;
  }
  20% {
    opacity: 1; /* Максимальная яркость в начале */
  }
  100% {
    transform: translate(
        calc(100vw * var(--random-x)),
        calc(100vh * var(--random-y))
      )
      scale(var(--random-scale));
    opacity: 0; /* Полное исчезновение */
  }
}

/************************************************************************
***********************************************************************************************************************************************************
*/
.top {
  background: linear-gradient(to bottom, #000000, rgba(5, 3, 0, 0.507));
  height: 100%;

  margin-bottom: auto;
  margin-top: 100px;
  width: 100%;
}

.top_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  /* padding-bottom: 5%; */
}

.top_title {
  font-size: 12vw;
  display: block;
}

.top_img {
  max-width: 50%;
  max-height: 50%;
}

.text-box {
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.img-title {
  max-width: 1000px;
}

.top_img-mob {
  display: none;
}

.top_text {
  margin-top: -20px;
  position: relative !important;
  display: block;
  font-weight: 500;
}

.top-button {
  margin-top: 50px;
  padding: 40px 45px;
}

.neon-button {
  display: inline-block;
  /* padding: 40px 45px; */
  color: #ffe3ce;
  text-decoration: none;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 2px;
  background-color: rgba(88, 67, 48, 0.582);
  transition: background-color 0.3s ease;
  border-radius: 15px;
  /* Неоновая обводка
  border: 2px solid rgb(250, 138, 27);
  border-radius: 50px;
  box-shadow: 0 0 5px rgb(250, 138, 27), 0 0 10px rgb(250, 138, 27),
    inset 0 0 5px rgb(250, 138, 27);

  /* Плавный переход для свечения */
  /* transition: all 0.3s ease; */
}

.neon-button:hover {
  background-color: #85653b;
  /* Усиленное свечение при наведении */
  /* box-shadow: 0 0 15px rgb(250, 138, 27), 0 0 30px rgb(250, 138, 27),
    0 0 45px rgb(250, 138, 27), inset 0 0 15px rgb(250, 138, 27);

  /* Дополнительный эффект */
  /* background-color: rgba(0, 255, 255, 0.1); */
  /* text-shadow: 0 0 10px #fff; */
}

.slider-indicators {
  display: none;
}
.main {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.349) 0%,
    rgba(88, 44, 8, 0.304) 30%,
    rgba(22, 10, 0, 0.516) 70%,
    rgb(0, 0, 0) 100%
  );
}

.main_container {
  width: 90%;
  margin: 0 auto;
  padding: 0 10px;
}

.community {
  margin: 0 auto;
  width: 90%;
  display: flex;
  justify-content: center;

  background-color: #00000086;

  border-radius: 20px;
  padding: 40px 100px 40px 50px;
  border: 2px solid #ffb68643;

  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.community.visible {
  opacity: 1;
  transform: translateY(0);
}

.community.visible .community_img {
  animation: slideInLeft 0.8s ease 0.2s both;
}

.community.visible .community_box {
  animation: slideInRight 0.8s ease 0.4s both;
}

.community.visible .community_title {
  animation: fadeInUp 0.8s ease 0.6s both;
}

.community.visible .community_text {
  animation: fadeInUp 0.8s ease 0.8s both;
}

.community.visible .community_button {
  animation: fadeInUp 0.8s ease 1s both;
}

/* Кейфреймы для анимаций */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.community_box {
  display: flex;
  flex-direction: column;
  /* margin-left: 30px;
  margin-top: 15px; */
  align-items: center;
  justify-content: center;
  padding-left: 30px;
}
.community_img {
  max-width: 500px;
  border-radius: 15px;
  max-height: 500px;
  margin: auto 0px;
}

.community_button {
  margin: 40px auto 0;

  display: inline-block;
  padding: 12px 34px;
  color: #ffe3ce;
  text-decoration: none;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 2px;
  background-color: rgb(66, 32, 1);
  transition: background-color 0.3s ease;
  border-radius: 10px;
}

.community_button:hover {
  background-color: #85653b;
}

.community::before {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(255, 138, 61, 0.3) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.community-particles {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.community-particle {
  margin-bottom: -35px;
  position: absolute;
  bottom: 0;
  width: 4px; /* Увеличил размер */
  height: 4px;
  background: #ff8a3d;
  border-radius: 50%;
  animation: community-particle-rise linear forwards;
  box-shadow: 0 0 8px #ff8a3d; /* Добавил свечение */
}

@keyframes community-particle-rise {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1.5);
    opacity: 0;
  }
}

.community_title {
  font-size: 40px;
  text-align: left;
  margin-bottom: 20px;
  font-weight: 300;
  margin-right: auto;
  text-align: start;
}

.community_text {
  text-align: left;
  font-weight: 300;
}

/* .feedback-container {
  left: -250px;
  width: 1700px;
  overflow: hidden;
  position: relative;
  padding: 150px 0px;
}

.carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.carousel-item {
  position: relative;
  width: 400px;
  height: 250px;
  background: rgba(255, 158, 68, 0.1);
  border-radius: 15px;
  margin: 0 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 157, 101, 0.2);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.carousel-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.carousel-item p {
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Стили для частиц 
.feedback_particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.feedback_particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ff8a3d;
  border-radius: 50%;
  animation: particle-fall linear forwards;
  box-shadow: 0 0 8px #ff8a3d;
  opacity: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes particle-fall {
  0% {
    transform: translateY(-100px) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translateY(100px) scale(1.5);
    opacity: 0;
  }
}

/* Пауза при наведении 
.feedback-container:hover .carousel-track {
  animation-play-state: paused;
}

 Адаптивность 
@media (max-width: 768px) {
  .carousel-item {
    width: 250px;
    height: 180px;
  }

  .carousel-item h3 {
    font-size: 1.3rem;
  }

  .carousel-item p {
    font-size: 0.9rem;
  }
} */
.combined-section {
  width: 90%;
  position: relative;
  margin: 100px auto;
}

.section-overlay {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 25px;
  border: 2px solid #ffb6863f;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.section-title {
  margin-left: 70px;
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 40px;
  font-weight: 400;
  color: #ffb686c2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Стили для слайдера */
.slider-container {
  position: relative;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 80px;
}

.slider {
  position: relative;
  height: 380px;
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

.slide {
  flex: 0 0 calc(33.333% - 20px);
  height: 100%;
  background-color: #00000044;
  border-radius: 20px;
  border: 1px solid #ffb6863f;
  transition: all 0.3s ease;
  opacity: 0.7;
  transform: scale(0.9);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 8px 25px rgba(255, 182, 134, 0.3);
}

.slide-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.slide-image {
  overflow: hidden;
  flex-shrink: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.slide:hover .slide-image img {
  transform: scale(1.05);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 182, 134, 0.8);
  color: #1a1a1a;
  border: none;
  padding: 20px 25px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #ffb686;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 182, 134, 0.4);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Стили для карусели */
.carousel-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.carousel-column {
  height: 500px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #ffb6863f;
}

.carousel-track {
  position: absolute;
  width: 100%;
  animation: scroll 20s linear infinite;
}

.carousel-track.reverse {
  animation: scroll-reverse 25s linear infinite;
}

.carousel-item {
  height: 200px;
  margin: 15px;
  padding: 25px;
  background: rgba(255, 182, 134, 0.1);
  border-radius: 15px;
  border: 1px solid #ffb6863f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-direction: column;
}

.carousel-item:hover {
  background: rgba(255, 182, 134, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 182, 134, 0.2);
}

.carousel-item p {
  font-size: 16px;
  line-height: 1.3;
  color: #ffe3ce;
  text-align: center;
  margin: 0;
}

/* Градиентные тени для карусели */
.carousel-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}

.top-fade {
  top: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 100%
  );
}

.bottom-fade {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

/* Анимации для карусели */
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-50% - 15px));
  }
}

@keyframes scroll-reverse {
  0% {
    transform: translateY(calc(-50% - 15px));
  }
  100% {
    transform: translateY(0);
  }
}

.traders {
  display: flex;
  flex-direction: column;
}

.traders_item {
  width: 100%;
  margin: 0 auto;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 100px;
  background-color: #00000050;
  border-radius: 35px;
  border: 1px solid rgba(255, 157, 101, 0.23);

  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.traders_img {
  max-width: 450px;
  max-height: 600px;
  border-radius: 35px;
  margin: auto 0;
}

.traders_title {
  font-size: 130px;
  margin-bottom: -40px;
}

.traders_text-box {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  max-width: 60%;
  gap: 25px;
}

.traders_item:first-child {
  transform: translateX(0px);
}

.traders_item:first-child.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Второй блок - появляется слева направо */
.traders_item:last-child {
  transform: translateX(-100px);
}

.traders_item:last-child.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Анимации для содержимого с задержкой */
.traders_item.visible .traders_img {
  animation: scaleIn 0.8s ease 0.3s both;
}

.traders_item.visible .traders_text-box {
  animation: fadeInUp 0.8s ease 0.5s both;
}

.traders_item.visible .traders_title {
  animation: fadeInUp 0.8s ease 0.7s both;
}

.traders_item.visible h3 {
  animation: fadeInUp 0.8s ease 0.9s both;
}

.traders_item.visible p {
  animation: fadeInUp 0.8s ease 1.1s both;
}

/* Кейфреймы для анимаций */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section {
  width: 90%;
  margin: auto;
  position: relative;
}

.faq-section .section-overlay {
  background: transparent;
  border-radius: 0;
  border: none;

  backdrop-filter: none;
  box-shadow: none;
}

.faq-container {
  position: relative;
  z-index: 2;
}

.faq-title {
  margin-bottom: 50px;
}

.faq-section {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 60px;
  font-weight: 400;
  color: #fccbabbb;
  text-shadow: none;
  letter-spacing: -0.5px;
}

.faq-accordion {
  position: relative;
  z-index: 2;
}

.faq-item {
  margin-bottom: 20px;
  border: none;
  background: rgba(255, 182, 134, 0.068);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 163, 113, 0.089),
    transparent
  );
  transition: left 0.8s ease;
}

.faq-item:hover::before {
  left: 100%;
}

.faq-item:hover {
  background: rgba(212, 131, 55, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 139, 55, 0.1);
}

.faq-question {
  padding: 1% 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 400;
  font-size: 22px;
  color: #ffb686ef;
  transition: all 0.3s ease;
  background: transparent;

  min-height: 100px;
  letter-spacing: -0.2px;
  border: 1px solid rgba(212, 139, 55, 0.2);
  border-radius: 25px;
}

.faq-question:hover {
  color: #ffb686bb;
  background: rgba(212, 144, 55, 0.1);
  border-color: rgba(212, 139, 55, 0.4);
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 25px;
  color: #ffb686bb;
  opacity: 0.8;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(212, 139, 55, 0.05);

  border-radius: 0 0 25px 25px;
}

.faq-item.active .faq-answer {
  max-height: 500px;

  padding: 15px 150px 15px 50px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.7;
  font-size: 18px;
  color: #e6d7a8;
  text-align: left;
  font-weight: 400;
  letter-spacing: -0.1px;
}

/* Анимация для активного состояния */
.faq-item.active {
  background: rgba(212, 157, 55, 0.1);
  border: none;
  box-shadow: 0 4px 15px rgba(212, 157, 55, 0.15);
}

.faq-item.active .faq-question {
  background: rgba(212, 139, 55, 0.15);
  border-color: rgba(212, 131, 55, 0.5);
  border-radius: 8px 8px 0 0;
  border-bottom: none;
}

/* Убираем все свечения и тени */
.faq-item,
.faq-question,
.faq-answer {
  box-shadow: none;
  text-shadow: none;
}

.button-fqu_box {
  margin: 0 auto;
  width: 90%;
  display: flex;
  justify-content: center;
}

.button-fqu {
  text-align: center;
  width: 650px;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  background-color: #613e1e67;
  padding: 30px 75px;
  border-radius: 25px;
  font-size: 30px;

  display: flex;
  justify-content: center; /* центр по горизонтали */
  align-items: center; /* центр по вертикали */

  color: #ffe3ce;
  text-decoration: none;
  font-weight: 400;

  letter-spacing: 2px;
  background-color: rgba(88, 67, 48, 0.582);
  transition: background-color 0.3s ease;
}

.footer {
  bottom: -100px;
  height: 250px;
  width: 89%;
  background-color: #080808;
  color: #ffffff;
  padding: 40px 20px;
  border: 1px solid #ff902054;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;

  position: relative;
  overflow: hidden;
  margin-bottom: -200px;

  -webkit-backdrop-filter: blur(0); /* Safari fix */
}

/* Желтое пятно */
.footer__background-spot {
  position: absolute;
  top: 50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    #ffd90076 0%,
    #ffa60074 40%,
    #ff8c005d 70%,
    transparent 100%
  );
  border-radius: 50%;

  /* Safari filter fix */
  -webkit-filter: blur(50px);
  filter: blur(50px);

  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

/* Частицы */
.footer__particles {
  position: absolute;
  bottom: 80px;
  left: 80px;
  width: 150px;
  height: 150px;
  z-index: 0;
  pointer-events: none;
}

/* Частицы Safari-friendly */
.footer__particles::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;

  /* Safari не любит sub-pixel — заменено на 1px */
  background-image: radial-gradient(
      1px 1px at 10% 15%,
      #ffd700 60%,
      transparent 100%
    ),
    radial-gradient(1px 1px at 25% 8%, #ffeb3b 60%, transparent 100%),
    radial-gradient(1px 1px at 40% 20%, #ffa500 60%, transparent 100%),
    radial-gradient(1px 1px at 15% 35%, #ffd700 60%, transparent 100%);
  background-repeat: no-repeat;

  animation: particlesFloat 6s ease-in-out infinite;
  -webkit-animation: particlesFloat 6s ease-in-out infinite;
}

/* Тоже частички */
.footer__particles::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;

  background-image: radial-gradient(
      1px 1px at 5% 10%,
      #ffeb3b 60%,
      transparent 100%
    ),
    radial-gradient(1px 1px at 18% 22%, #ffd700 60%, transparent 100%),
    radial-gradient(1px 1px at 32% 12%, #ffa500 60%, transparent 100%);
  background-repeat: no-repeat;

  animation: particlesFloat2 7s ease-in-out infinite;
  -webkit-animation: particlesFloat2 7s ease-in-out infinite;
}

/* Анимации */
@keyframes particlesFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-120px, -160px) scale(0.8);
    opacity: 0;
  }
}

@-webkit-keyframes particlesFloat {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  100% {
    -webkit-transform: translate(-120px, -160px) scale(0.8);
    opacity: 0;
  }
}

@keyframes particlesFloat2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-80px, -180px) scale(0.7);
    opacity: 0;
  }
}

@-webkit-keyframes particlesFloat2 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  100% {
    -webkit-transform: translate(-80px, -180px) scale(0.7);
    opacity: 0;
  }
}

/* Остальной футер */
.footer__container {
  width: 100%;
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: relative;
  z-index: 1;
}

.footer__brand {
  display: flex;
  flex: 1;
  min-width: 300px;
  align-items: center;
}

.footer_img {
  max-width: 300px;
}

.footer__description {
  font-size: 26px;
  line-height: 1.5;
  color: #ffa857;
}

.footer__social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social_img {
  max-width: 80px;
}

.social__link:hover {
  color: #ffd700;
}

.footer_policy {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.footer_policy a {
  text-decoration: none;
  color: #aa8866;
  font-style: italic;
}

.down {
  display: none;
}

.container_policy {
  padding: 150px 50px 0px 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.container_policy p {
  font-size: 16px;
  color: antiquewhite;
}

.block {
  height: 20px;
}

/* .....................................
.........................................................................................
.......................................................................................... */

@media (max-width: 1600px) {
  h3 {
    font-size: 50px;
  }

  .carousel-item {
    height: 300px;
  }

  .traders_title {
    font-size: 150px;
  }

  .top-button {
    margin-top: 40px;
    padding: 20px 25px;
  }
}

@media (max-width: 1500px) {
  .top_title {
    font-size: 170px;
  }

  .top_text {
    margin-top: -15px;
    font-size: 20px;
  }

  .neon-button {
    font-size: 16px;
  }

  h3 {
    font-size: 50px;
  }

  .community_title {
    font-size: 40px;
  }

  .community_text {
    font-size: 20px;
  }

  .carousel-item {
    height: 300px;
  }

  .traders_title {
    font-size: 150px;
  }
}

@media (max-width: 1300px) {
  .header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  h2 {
    font-size: 40px;
  }

  .section-title {
    margin-left: 10px;
    margin-bottom: 10px;
  }

  .slider-container {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .carousel-container {
    margin-top: 10px;
  }

  .nav__link {
    font-size: 16px;
  }

  .community_button {
    margin-top: 15px;
    font-size: 18px;
  }

  .community_img {
    max-width: 350px;
  }

  .community_title {
    font-size: 30px;
  }

  .community_text {
    font-size: 16px;
  }
  .traders_title {
    font-size: 120px;
  }

  h3 {
    font-size: 35px;
  }

  .traders_text-box p {
    font-size: 20px;
  }

  .traders_img {
    max-width: 400px;
  }

  .traders_item {
    margin-bottom: 30px;
  }

  .carousel-3 {
    display: none;
  }

  .carousel-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-overlay {
    margin-top: -20px;
  }

  .section-title {
    font-size: 35px !important;
  }
}

@media (max-width: 1200px) {
  .top {
    margin-top: 70px;
    margin-bottom: 100px;
  }

  .top_title {
    font-size: 150px;
    margin-bottom: 5px;
  }

  .top_text {
    font-size: 16px;
  }

  .neon-button {
    font-size: 14px;
  }

  .community {
    /* margin-bottom: -50px; */
  }

  .traders_title {
    font-size: 80px;
  }

  .traders_img {
    max-width: 350px;
  }
  .traders {
    margin-top: -40px;
  }

  h3 {
    font-size: 35px;
    margin-top: 15px;
  }

  .social_img {
    width: 50px;
  }
}

@media (max-width: 1000px) {
  .logo__img {
    padding: 0 30px;
    height: 40px;
    width: 200px;
  }
  .faq-section .section-overlay {
    padding: 45px 0;
  }

  .faq-section .section-title {
    margin-left: 80px;
    font-size: 50px;
    margin-bottom: 35px;
  }

  .faq-question {
    padding: 30px 80px;
    font-size: 20px;
    min-height: 90px;
  }

  .faq-item.active .faq-answer {
    padding: 0 80px 30px;
  }

  .faq-answer p {
    padding-top: 20px;
    font-size: 17px;
  }

  .section-overlay {
    padding: 30px;
  }

  .section-title {
    margin-left: 50px;
    font-size: 50px;
  }

  .slider-container {
    max-width: 95%;
    padding: 20px 60px;
  }

  .slide {
    flex: 0 0 calc(50% - 15px);
  }

  .carousel-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-column {
    height: 450px;
  }

  .slider {
    height: 350px;
    gap: 20px;
  }

  .slide {
    flex: 0 0 calc(50% - 10px);
  }

  .slider-container {
    padding: 20px 60px;
  }

  .neon-button {
    font-size: 10px;
  }
  .top_title {
    font-size: 120px;
    /* margin-bottom: 15px;
    margin-left: 10px; */
  }

  .community {
    padding: 15px 20px;
  }

  .community_img {
    max-width: 300px;
  }

  .community_button {
    font-size: 14px;
  }

  .traders_item {
    padding: 15px;
  }

  .traders_item p {
    font-size: 16px;
  }

  .button-fqu {
    padding: 40px 80px;
  }

  .social_img {
    max-width: 50px;
  }

  .footer {
    display: none;
  }
  .footer__container {
    display: none;
  }
  .footer__brand {
    display: none;
  }

  .down {
    display: block;
  }

  .down_container {
    width: 90%;
    margin: 80px auto -90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .down__description {
    font-size: 34px;

    margin-bottom: 30px;
  }

  .down_social {
    display: flex;
    gap: 50px;
    margin-bottom: 20px;
  }
  .social_img {
    max-width: 100px;
  }
}

@media (max-width: 800px) {
  .particle {
    width: 2px;
    height: 2px;
  }

  .top_text {
    font-size: 20px;
    font-weight: 300;
  }

  .top_img-mob {
    display: flex;
    max-width: 90%;
  }

  .top {
    height: 100%;
    display: flex;
    align-items: flex-start;
    margin-top: 0;
  }

  .footer__background-spot {
    left: -60px;
    width: 300px;
    height: 300px;
  }

  .footer__particles {
    bottom: 50px;
    left: 50px;
    width: 120px;
    height: 120px;
  }

  .faq-section {
    margin: 60px auto;
  }

  .faq-section .section-title {
    margin-left: 40px;
    margin-top: 0;
    font-size: 40px;
    text-align: left;
    margin-bottom: 30px;
  }

  .faq-section .section-overlay {
    padding: 35px 0;
  }

  .faq-question {
    padding: 25px 40px;
    font-size: 18px;
    min-height: 85px;
  }

  .faq-item.active .faq-answer {
    padding: 0 40px 25px;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .faq-icon {
    margin-left: 20px;
  }

  .carousel-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .carousel-column {
    height: 400px;
  }

  .carousel-item {
    height: 180px;
    padding: 20px;
    margin: 10px;
  }

  .carousel-item p {
    font-size: 14px;
  }

  .section-title {
    margin-left: 20px;
    font-size: 40px;
    margin-bottom: 30px;
  }

  .slider {
    height: 400px;
    gap: 15px;
  }

  .slide {
    flex: 0 0 calc(50% - 7.5px);
  }

  .slider-container {
    padding: 15px 50px;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    padding: 15px 20px;
  }

  .header {
    padding: 10px 0;
  }

  .burger {
    display: flex;
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 20%;
    min-width: 250px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 80px 20px 20px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255, 227, 206, 0.1);
  }

  .nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    padding: 0;
    text-align: left;
  }

  .nav__item {
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 0.5s forwards;
  }

  .nav.active .nav__item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav.active .nav__item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .nav.active .nav__item:nth-child(3) {
    animation-delay: 0.3s;
  }

  .nav.active .nav__item:nth-child(4) {
    animation-delay: 0.4s;
  }

  .nav.active .nav__item:nth-child(5) {
    animation-delay: 0.5s;
  }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .nav__link {
    font-size: 18px;
    padding: 15px 10px;
    display: block;
    border-bottom: 1px solid rgba(255, 227, 206, 0.1);
    transition: all 0.3s ease;
  }

  .nav__link:hover {
    padding-left: 20px;
    background: rgba(255, 157, 65, 0.1);
  }

  .nav__link::after {
    display: none;
  }

  .burger.active .burger__line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #ff9d41;
  }

  .burger.active .burger__line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
  }

  .burger.active .burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #ff9d41;
  }

  .button-fqu {
    max-width: 100%;
    margin-top: 0;
    padding: 40px 130px;
    margin-bottom: 100px;
    font-size: 24px;
  }

  .logo__img {
    width: 180px;
    height: 30px;
  }

  .text-box {
    justify-content: center;
    align-items: center;
    max-width: 100%;
    text-align: center;
    /* margin-bottom: 50px; */
  }

  .top_img {
    display: none;
  }
  .neon-button {
    font-size: 16px;
  }

  .community {
    flex-direction: column;
  }

  .community_img {
    display: none;
  }

  .community_box {
    padding: 0;
    text-align: center;
  }

  .community_text {
    text-align: center;
  }

  .community_title {
    text-align: center;
  }

  .community-particle {
    width: 2px;
    height: 2px;
  }

  .slider {
    max-height: 300px;
  }

  .carousel-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .traders_item {
    flex-direction: column;
    align-items: center;
  }

  .traders_img {
    width: 100% !important;
    height: 100% !important;
  }

  .traders_text-box {
    max-width: 100%;
  }

  .trade-2 {
    flex-direction: column-reverse;
  }

  .footer {
    padding: 20px;
    max-height: 150px;
    align-items: center;
    margin-top: -100px;
  }

  .footer__description {
    font-size: 16px;
  }

  .slider-btn {
    width: 17px;
    height: 32px;
    padding: 0;
    border-radius: 0;
  }
}

@media (max-width: 700px) {
  .footer_img {
    width: 120px;
  }

  .footer {
    height: 100px;
  }

  .footer__description {
    font-size: 14px;
  }

  .social_img {
    margin-right: 0;
  }

  .footer__container {
    padding: 0;
  }

  .slide {
    width: 100px;
  }

  .button-fqu {
    max-width: 550px;
    font-size: 20px;
    padding: 40px 90px;
  }
}

@media (max-width: 600px) {
  .container_policy {
    padding: 100px 25px 0 50px;
  }

  .container_policy p {
    font-size: 12px;
  }

  .slider-container {
    padding: 20px 10px;
    margin: 20px auto;
  }

  .slider {
    gap: 5px;
  }

  .slide {
    /* Слайд занимает всю ширину */
    flex: 0 0 100%;
    opacity: 1; /* На телефоне лучше всегда показывать ярко */
    transform: scale(1); /* Убираем эффект уменьшения */
  }

  .section-title {
    font-size: 25px !important;
  }

  h3 {
    font-size: 25px;
  }

  .neon-button {
    font-size: 10px;
  }

  .community_title {
    font-size: 22px;
    /* te */
  }

  .community-particles {
    width: 100%;
  }

  .footer__description {
    font-size: 10px;
  }
  .footer_img {
    width: 80px;
  }
  .footer__social {
    gap: 5px;
  }

  .button-fqu {
    max-width: 500px;
    font-size: 18px;
    padding: 40px 8%;
  }
}

@media (max-width: 480px) {
  .container_policy {
    padding: 100px 18px 0 25px;
  }

  .footer_policy {
    padding: 0 10px;
  }

  .footer_policy a {
    font-size: 10px;
  }

  .particle {
    width: 1.5px;
    height: 1.5px;
  }

  .community-particle {
    width: 1.2px;
    height: 1.1px;
  }

  .footer__background-spot {
    left: -40px;
    width: 250px;
    height: 250px;
  }

  .footer__particles {
    bottom: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
  }

  .faq-section .section-title {
    font-size: 32px;
    margin-bottom: 25px;
    margin-left: 25px;
  }

  .faq-section .section-overlay {
    padding: 25px 0;
  }

  .faq-question {
    padding: 22px 25px;
    font-size: 16px;
    min-height: 80px;
  }

  .faq-item.active .faq-answer {
    padding: 0 25px 22px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-icon {
    width: 14px;
    height: 14px;
    margin-left: 15px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 0px;
  }

  .slider-container {
    padding: 10px 40px;
  }

  .slider {
    height: 400px;
  }

  .slide-text p {
    font-size: 14px;
  }

  .carousel-column {
    height: 450px;
  }

  .carousel-item {
    height: 250px;
    padding: 15px;
  }

  .combined-section {
    width: 95%;
    margin: 50px auto;
  }

  .section-overlay {
    padding: 20px;
  }

  .section-title {
    margin-left: 10px;
    font-size: 32px;
  }

  .slider {
    height: 450px;
  }

  .slide {
    flex: 0 0 100%;
  }

  .slider-container {
    padding: 10px 45px;
    margin-top: 0;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }

  .header__container {
    padding: 0 15px;
  }

  .logo__img {
    width: 150px;
    height: 30px;
    padding: 0 10px;
  }

  .nav {
    width: 70%;
    min-width: auto;
  }

  .button-fqu {
    padding: 20px 30px 20px;
    font-size: 12px;
    margin-bottom: 40px;
  }
  .logo__img {
    padding: 0;
    width: 110px;
  }

  .top_title {
    font-size: 100px;
    /* margin-bottom: 20px; */
  }

  .top_text {
    font-size: 16px;
  }

  .community {
    bottom: 60;
    max-height: 150%;
  }

  .community_text {
    font-size: 10px;
  }

  .traders_title {
    font-size: 70px;
  }

  .faq-section {
    margin-top: 0px;
    margin-bottom: 0;
  }

  .footer__brand {
    width: 50px;
  }

  .footer {
    max-width: 400px;
  }
  .footer__description {
    max-width: 150px;
  }
  .footer__social {
    margin-left: -70px;
  }

  .down__description {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .faq-section .section-title {
    font-size: 28px;
    margin-left: 20px;
  }

  .faq-question {
    padding: 20px 20px;
    font-size: 15px;
    min-height: 75px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .button-fqu {
    font-size: 10px;
  }

  .top_title {
    font-size: 60px;
    /* margin-bottom: 30px; */
  }

  .top_text {
    font-size: 16px;
    font-weight: 200;
  }

  .neon-button {
    font-size: 8px;
    padding: 10px;
  }
  .traders_title {
    font-size: 50px;
  }
  .footer__description {
    max-width: 130px;
  }
  .footer__social {
    margin-left: -120px;
  }
  .footer_img {
    max-width: 80px;
    margin-left: -20px;
  }
  .community_title {
    font-size: 16px;
  }
  .community_button {
    font-size: 10px;
    padding: 10px;
  }
  .section-title {
    font-size: 20px !important;
  }
  .down_title {
    font-size: 90px;
    margin-bottom: -10px;
  }
}
