/* Пример импорта шрифта (Google Fonts, локальные шрифты и т.д.) */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); */

@font-face {
    font-family: 'TT Firs Neue';
    src: url('../fonts/TTFirsNeue-Light.eot');
    src: local('TT Firs Neue Light'), local('TTFirsNeue-Light'),
        url('../fonts/TTFirsNeue-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TTFirsNeue-Light.woff2') format('woff2'),
        url('../fonts/TTFirsNeue-Light.woff') format('woff'),
        url('../fonts/TTFirsNeue-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('../fonts/TTFirsNeue-Regular.eot');
    src: local('TT Firs Neue Regular'), local('TTFirsNeue-Regular'),
        url('../fonts/TTFirsNeue-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TTFirsNeue-Regular.woff2') format('woff2'),
        url('../fonts/TTFirsNeue-Regular.woff') format('woff'),
        url('../fonts/TTFirsNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('../fonts/TTFirsNeue-BoldItalic.eot');
    src: local('TT Firs Neue Bold Italic'), local('TTFirsNeue-BoldItalic'),
        url('../fonts/TTFirsNeue-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TTFirsNeue-BoldItalic.woff2') format('woff2'),
        url('../fonts/TTFirsNeue-BoldItalic.woff') format('woff'),
        url('../fonts/TTFirsNeue-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('../fonts/TTFirsNeue-DemiBoldItalic.eot');
    src: local('TT Firs Neue DemiBold Italic'), local('TTFirsNeue-DemiBoldItalic'),
        url('../fonts/TTFirsNeue-DemiBoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TTFirsNeue-DemiBoldItalic.woff2') format('woff2'),
        url('../fonts/TTFirsNeue-DemiBoldItalic.woff') format('woff'),
        url('../fonts/TTFirsNeue-DemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500; /* Medium */
    font-style: normal;
}

@font-face {
  font-family: 'BebasNeue';
  src: url('../fonts/BebasNeue-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* Сброс стилей и базовые настройки */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Общие стили для тела */
html, body {
  width: 100%;
  height: 100%;
  font-family: 'Gilroy', 'TT Firs Neue', sans-serif; /* Замените на нужный вам шрифт */
  background-color: #000;  /* Чёрный фон по умолчанию */
  color: #fff;
  overflow-x: hidden;      /* Убираем горизонтальный скролл, если что-то выезжает */
  font-size: clamp(14px, 2.5vw, 18px);
  scroll-behavior: smooth;
}

/* Глобальные стили типографики для заголовков */
h3 {
  font-family: "TT Firs Neue", sans-serif;
}

body {
  padding-top: 70px; /* Чтобы контент не прятался под фиксированным хедером */
  padding-left: 30px;
}

/* Ссылки по умолчанию */
a {
  text-decoration: none;
  color: inherit;
}

/* Кнопки по умолчанию */
button {
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
}

/* Для Chrome, Edge, Opera, Safari */
::-webkit-scrollbar {
  width: 24px;              /* Сделал ОЧЕНЬ широким, можешь увеличить! */
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #e4b92e;      /* Ярко-жёлтый */
  border-radius: 0px !important;  /* Принудительно УБИРАЕМ скругления */
  margin: 0;
  min-height: 184px;
  /* Без border, чтобы был только прямоугольник */
  /* Можно добавить box-shadow если хочется "ребро" */
}

::-webkit-scrollbar-track {
  background: #000;
  border-radius: 0px !important;
}


/* ====== СТИЛИ HEADER ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: #000; /* Цвет шапки */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
}

/* Логотип в шапке */
.header__logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%; /* Круглая форма */
}

/* Правая часть хедера (соцсети + кнопка меню) */
.header__right {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

/* === НОВАЯ КНОПКА "КУПИТЬ $MORI" === */
.header__buy-btn {
    background-color: #ffd535;
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-right: 15px;
    height: 45px;
    font-weight: 600;
    font-family: 'TT Firs Neue';
  }



/* Блок иконок соцсетей */
.social-icons {
  display: flex;
  gap: 10px;
  margin-right: 20px;
}

/* Каждая иконка соцсети */
.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #444; /* Тёмно-серый фон */
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #fff; /* При наведении фон становится белым */
  transform: scale(1.1);  /* Лёгкое приближение */
}

.social-icon i {
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icon:hover i {
  color: #000; /* Делаем иконку чёрной при hover */
}

/* Кнопка-«бургер» для открытия меню */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle__bar {
  display: block;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

    .language-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 8px;
    font-family: inherit;
    margin-right: 8px;
}

/* ====== СТИЛИ БОКОВОГО МЕНЮ ====== */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px;  /* Начинаем за экраном справа */
  width: 300px;
  height: 100%;
  background-color: #080808; /* Тёмно-серый */
  transition: right 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.side-menu.open {
  right: 0; /* Когда добавим класс 'open' через JS, меню сдвигается */
}

/* Верхняя часть бокового меню (заголовок + кнопка закрыть) */
.side-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.side-menu__title {
  font-size: 20px;
  font-weight: bold;
}

.mobile-slider-wrapper {
            display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        margin-top: 300px;
  }

      .mobile-line {
        position: relative;
        width: 180%;
        height: 2px;
        background: linear-gradient(to right, transparent, yellow, transparent);
        margin-bottom: 30px;
    }
  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

.side-menu__close {
  font-size: 36px;
  line-height: 36px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Ссылки в боковом меню */
.side-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.side-menu__links li a {
  font-size: 18px;
  color: #fff;
  transition: color 0.2s ease;
}

.side-menu__links li a:hover {
  color: #e4b92e;
}

/* Нижняя часть бокового меню */
.side-menu__footer {
  margin-top: auto; /* Прижимает к низу */
}

.side-menu__footer p {
  margin-bottom: 15px;
  font-size: 14px;
  color: #fff;
}

/* Соцсети в футере бокового меню */
.side-menu__socials {
  display: flex;
  gap: 10px;
}

.side-menu__socials a i {
  font-size: 20px;
  opacity: 0.7; /* Немного прозрачные */
  transition: opacity 0.3s ease;
}

.side-menu__socials a:hover i {
  opacity: 1;
}

/* ====== HERO (первый экран) ====== */

#home {
  position: relative; 
  background-image: url("../files/Background1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: calc(100vh - 70px);  /* Высота экрана минус высота хедера */
  overflow: hidden;
}

.hero {
      display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;  /* Растягивается по всей высоте родительской секции (#home) */
  padding: 20px;
    }

/* Левая часть секции */
.hero__content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.super-png {
  width: 50%;
    pointer-events: auto;
    z-index: 999;
    user-select: none;
}
.contract-ton-label {
  display: none;
}
.contract-label {
  display: inline;
}

/* Tooltip абсолютно под картинкой */
.mori-tooltip {
  display: none;
    position: absolute;
    left: 20%;
    top: 100%;
    transform: translateX(-50%) translateY(12px);
    min-width: 260px;
    max-width: 360px;
    background: #18161b;
    color: #ffffff;
    padding: 1.4em 1.4em 1.1em 1.4em;
    border-radius: 1em;
    /* box-shadow: 0 4px 36px 0 #ffd700, 0 0 0 2px #ffd700 inset; */
    font-size: 1.08rem;
    font-weight: 450;
    text-align: left;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s;
    border: 1px solid #fff;
}

.mori-tooltip.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
  animation: moriTooltipIn .22s cubic-bezier(.37,1.41,.63,1.03);
}

@keyframes moriTooltipIn {
  from { opacity: 0;}
  to   { opacity: 1;}
}

/* Остальное по стилю MORI */
.mori-tooltip-title {
      font-size: 1.14rem;
    font-weight: 500;
    color: #939393;
    margin-bottom: .5em;
}
.mori-tooltip-accent {
  display: block;
  margin-top: 1em;
  font-size: 1.03rem;
  color: #ffd700;
  font-weight: 500;
  
}
.mori-tooltip a { color: #ffb366; text-decoration: underline dotted; }
.mori-tooltip a:hover { color: #fff; }



/* Дополнительная картинка в левой части */
.hero__left-image {
  max-width: 100%;
  height: auto;
  /* При необходимости добавьте отступы */
  margin-bottom: 20px;
}

.hero__title {
  font-family: "TT Firs Neue", sans-serif;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

.hero__subtitle {
  font-family: "TT Firs Neue", sans-serif;
  font-size: 2rem;
  line-height: 1.133;
  color: #fff;
  font-weight: 600;
  margin-top: -10px;
}

/* Кнопка "КУПИТЬ $MORI" */
.buy-button-wrap {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  font-family: 'TT Firs Neue';
      margin-top: 30px;
}

.btn-part {
      background-color: #e4b92e;
    color: #000;
    padding: 16px 24px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 60px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    transform: translateZ(0);
    font-feature-settings: "kern", "liga", "clig", "calt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: transform;
    backface-visibility: hidden;
}


.top-part {
  border-radius: 12px;
    justify-content: flex-start;
    padding-left: 32px;
    height: 70px;
}

.bottom-part {
  border-radius: 12px;
    font-size: 1.1rem;
    background-color: #19191ba8;
    color: #fff;
    border: 1px solid #ffffff3b;
    margin-top: 5px;
}

.btn-divider-line {
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
}

/* Адрес внутри второй кнопки */
.bottom-part .contract-label {
  font-size: 1rem;
  opacity: 1;
  font-weight: 200;
}

.bottom-part .contract-address {
  font-family: monospace;
  background: rgba(0, 0, 0, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
}

.bottom-part .copy-icon {
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.1);
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.bottom-part .copy-icon:hover {
  background: rgba(0, 0, 0, 0.2);
}

.contract-label {
  opacity: 1;
  margin-right: 4px;
}

.contract-box {
  display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.07);
    padding: 1px 10px;
    border-radius: 8px;
    margin-top: 5px;
    transition: background 0.3s ease;
}

.contract-address {
  font-family: monospace;
  background: rgba(0, 0, 0, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  direction: rtl;
  text-align: left;
}

.copy-icon {
  cursor: pointer;
    background: rgb(0 0 0 / 10%);
    padding: 3px 4px;
    border-radius: 6px;
    font-size: 0.1rem;
    transition: all 0.3s ease;
}

.copy-icon:hover {
  background: rgba(0, 0, 0, 0.2);
}

.copy-icon i {
  color: #000;
}

/* Crypto-box */
.crypto-box {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crypto-box__title {
  font-family: 'TT Firs Neue';
  font-size: 1.48rem;
  margin-bottom: 5px;
}

.crypto-box__address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ededed;
  border-radius: 6px;
  padding: 15px 10px;
  overflow-x: auto;
  box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.3);
}

.crypto-box__address span {
  white-space: nowrap;
  margin-right: 10px;
  font-size: 1.1rem;
  overflow: hidden;
  flex: 1;
  text-overflow: ellipsis;
  color: #000;
}

.crypto-box__copy {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  padding: 6px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.crypto-box__copy i {
  font-size: 1rem;
  transition: transform 0.2s ease;
  color: #000;
}

.crypto-box__copy:hover {
  background-color: #19191b;
  transform: scale(1.05);
}

.crypto-box__copy:hover i {
  transform: scale(1.1);
  color: #fff;
}

/* Правая часть: контейнер для трёх картинок */
    .hero__image {
      position: relative; 
      width: 50%;         /* Половина ширины экрана (можно менять) */
      min-height: 400px;  /* Чтоб контейнер не схлопывался */
      overflow: hidden;   /* Обрезаем «лишние» части картинки */
      perspective: 800px;  /* задаём перспективу */
    }
 /* Общий стиль для частей картинки */
    .image-part {
      position: absolute;
      transition: transform 0.3s ease;  /* плавная анимация */
      width: 100%;
      height: auto;
    }

 /* Общие стили для частей картинки */
    .hero__image .image-part {
      position: absolute;
      top: 0;
      left: 0;
      width: 108%;  /* Каждая часть растягивается по ширине контейнера */
      height: auto;
    }

    /* Индивидуальные смещения (корректируйте под свою графику) */
    .part1 {
      z-index: 1;
    }
    .part2 {
      z-index: 2;
      left: 10px;  /* сдвиг вправо */
      top: 0;
    }
    .part3 {
      z-index: 3;
      left: 20px;  /* ещё больше вправо */
    }

    .image-part.part1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 108%;  /* как у вас уже задано */
  height: auto;
  z-index: 1;
  /* Дополнительные inline-свойства, если нужно */
}

/* Оверлей, накладываемый поверх part1 */
.image-part.part1-overlay {
  position: absolute;
  top: 5px;      /* можно корректировать, чтобы точно совпадало */
  left: 0;     /* можно корректировать, чтобы точно совпадало */
  width: 108%; /* чтобы совпадало с part1, либо задайте другие размеры */
  height: auto;
  z-index: 2;  /* выше, чем у part1 */
  pointer-events: none; /* если нужно, чтобы клики проходили сквозь оверлей */
}

    .image-part.part2 {
       transition: transform 0.2s ease-out;
    }

    .image-part.part3 {
  position: absolute;
  /* Пример базового позиционирования: отрегулируйте, если нужно */
  left: 20px;
  top: -20px;
  width: 100%;
  height: auto;
  
  transition: transform 0.3s ease;  /* Плавное изменение */
  /* Точка опоры по центру (если нужно, можно изменить) */
  transform-origin: center;
}

.image-part.part4 {
  position: absolute;
  /* Пример базового позиционирования: отрегулируйте, если нужно */
  left: 20px;
  top: -20px;
  width: 100%;
  height: auto;
  z-index: 999;
  
  transition: transform 0.3s ease;  /* Плавное изменение */
  /* Точка опоры по центру (если нужно, можно изменить) */
  transform-origin: center;
}

.image-part.part5 {
  position: absolute;
  /* Пример базового позиционирования: отрегулируйте, если нужно */
  left: 20px;
  top: -20px;
  width: 100%;
  height: auto;
  z-index: 999;
  
  transition: transform 0.3s ease;  /* Плавное изменение */
  /* Точка опоры по центру (если нужно, можно изменить) */
  transform-origin: center;
}

/* Фоновый оверлей для левой картинки – он находится в секции home */
.hero__left-overlay {
  position: absolute; /* Абсолютное позиционирование относительно #home */
  top: 0;
  left: 0;
  width: 50%;         /* Занимает левую половину секции */
  height: 100%;       /* По всей высоте секции */
  z-index: 1;         /* Ниже контента и правой части */
  overflow: hidden;   /* Если изображение больше контейнера */
}

.hero__left-overlay img {
  width: 120%;
    height: 75%;
    object-fit: cover;
    margin-top: 700px;
    margin-left: -200px;
}

/* Пример контента, который должен быть поверх оверлея */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 50%;
  /* Остальные стили вашего контента */
}

/* Пример правой части секции, если она используется */
.hero__image {
  position: relative;
  z-index: 2;
  max-width: 50%;
  margin-left: auto;
  overflow: hidden;
  min-height: 400px;
  perspective: 800px;
}
/* Класс для переноса в мобильной версии */
.mobile-break {
  display: inline;
}

/* Родительская секция должна быть позиционирована относительно */
#home.hero {
  position: relative;
  /* Другие стили секции, например: */
  background-image: url("../pics/Background1.webp");
  background-size: cover;
  background-position: center;
  height: calc(100vh - 70px);
  overflow: hidden;
}

/* Контейнер для картинки, который позиционируется абсолютно внутри секции */
.bottom-right-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 900; /* Значение z-index подберите, чтобы картинка была поверх всего */
}

/* Стили для самой картинки */
.bottom-right-image img {
  max-width: 2200%;
    height: auto;
    transform: translateX(0px) translateY(150px);
}

.hero__image img,
.image-part {
  pointer-events: none;
}

.bottom-right-image img,
.bottom-right-image {
  pointer-events: none;
}

.newf {
  font-size: 1.1rem;
    color: #939393;
    margin-left: 550px;
}


/* ====== СЕКЦИЯ "ROADMAP" ====== */




.capital-section {
  padding: 100px 60px;
  background: #000;
  color: #fff;
  text-align: center;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: absolute;
  top: -60px; /* подними над картинками */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}


.slider-btn {
  background: none;
  border: none;
  color: #fcb813;
  font-size: 36px;
  cursor: pointer;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  background: #888;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  opacity: 0.5;
}

.slider-dots .active {
  opacity: 1;
}

.slider-wrapper {
  position: relative;
  overflow: visible; /* ключевой момент — убираем обрезку */
  padding-top: 80px; /* чтобы стрелки не налезали на картинки */
  margin-bottom: 40px; /* добавим воздуха вниз */

}

.slider-track {
  position: relative;
  height: 520px; /* или auto + min-height */
  
}

.slide-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 60px;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.slide-group.active {
  opacity: 1;
  transform: translateX(0%);
  pointer-events: auto;
  z-index: 1;
}

.slide-img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
}

.slide-group[data-group="2"] .slide-img {
  width: 520px;
  height: 520px;
}

.slide-group[data-group="1"] .wide {
  width: 1090px;
    height: 520px;
}

.step-numbers1 {
    position: absolute;
    font-size: 7.6rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -90px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numberss {
    position: absolute;
    font-size: 6.85rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -90px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbersss {
    position: absolute;
    font-size: 14.33rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -155px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}





.roadmap-section {
  width: 100%;
  padding: 100px 100px;
  background: #000;
  color: #fff;
  position: relative;
  z-index: 1;
  min-height: 1100px;
}

.roadmap-section::before {
    content: "";
    position: absolute;
    top: -500px;
    left: -0%;
    transform: translateX(-50%);
    width: 1800px;
    height: 1600px;
    background: radial-gradient(circle at center, rgb(255 215 0 / 4%) 34%, #00000000 70%);
    pointer-events: none;
    z-index: 0;
}

.glow-curve {
    position: absolute;
    left: -200px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(228, 185, 46, 0.15) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}



.glow-curve1234 {
    position: absolute;
    left: -200px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(228, 185, 46, 0.15) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.glow-curve2 {
    position: absolute;
    left: 100px;
    bottom: -290px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle at center, rgba(228, 185, 46, 0.15) 0%, transparent 70%);
    transform: rotate(287deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.glow-curve3 {
    position: absolute;
    left: -450px;
    bottom: 20px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle at center, rgb(228 185 46 / 13%) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.glow-curve4 {
    position: absolute;
    left: 200px;
    bottom: -250px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(228, 185, 46, 0.15) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.glow-curve5 {
    position: absolute;
    left: 200px;
    bottom: 10px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(228, 185, 46, 0.15) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.glow-curve6 {
    position: absolute;
    left: -200px;
    bottom: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(228, 185, 46, 0.15) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.glow-curve8 {
    position: absolute;
    left: -200px;
    bottom: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(228, 185, 46, 0.15) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.glow-curve9 {
    position: absolute;
    left: 1200px;
    bottom: 120px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at center, rgba(228, 185, 46, 0.15) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.glow-curve10 {
    position: absolute;
    left: 200px;
    bottom: 10px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(228, 185, 46, 0.15) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.glow-curve11 {
    position: absolute;
    left: -600px;
    bottom: 200px;
    width: 1800px;
    height: 600px;
    background: radial-gradient(circle at center, #e4b92e38 0%, transparent 70%);
    transform: rotate(358deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.glow-curve12 {
    position: absolute;
    left: -700px;
    bottom: 900px;
    width: 1800px;
    height: 800px;
    background: radial-gradient(circle at center, #e4b92e38 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.glow-curve13 {
    position: absolute;
    left: -400px;
    bottom: 1200px;
    width: 1800px;
    height: 800px;
    background: radial-gradient(circle at center, #e4b92e38 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

 .process-title {
      text-align: left;
    font-size: 48px;
    margin-bottom: 100px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #939393;
    margin-left: 100px;
    }

    .process-title2 {
  font-size: 1.5rem;
    margin-bottom: 140px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    font-weight: 500;
    margin-top: -80px;
    color: #939393;
    margin-left: 100px;
}




    .process-grid {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      min-height: 650px;
    }

    .step-block {
      position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 360px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    }

    .step-block::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100px;
    background-image: radial-gradient(#ff96002e 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.step-blocks::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100px;
    background-image: radial-gradient(#ff96002e 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.step-blockss::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100px;
    background-image: radial-gradient(#ff96002e 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}



    .step-blocks {
      position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 360px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    }

    .step-blocks h3 {
      color: #e4b92e;
    font-size: 3rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
    }

    .step-blocks p {
      font-size: 20px;
      color: #939393;
      line-height: 1.6;
      margin: 0;
    }

    .step-blockss {
      position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 360px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    }

    .step-blockss h3 {
      color: #e4b92e;
    font-size: 3rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
    }

    .step-blockss p {
      font-size: 20px;
      color: #939393;
      line-height: 1.6;
      margin: 0;
    }

    .step-block h3 {
      color: #e4b92e;
    font-size: 3rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
    }

    .step-block p {
      font-size: 20px;
      color: #939393;
      line-height: 1.6;
      margin: 0;
    }



   .slide-item {
  position: relative;
  display: inline-block;
}

.step-number {
  position: absolute;
    font-size: 8.43rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -105px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.main-img-1 {
  position: absolute;
  top: 10%;       /* 10% от верха экрана, можешь менять */
  left: 5%;       /* 5% от левого края, можешь менять */
  width: 120px;   /* или width: 12vw; для адаптивности */
  height: auto;   /* чтобы не тянуло */
  z-index: 2;
}

/* Вторая картинка */
.main-img-2 {
  position: absolute;
  bottom: 5%;     /* 5% от низа экрана */
  right: 8%;      /* 8% от правого края */
  width: 140px;
  height: auto;
  z-index: 2;
}


    .step-numbers {
    position: absolute;
    font-size: 7.6rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -102px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
    }

    .step-1 { top: 0; left: -220px; }
    .step-2 { top: 0px; right: 620px; }
    .step-3 { top: 0px; left: 650px; }
    .step-4 { top: 0px; right: -240px; }
    .step-5 { top: 329px; left: -220px; }
    .step-6 { top: 329px; right: 620px; }
    .step-7 { top: 329px; left: 650px; }
    .step-8 { top: 329px; right: -240px; }

    .steps-1 { top: -110px; left: -224px; }
    .steps-2 { top: -110px; left: 216px; }
    .steps-3 { top: -110px; left: 645px; }
    .steps-4 { top: -110px; left: 1075px; }
    .steps-5 { top: 223px; left: 15px; }
    .steps-6 { top: 223px; left: 455px; }
    .steps-7 { top: 223px; left: 883px; }
    .steps-8 { top: 223px; left: 1313px; }

    svg.connector {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
    }

    path {
      stroke: #e4b92e;
      stroke-dasharray: 6, 6;
      stroke-width: 2;
      fill: none;
      opacity: 0.5;
      animation: dash-animate 3s linear infinite;
    }

    @keyframes dash-animate {
      to {
        stroke-dashoffset: 16;
      }
    }
/* ====== СЕКЦИЯ "О  ТОКЕНЕ" ======== */

.about-token-section {
  background: #0b0b0b;
  padding: 100px 20px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: #FFA500;
  text-shadow: 0 0 10px #ff8000;
}

.token-card {
  background: linear-gradient(to bottom right, #1a1a1a, #121212);
  border: 1px solid rgba(255,165,0,0.1);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 40px;
  box-shadow: 0 0 40px rgba(255, 140, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.token-icon img {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 15px rgba(255, 165, 0, 0.4));
}

.token-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffa500;
}

.token-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ccc;
}

/* ====== Секция "Хочешь узнать"====== */

/* Список FAQ-блоков (вертикально) */
.faq-lists {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Расстояние между блоками */
  margin-top: -440px;
}

.faq-items {
  background-color: rgb(0 0 0);
    border-radius: 16px;
    padding: 40px 84px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    border-radius: 0 0 20px 20px;
}

/* При наведении блок становится чуть светлее */
.faq-items:hover {
  background-color: #000;
}



/* Верхняя строка (вопрос + иконка) */
.faq-questions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

/* Текст вопроса */
.faq-question-texts {
  font-size: 1.7rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
    z-index: 2;
}

/* Кружок с + или - */
.faq-toggle-circles {
  width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
}

.faq-toggle-circles:hover {
  background-color: #000; /* При наведении кружок чуть светлее */
}

/* Символ + или - */
.faq-toggle-symbols {
  font-size: 1.4rem; /* Размер знака */
  color: #fff;
  pointer-events: none;
}

/* Ответ (по умолчанию скрыт) */
.faq-answers {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease; /* 🐢 медленнее */
  margin-top: 10px;
  color: #ddd;
  line-height: 1.5;
  font-size: 1.4rem;
}

.faq-items:hover .faq-answers {
  max-height: 1270px;
}
.faq-toggle-symbols::before {
  content: "+";
  font-size: 1.4rem;
  color: #fff;
  pointer-events: none;
}

/* Когда наводим на faq-items — заменяем + на - */
.faq-items:hover .faq-toggle-symbols::before {
  content: "-";
}

.coin-peek {
  width: 670px;
  position: absolute;
  top: -20px;
    left: 18%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* При наведении — скрываем эту верхнюю картинку */
.faq-items:hover .coin-peek {
  opacity: 0;
}

.about__content0 {

}
/* ====== СЕКЦИЯ "О  МОРИАРТИ КАК О СОЗДАТЕЛЕ" ======== */

.section-about0 {
  width: 100%;
    background-color: #ffffff;
    padding: 10% 0;
    position: relative;
}

.section-about01 {
  width: 100%;
    background-color: #fbfbfd;
    padding: 10% 0;
    position: relative;
}

.tokenh4 {
        position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -105%);
    font-size: 17.8rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
    }


html[lang="en"] .tokenh4 {
    color: #000;
    text-transform: uppercase;
    transform: translate(px, 247px);
    font-size: 23.2rem;
    font-weight: 600;
    transform: translate(-48.7%, -74%);
}

.about__wrapper0 {
            max-width: 1600px;
        margin: 0 auto;
        background-color: #000000;
        border: 1px solid #000000;
        border-radius: 26px;
        padding: 40px;
        display: flex;
        gap: 20px;
        color: #313131;
        overflow: hidden;
    position: relative;
    margin-top: 100px;
 }

.about__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__title0 {
  font-family: "TT Firs Neue", sans-serif;
        font-size: 2rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 550px;
}

html[lang="en"] .about__title0 {
    font-size: 2rem;
  }

  .about__text0 {
    margin-bottom: 16px;
        line-height: 1.5;
        font-size: 1.1rem;
        color: #939393;
        margin-left: 550px;
 }

 .highlight-list {
  list-style: none;
    padding: 0;
    margin: 0;
    color: #939393;
    font-size: 1.1rem;
    margin-left: 550px;
}

.highlight-list li {
  position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #939393;
}

.highlight-list li::before {
  content: "•"; 
  position: absolute;
  left: 0.2em; /* сдвигаем маркер вправо, чтобы он не слипался с краем */
  top: 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
}

.coin--small {
         width: 20%;
    bottom: -10px;
    right: 63%;
    top: 34%;
    z-index: 1;
    position: absolute;
 }

 .coin--smalls {
             width: 670px;
    margin-left: -125px;
    margin-bottom: -900px;
    position: relative;
 }

/* Правая колонка для монет */
.about__images0 {
  position: relative;       /* Для абсолютного позиционирования монет */
  width: 200px;             /* Фиксированная ширина правой колонки */
  height: 200px;            /* Фиксированная высота правой колонки */
  overflow: visible;        /* Позволяет монетам выходить за пределы */
}



/* ====== СЕКЦИЯ "ТОКЕНОМИКА" ====== */

/* Секция с чёрным фоном */
.tokenomics-section {
  background-color: #000;
    background-image: url(../files/mori_smotrit.png);
    background-repeat: no-repeat;
    background-size: 70% auto;
    background-position: 0% 430px;
    padding: 250px 20px;
    color: #fff;
    font-family: 'BebasNeue', sans-serif;
    position: relative;
}

/* Контейнер содержимого (по центру, если нужно) */
.tokenomics-section__content {
  max-width: 1200px; /* Ширина для центрирования */
  margin: 0 auto;    /* Горизонтальное центрирование */
  text-align: center; /* Для выравнивания кнопки и подписи по центру */
  transform: scale(1.5);
}

/* Контейнер для 5 блоков (проценты + текст) */
.tokenomics-items {
  display: flex;
  flex-wrap: wrap;               /* На случай, если экран узкий, блоки переносятся */
  justify-content: center;       /* Центрируем по горизонтали */
  gap: 40px;                     /* Расстояние между блоками */
  margin-bottom: 40px;           /* Отступ снизу перед кнопкой */
}

/* Каждый отдельный блок */
.tokenomics-item {
    position: relative;
    width: 150px;
    padding: 20px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
    z-index: 12;
}

/* Заголовок с процентом */
/* Градиент с тёмно-серого к чёрному */
.tokenomics-item__title {
  font-size: 4rem;
    margin-bottom: 8px;
    background: linear-gradient(to bottom, #5b5a5a 10%, #000000 100%);
    -webkit-background-clip: text;
    color: #0000003d;
    font-family: 'BebasNeue', sans-serif;
    font-weight: 600;
}

/* Описание (под процентом) */
.tokenomics-item__desc {
  font-size: 0.8rem;
    margin: 0 auto;
    text-align: center;
    font-family: 'TT Firs Neue';
    color: #939393;
    transition: color 0.3s ease; /* плавное изменение цвета */
}

/* Эффект при наведении: появляется светло-серый бокс */
.tokenomics-item:hover {
  background-color: rgba(255, 255, 255, 0.07);
    transform: scale(1.2);
  }

  .tokenomics-item:hover .tokenomics-item__desc {
  color: #e4b92e; /* или другой желаемый цвет */
}

    /* Эффект при наведении: появляется светло-серый бокс */
.tokenomics-item__desc:hover {
  color: #e4b92e;
}

/* Кнопка "Проверить контракт" */
.tokenomics-btn {
      display: inline-block;
    padding: 14px 24px;
    background-color: #ffffff36;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-bottom: 30px;
    font-family: 'TT Firs Neue';
    margin-top: 260px;
    margin-left: -400px;
}

/* Подпись снизу */
.tokenomics-footer {
  font-size: 0.9rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-family: 'TT Firs Neue';
    color: #939393;
    margin-left: 10px;
}

.tokenh3 {
  text-transform: uppercase;
    color: #000;
    white-space: nowrap;
    font-size: 14vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(330px);
}

html[lang="en"] .tokenh3 {
  color: #000;
    text-transform: uppercase;
    transform: translate(4px, 358px);
    font-size: 16.5rem;
    font-weight: 600;
}
.tokenomics-svg-wrapper {
  position: absolute;
  top: 250px;
    right: 90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  opacity: 1;
  transform: scale(1);
}

.tokenomics-containers {
  position: relative;
}

.my-lines-svg {
  position: absolute;
    top: 215px;
    right: 100px;
    z-index: 10;
}

.my-lines-svg1 {
  position: absolute;
    top: 178px;
    right: 90px;
    z-index: 10;
}

.my-lines-svg2 {
  position: absolute;
  top: 200px;
    right: 320px;
    z-index: 10;
}

.my-lines-svg3 {
  position: absolute;
  top: 300px;
    right: 50px;
    z-index: 10;
    transform: rotate(356deg);
}

.my-lines-svg4 {
  position: absolute;
    top: 230px;
    right: 65px;
    z-index: 10;
    transform: rotate(73deg);
    
}

.my-lines-text {
  position: absolute;
    top: 2px;
    right: -240px;
    z-index: 10;
}

.my-lines-text1 {
  position: absolute;
    top: 141px;
    right: 20px;
    z-index: 10;
}

.my-lines-text2 {
  position: absolute;
    top: 125px;
    right: 75px;
    z-index: 10;
}

.my-lines-text3 {
  position: absolute;
    top: 135px;
    right: 23px;
    z-index: 10;
}

html[lang="en"] .my-lines-text3 {
    position: absolute;
    top: 135px;
    right: -55px;
    z-index: 10;
  }

.my-lines-text4 {
  position: absolute;
    top: 145px;
    right: -350px;
    z-index: 10;
}




.tokenomics-center-coin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px; /* или подгони под нужный размер */
  height: 80px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.tokenomics-svg-wrapper.animate {
  opacity: 1;
  transform: scale(1);
}

/* Начальное состояние — сектор не виден */
.tokenomics-pie circle {
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.2s ease;
}

/* Анимация по каждому сектору */
.tokenomics-svg-wrapper.animate circle:nth-child(1) {
  stroke-dashoffset: 0; /* 40% */
}
.tokenomics-svg-wrapper.animate circle:nth-child(2) {
  stroke-dashoffset: -40; /* 20% после 40 */
}
.tokenomics-svg-wrapper.animate circle:nth-child(3) {
  stroke-dashoffset: -60; /* 20% после 60 */
}
.tokenomics-svg-wrapper.animate circle:nth-child(4) {
  stroke-dashoffset: -80; /* 10% после 80 */
}
.tokenomics-svg-wrapper.animate circle:nth-child(5) {
  stroke-dashoffset: -90; /* 10% после 90 */
}

.tokenomics-label {
  position: absolute;
  font-family: 'BebasNeue', sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}

.label-1 { top: 40px; left: 150px; }  /* 40% */
.label-2 { top: 10px; left: 90px; }   /* 20% */
.label-3 { top: 70px; left: 0px; }    /* 20% */
.label-4 { top: 180px; left: 40px; }  /* 10% */
.label-5 { top: 180px; left: 140px; } /* 10% */

.tokenomics-pie {
  width: 100%;
  height: 100%;
  border-radius: 50%; /* ← ЭТО ДЕЛАЕТ КРУГ! */
  overflow: hidden;
}



/*======= Роадмап (адаптирован под 3 крупных чекпоинта) ======== */
.roadmap-container {
    width: 100%;
    height: 35vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
}

.road_text {
  margin-top: 270px;
}

html[lang="en"] .road_text {
    margin-top: 180px;
  }

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #000000a3 60%, transparent);
}

.fade-right {
    right: 0;
    width: 150px;
    background: linear-gradient(to left, rgb(0 0 0) 10%, rgb(0 0 0 / 988%) 10%, rgb(0 0 0 / 108%) 40%, #00000000 100%);
}

.slider {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  position: relative;
}

.line-track {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 9999px;
  background: linear-gradient(to right, transparent 0%, #444 20%, #444 80%, transparent 100%);
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.6;
}

.animated-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 2;
  transform: translateY(-50%);
  border-radius: 2px;
  background: linear-gradient(to right, transparent, #FFD700, #FFD700aa, transparent);
  transition: width 1s ease-in-out;
}

.checkpoints {
  display: flex;
  transition: transform 1s ease-in-out;
  position: relative;
  z-index: 3;
}

.checkpoint {
  width: calc(100vw / 3);
  max-width: 480px;
  text-align: center;
  padding: 30px 30px;
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
}

.checkpoint h4 {
  font-size: 35px;
  margin-bottom: 16px;
  color: #777;
  transition: color 0.3s;
  white-space: nowrap;
  font-family: 'TT Firs Neue', sans-serif;
}

.checkpoint .dot {
  width: 18px;
  height: 18px;
  background: #555;
  margin: 0 auto 12px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.checkpoint p {
  font-size: 20px;
  color: #aaa;
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  font-family: 'TT Firs Neue', sans-serif;
  text-align: left;
}

.roadmap-title {
  text-align: left;
  font-family: 'TT Firs Neue', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #e4b92e;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  
}

.coming-soon-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 220px; /* Можно увеличить */
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

.coming-soon-text {
  font-size: 56px;
  font-family: 'Bebas Neue', 'Montserrat', Arial, sans-serif;
  color: #fff;
  letter-spacing: 4px;
  opacity: 0;
  transform: translateY(60px);
  animation: comingUp 1.6s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}


.checkpoint.active p {
  opacity: 1;
  transform: translateY(0);
}

.checkpoint.active .dot {
  background: #fff;
  box-shadow: 0 0 8px #FFD700;
}

.checkpoint.active h4 {
  color: #fff;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  /* left: 12px; // для left, right: 12px; для right — используем ниже */
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;   /* <-- это выравнивает стрелку по центру */
  font-size: 28px;           /* размер стрелки */
  background: rgba(0,0,0,0.7);
  color: #ffd700;            /* жёлтый, если надо! */
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border: 1px solid #ffd70022; /* тонкая жёлтая рамка, если нужно */
}
.nav-arrow.left  { left: 12px; }
.nav-arrow.right { right: 12px; }

.arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* на весь кружок */
  height: 100%;
  font-size: 28px;
  /* Можно добавить жирность, если нужно: */
  font-weight: bold;
}

.nav-arrow:hover {
  border-color: #FFD700;
  color: #FFD700;
  box-shadow: 0 0 6px #FFD70055;
}


/* ====== СЕКЦИЯ "КАК КУПИТЬ?" ====== */
.section-buy {
  width: 100%;
  padding: 100px 20px;
  background: #000;
  color: #fff;
  position: relative;
}
.section-buy::before {
    content: "";
    position: absolute;
    top: -800px;
    left: -0%;
    transform: translateX(-50%);
    width: 1800px;
    height: 1600px;
    background: radial-gradient(circle at center, rgb(255 215 0 / 4%) 34%, #00000000 70%);
    pointer-events: none;
    z-index: 0;
}

.buy__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.buy__title {
  font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    font-weight: 500;
}

.buy__blocks {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.buy__blockss {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.buy-block {
  flex: 1;
    background-color: rgb(255 255 255 / 6%);
    border: 1px solid #939393;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-blocks {
  flex: 1;
    background-color: rgb(255 255 255 / 6%);
    /* border: 1px solid #939393; */
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.buy-blocks::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100px;
    background-image: radial-gradient(#ff96002e 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

/* Эффект "выезда" вверх при наведении */
.buy-blocks:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Эффект "выезда" вверх при наведении */
.buy-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.buy-block__number {
  width: 58px;
        height: 58px;
        background-color: #ffffff;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 1.4rem;
        color: #000;
}

.buy-block p {
  font-size: 1rem;
  line-height: 1.4;
}

.buy-block__numbers {
  width: 98px;
    height: 58px;
    background-color: #0e0e0e;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #939393;
}

.buy-blocks p {
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Кнопка по центру */
.buy__button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

    .btn-buy-dex {
        display: inline-block;
        padding: 14px 24px;
        background-color: #e4b92e30;
        color: #000;
        font-size: 1.6rem;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-bottom: 30px;
        font-family: 'TT Firs Neue';
        height: 100px;
        width: 25%;
    }

/* Декоративные монеты – контейнеры */
.faq__coins1 {
  position: absolute;
    top: 10px;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 400px;
}

/* Монеты слева */
.faq__coins--left1 {
  left: 20px;
}

/* Монеты справа */
.faq__coins--right1 {
      right: 55px;
    margin-top: -40px;
    z-index: 2;
}

/* Стили для изображений монет */
.faq__coins1 img {
  max-width: 250px;
    height: auto;
    display: block;
    opacity: 1;
}

/* ====== "FAQ" ====== */

.faq-section {
  width: 100%;
  background-color: #000;
  padding: 60px 20px;
  box-sizing: border-box;
  color: #939393; /* Общий цвет текста (при желании можно #939393) */
  font-family: Arial, sans-serif; /* Замените на ваш шрифт */
  position: relative;
  box-shadow: none;
}
.footmori img {
    display: block;
}

/* Псевдоэлемент для "glow" наверху */
.faq-section::before {
  content: "";
    position: absolute;
    top: 0px;
    left: -0%;
    transform: translateX(-50%);
    width: 1800px;
    height: 1600px;
    background: radial-gradient(circle at center, rgb(255 215 0 / 4%) 34%, #00000000 70%);
    pointer-events: none;
    z-index: 0;
}

/* Контейнер для ограничения ширины */
.faq-container {
     max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -1560px;
}

/* Заголовок секции (слева) */
.faq-title {
  text-align: left;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #fff; /* Или #939393, если хотите менее контрастно */
}

/* Список FAQ-блоков (вертикально) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Расстояние между блоками */
}

/* Каждый блок FAQ */
.faq-item {
  background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 84px;
    transition: background-color 0.3s ease;
    overflow: hidden;
  /* Можно добавить тень при желании: */
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.3); */
}

/* При наведении блок становится чуть светлее */
.faq-item:hover {
  background-color: rgba(255,255,255,0.08);
}

/* Верхняя строка (вопрос + иконка) */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

/* Текст вопроса */
.faq-question-text {
  font-size: 1.7rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
}

/* Кружок с + или - */
.faq-toggle-circle {
  width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
}

.faq-toggle-circle:hover {
  background-color: #333; /* При наведении кружок чуть светлее */
}

/* Символ + или - */
.faq-toggle-symbol {
  font-size: 1.4rem; /* Размер знака */
  color: #fff;
  pointer-events: none;
}

/* Ответ (по умолчанию скрыт) */
.faq-answer {
  max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 1.4rem;
}

/* Когда блок FAQ активен (JS добавляет класс .active) */
.faq-item.active .faq-answer {
  max-height: 270px; /* Достаточно, чтобы уместился текст */
}

/* При активном блоке меняем символ + на - */
.faq-item.active .faq-toggle-symbol::before {
  content: "-";
}

/* Прячем +, если нужно */
.faq-item.active .faq-toggle-symbol {
  /* Пусто, если хотим заменить сам символ, либо используем псевдоэлемент */
}
/* Декоративные монеты – контейнеры */
.faq__coins {
  position: absolute;
    top: -20px;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 400px;
}

/* Монеты слева */
.faq__coins--left {
  left: 20px;
}

/* Монеты справа */
.faq__coins--right {
  right: 40px;
}

/* Стили для изображений монет */
.faq__coins img {
  max-width: 250px;
    height: auto;
    display: block;
    opacity: 1;
}

.faq__coins123 img {
  max-width: 250px;
    height: auto;
    display: block;
    opacity: 1;
    transform: translateY(70px);
}




/* Можно через псевдоэлементы, например:
.faq-toggle-symbol::before {
  content: "+";
}
.faq-item.active .faq-toggle-symbol::before {
  content: "-";
}
*/

/* ====== СЕКЦИЯ "СООБЩЕСТВО" ====== */
.section-community {
      width: 100%;
    padding: 130px 20px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #fff;
}

/* Обёртка с максимальной шириной */
.community__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Сначала всё вертикально, 
                             иконки ниже будут флекс-расположены */
  gap: 20px;
}

/* Заголовок */
.community__title {
  font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    font-weight: 500;
}

/* Подзаголовок (мелкий текст под заголовком) */
.community__subtitle {
  font-size: 1rem;
  text-align: left;
  margin-bottom: 20px;
  opacity: 0.8; /* Чуть менее яркий, при желании */
      margin-top: -30px;
}

/* Контейнер с иконками соцсетей */
.community__icons {
  display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 50px;                     /* Расстояние между блоками */
}

/* Каждый блок с иконкой и текстом */
.community__icon-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  /* Убираем hover-эффект с контейнера */
  transition: none;
}

/* Эффект при наведении: лёгкое приближение */
.community__icon-block:hover {
  transform: scale(1.05);
}

/* Сами иконки: увеличиваем их размер и добавляем hover-анимацию */
.community__icon {
  width: 80px;  /* Было 60px, теперь чуть больше */
  height: auto;
  transition: transform 0.3s ease;
}

.community__icon:hover {
  transform: scale(1.05);
}

/* Текст под иконкой */
.community__icon-small {
  font-size: 0.9rem;
  opacity: 0.9;
}

.community__icon-big {
  font-size: 1.1rem;
  font-weight: 600;
}

.tokenh31 {
  
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    font-size: 13vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(150px);
    margin-left: -16px;
}

html[lang="en"] .tokenh31 {
  color: #ffffff;
    text-transform: uppercase;
    transform: translate(-30px, 257px);
    font-size: 17.7rem;
    font-weight: 600;
}

/* ====== Кап ====== */
.mori-reward-info-desktop {
  background: #0e0e0e;
  padding: 30px;
  border-radius: 16px;
  color: #fff;
  margin-top: -40px;
  margin-bottom: 60px;
  max-width: 900px;
  font-size: 1.05rem;
  line-height: 1.6;
  display: block;
}

.message-bubble-desktop {
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 22px;
  border-radius: 18px 18px 18px 4px;
  margin: 15px 0;
  max-width: 520px;
  transform: rotate(-1deg);
}

.message-text-desktop {
  font-style: italic;
  color: #ccc;
  margin: 0;
}




.reward-amount {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  font-family: 'Gilroy', sans-serif;
  white-space: nowrap;
}


.reward-card {
  position: relative;
  max-width: 500px;
  width: 100%;
  overflow: visible; /* ← вот она, магия */
  margin: 0 70px;
}

.reward-slide-img {
  width: 110%;
    border-radius: 40px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    height: 600px;
}


.mori-reward-info-mobile {
  background: #0e0e0e;
  padding: 24px;
  border-radius: 40px;
  width: 640px;
  height: 680px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.reward-img {
  height: 720px;
  object-fit: contain;
  width: 1000px;
}

/* Навигация */
.slider-controls {
  position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
  background: none;
  color: #e4b92e;
  font-size: 2.4rem;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #555;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #e4b92e;
}


.mori-reward-info-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 230px;
    height: 200px;
    background-image: radial-gradient(#ff96001f 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.mori-reward-info-mobile::after {
    content: "";
    position: absolute;
    top: 480px;
    right: 410px;
    width: 230px;
    height: 200px;
    background-image: radial-gradient(#ff96001f 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}



.mori-reward-info-mobile .highlight {
  color: #e4b92e;
  font-weight: 500;
}





.mori-reward-info-mobile .highlight {
  color: #e4b92e;
  font-weight: 500;
}





  .mori-reward-info-mobile .highlight {
    color: #e4b92e;
    font-weight: 500;
  }

  .mori-reward-info-mobile p {
    margin-bottom: 10px;
    font-size: 1.5rem;
    margin-top: 10px;
    margin-left: 40px;
  }

  .message-bubble {
  background: rgba(255, 255, 255, 0.05);
    border-radius: 20px 20px 20px 5px;
    padding: 14px 18px;
    max-width: 90%;
    margin: 20px 0 30px;
    position: relative;
    font-size: 0.95rem;
    font-style: italic;
    color: #ccc;
    margin-left: 40px;
}

.message-bubble::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 12px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 8px solid rgba(255, 255, 255, 0.05);
  border-bottom: 8px solid transparent;
}

.mori-reward-info-mobile .mori-message {
  background: rgba(0, 0, 0, 0.4);
    border-left: 3px solid #e4b92e;
    padding: 12px 14px;
    margin: 12px 0;
    font-style: italic;
    /* transform: rotate(-1.5deg); */
    border-radius: 10px;
    font-size: 1.3rem;
    position: relative;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.05);
    width: 1230px;
    /* margin-top: 20px; */
    margin-left: 40px;
}


/* ====== ФУТЕР ====== */
/* ====== ФУТЕР ====== */
.footer {
  background: linear-gradient(135deg, #000, #000000);
    color: #fff;
    padding: 50px 20px;
}

.footer__wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer__left {
  flex: 1 1 500px;
}

.footer__contacts-title {
          font-size: 2rem;
        margin-bottom: 15px;
        color: #f5f5f5;
}

.footer__contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
}

.footer__contacts-list li {
  margin-bottom: 10px;
}

.footer__contacts-list a {
  color: #e4b92e;
        text-decoration: none;
        transition: 0.3s;
}

.footer__contacts-list a:hover {
  color: #e4b92e;
}

.footer__disclaimer {
  margin-top: 20px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 1.1rem;
        max-width: 500px;
}

.footer__right img {
  width: 660px;
        
        margin-top: -200px;
        margin-right: -100px;
}

.footer__contacts-list.horizontal {
  display: flex;
  
  gap: 20px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.footer__contacts-list.horizontal li a {
  color: #ffd535;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer__contacts-list.horizontal li a:hover {
  opacity: 0.8;
}

.language-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 8px;
  font-family: inherit;
  margin-right: 20px;
}

.lang-btn.active {
  color: #ffffff;
  text-shadow: 0 0 5px #ffd535;
}

.lang-btn {
  background: none;
  border: none;
  color: #ffd535;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.3s, opacity 0.3s;
}

.lang-btn:hover {
  opacity: 0.8;
}

.lang-divider {
  color: #fff;
  opacity: 0.3;
  font-size: 16px;
  user-select: none;
}





@media (min-width: 1200px) and (max-width: 1399px) {

  /* Для Chrome, Edge, Opera, Safari */
::-webkit-scrollbar {
  width: 17px;              /* Сделал ОЧЕНЬ широким, можешь увеличить! */
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #e4b92e;      /* Ярко-жёлтый */
  border-radius: 0px !important;  /* Принудительно УБИРАЕМ скругления */
  margin: 0;
  min-height: 164px;
  /* Без border, чтобы был только прямоугольник */
  /* Можно добавить box-shadow если хочется "ребро" */
}

::-webkit-scrollbar-track {
  background: #000;
  border-radius: 0px !important;
}
      h3.hero__title {
  font-family: "TT Firs Neue", sans-serif;
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .3rem;
}

    .tokenh3 {
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
        font-size: 14vw;
        font-weight: bold;
        text-align: center;
        line-height: 1;
        transform: translateY(210px);
    }

        .tokenh31 {
        text-transform: uppercase;
        color: #ffffff;
        white-space: nowrap;
        font-size: 13vw;
        font-weight: bold;
        text-align: center;
        line-height: 1;
        transform: translateY(140px);
        margin-left: -25px;
    }

        html[lang="en"] .tokenh3 {
        color: #000;
        text-transform: uppercase;
        transform: translate(4px, 218px);
        font-size: 14.5vw;
        text-align: center;
        font-weight: 600;
    }
.main-img-1 {
    position: absolute;
    top: 53%;
    left: -7%;
    width: 60%;
    height: auto;
    z-index: 2;
}
    .tokenomics-btn {
        display: inline-block;
        padding: 14px 24px;
        background-color: #ffffff26;
        color: #000;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-bottom: 30px;
        font-family: 'TT Firs Neue';
        margin-top: 320px;
        margin-left: -280px;
        transform: translateY(-90px);
    }

    .token-line-label3 {
        font-size: 8px;
    }


.tokenomics-footer {
    font-size: 0.7rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-family: 'TT Firs Neue';
    color: #939393;
    transform: translateY(-70px);
}

.roadmap-title {
    text-align: center;
    font-family: 'TT Firs Neue', sans-serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: #e4b92e;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transform: translateY(-120px);
}

        .coming_soon {
        font-size: 60px;
        margin-top: -60px;
        text-align: center;
    }

            .mobile-line {
        position: relative;
        width: 280%;
        height: 2px;
        background: linear-gradient(to right, transparent, yellow, transparent);
        margin-bottom: 130px;
    }

    .roadmap-container {
    width: 100%;
    height: 55vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
}

.faq__coins--right1 {
    right: 55px;
    margin-top: -40px;
    z-index: 2;
    max-width: 150px;
}

.btn-buy-dex {
    display: inline-block;
    padding: 14px 24px;
    background-color: #e4b92e30;
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-bottom: 30px;
    font-family: 'TT Firs Neue';
    height: 100px;
    width: 25%;
}

.faq__coins1 img {
    max-width: 200px;
    height: auto;
    display: block;
    opacity: 1;
}

.faq__coins--left1 {
    left: 70px;
}

.faq-container {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        margin-top: -1330px;
    }

    .community__subtitle {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
    margin-top: -30px;
    color: #000;
}

.community__title {
    font-size: 1.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    font-weight: 500;
    color: #000;
    text-align: center;
}

.community__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -30px;
}

.community__icon-big {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.community__icon-small {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #000;
}

.section-community {
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #fff;
}

.community__title {
    font-size: 1.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    font-weight: 500;
    color: #000;
    text-align: center;
    z-index: 2;
}

.footer__wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

html[lang="en"] .tokenh31 {
    
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    font-size: 15.5vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(150px);
    margin-left: -22px;
}

.community__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.footer__disclaimer {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    max-width: 500px;
}

    .footer__contacts-list li a {
        color: #e4b92e;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

.footer__right img {
    width: 460px;
    margin-top: -200px;
    margin-right: 50px;
}

.footer__contacts-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer__contacts-list li a {
    color: #e4b92e;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer__disclaimer {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem
18px
;
    max-width: 500px;
}

.faq-question-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 1.1rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 35px 84px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
}

.faq__coins img {
    max-width: 150px;
    height: auto;
    display: block;
    opacity: 1;
}

.faq__coins--right {
    right: 180px;
}

.faq__coins {
    position: absolute;
    top: 60px;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 400px;
}

.faq__coins123 img {
    display: none;
}


.tokenomics-svg-wrapper {
    position: absolute;
    top: 250px;
    right: 190px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 1;
    transform: scale(1);
}

.my-lines-text3 {
        position: absolute;
        top: -146px;
        right: -33px;
        z-index: 10;
    }

.my-lines-text2 {
        position: absolute;
        top: 100px;
        right: 120px;
        z-index: 10;
    }

    .my-lines-svg3 {
        position: absolute;
        top: 275px;
        right: 186px;
        z-index: 10;
        transform: rotate(356deg);
    }

    .my-lines-svg2 {
        position: absolute;
        top: 170px;
        right: 430px;
        z-index: 10;
    }

    .my-lines-svg2 {
        position: absolute;
        top: 173px;
        right: 430px;
        z-index: 10;
    }

.my-lines-svg1 {
        position: absolute;
        top: 198px;
        right: 245px;
        z-index: 10;
    }
    .token-line-label2 {
      font-size: 8px;
    }

.my-lines-text1 {
        position: absolute;
        top: 158px;
        right: 176px;
        z-index: 10;
    }

.my-lines-svg {
        position: absolute;
        top: 243px;
        right: 260px;
        z-index: 10;
    }

        .my-lines-text {
        position: absolute;
        top: 284px;
        right: 25px;
        z-index: 10;
    }

    .token-line-label1 {
      font-size: 8px;
    }

.my-lines-svg4 {
        position: absolute;
        top: 240px;
        right: 225px;
        z-index: 10;
        transform: rotate(73deg);
    }

    html[lang="en"] .my-lines-text3 {
    position: absolute;
    top: -146px;
    right: -32px;
    z-index: 10;
}

.token-line-label4 {
  font-size: 8px;
}

.my-lines-text4 {
        position: absolute;
        top: 155px;
        right: -180px;
        z-index: 10;
    }

    .token-line-label5 {
      font-size: 8px;
    }

.hero__image {
    position: relative;
        width: 100%;
        min-height: 500px;
        overflow: hidden;
        transform: translate(70px, 50px) scale(1.6);
}

.slide-img {
    width: 420px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

.step-number {
    position: absolute;
    font-size: 6.8rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -95px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbers {
    position: absolute;
    font-size: 6.1rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -92px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}


.about__title0 {
        font-family: "TT Firs Neue", sans-serif;
        font-size: 1.5rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 470px;
    }

.about__text0 {
        margin-bottom: 16px;
        line-height: 1.5;
        font-size: 0.8rem;
        color: #939393;
        margin-left: 470px;
    }
    .header__buy-btn {
        background-color: #e4b92e;
        color: #000;
        border: none;
        border-radius: 6px;
        padding: 8px 16px;
        font-size: 1rem;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-right: 15px;
        height: 45px;
        font-weight: 600;
        font-family: 'TT Firs Neue';
        opacity: 0.2;
    }

    .social-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: #19191b;
        border-radius: 12px;
        transition: all 0.3s ease;
    }



.about__wrapper0 {
        max-width: 900px;
        margin: 0 auto;
        background-color: #000000;
        border: 1px solid #000000;
        border-radius: 26px;
        padding: 40px;
        display: flex;
        gap: 20px;
        color: #313131;
        overflow: hidden;
        position: relative;
        margin-top: 100px;
        border-radius: 20px 20px 0 0;
    }

    .faq-items {
        background-color: rgb(0 0 0);
        border-radius: 16px;
        padding: 40px 84px;
        transition: background-color 0.3s ease;
        overflow: hidden;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        border-radius: 0 0 20px 20px;
    }

    .faq-lists {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: -280px;
    }
    .tokenh4 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50.2%, -200%);
        font-size: 10rem;
        opacity: 1;
        pointer-events: none;
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
    }

    html[lang="en"] .tokenh4 {
    color: #000;
    text-transform: uppercase;
    transform: translate(px, 247px);
    font-size: 15rem;
    font-weight: 600;
    transform: translate(-49%, -144%);
}

p.hero__subtitle {
  font-family: "TT Firs Neue", sans-serif;
    font-size: 2.2rem;
    line-height: 1.133;
    color: #fff;
    white-space: nowrap;
    font-weight: 600;
    margin-top: -10px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

.header__logo img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 5px;
    margin-left: 10px;
}

.hero__image img {
  width: 190%;
        height: auto;
        margin-right: -100px;
        margin-top: 120px;
}

.hero__content {
  margin-top: -140px;
        transform: translateX(70px);
}

    .crypto-box {
    background-color: hsl(240 5.9% 90%);
    border-radius: 15px;
    padding: 20px;
    
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

  .hero__title {
    font-size: 3.5rem;
  }
  .hero {
    padding: 0 60px;
  }

      .about__image0 {
        width: 70px;
        margin-left: -125px;
        margin-bottom: -900px;
        position: relative;
        margin-top: -160px;
        z-index: 1;
    }

    .about__image0 img {
        width: 55vh;
        margin-top: 100px;
        margin-left: 95px;
    }
        .about__title0 {
        font-family: "TT Firs Neue", sans-serif;
        font-size: 1.2rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 410px;
        overflow-wrap: break-word;
    }

    .about__text0 {
        margin-bottom: 16px;
        line-height: 1.5;
        font-size: 0.9rem;
        color: #939393;
        margin-left: 410px;
    }

    .faq-items {
        background-color: rgb(0 0 0);
        border-radius: 16px;
        padding: 40px 35px;
        transition: background-color 0.3s ease;
        overflow: hidden;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        border-radius: 0 0 20px 20px;
    }
    .faq-question-texts {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
    z-index: 2;
}

.coin--smalls {
        width: 510px;
        margin-left: -105px;
        margin-bottom: -810px;
        position: relative;
        transform: translateY(-160px);
    }

    .tokenomics-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tokenomics-item {
    position: relative;
    width: 130px;
    padding: 20px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
    z-index: 12;
}
.tokenomics-item:hover {
    background-color: rgba(255, 255, 255, 0.07);
    transform: scale(1.1);
}
.item__title {
    font-size: 3rem;
    margin-bottom: 8px;
    background: linear-gradient(to bottom, #5b5a5a 10%, #000000 100%);
    -webkit-background-clip: text;
    color: #0000003d;
    font-family: 'BebasNeue', sans-serif;
    font-weight: 600;
}

.item__desc {
    font-size: 0.7rem;
    margin: 0 auto;
    text-align: center;
    font-family: 'TT Firs Neue';
    color: #939393;
    transition: color 0.3s ease;
}

    .tokenomics-svg-wrapper {
        position: absolute;
        top: 270px;
        right: 250px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        opacity: 1;
        transform: scale(1);
    }
}

@media (min-width: 1400px) and (max-width: 1919px) {

    /* Для Chrome, Edge, Opera, Safari */
::-webkit-scrollbar {
  width: 17px;              /* Сделал ОЧЕНЬ широким, можешь увеличить! */
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #e4b92e;      /* Ярко-жёлтый */
  border-radius: 0px !important;  /* Принудительно УБИРАЕМ скругления */
  margin: 0;
  min-height: 164px;
  /* Без border, чтобы был только прямоугольник */
  /* Можно добавить box-shadow если хочется "ребро" */
}

::-webkit-scrollbar-track {
  background: #000;
  border-radius: 0px !important;
}
      h3.hero__title {
  font-family: "TT Firs Neue", sans-serif;
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .3rem;
}

    .tokenh3 {
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
        font-size: 14vw;
        font-weight: bold;
        text-align: center;
        line-height: 1;
        transform: translateY(280px);
    }

        .tokenh31 {
        text-transform: uppercase;
        color: #ffffff;
        white-space: nowrap;
        font-size: 13vw;
        font-weight: bold;
        text-align: center;
        line-height: 1;
        transform: translateY(140px);
        margin-left: -25px;
    }

        html[lang="en"] .tokenh3 {
        color: #000;
        text-transform: uppercase;
        transform: translate(4px, 288px);
        font-size: 14.5vw;
        text-align: center;
        font-weight: 600;
    }
.main-img-1 {
    position: absolute;
    top: 53%;
    left: -7%;
    width: 60%;
    height: auto;
    z-index: 2;
}
    .tokenomics-btn {
        display: inline-block;
        padding: 14px 24px;
        background-color: #ffffff26;
        color: #000;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-bottom: 30px;
        font-family: 'TT Firs Neue';
        margin-top: 320px;
        transform: translate(10%, -80%);
    }

    .token-line-label3 {
        font-size: 8px;
    }


.tokenomics-footer {
    font-size: 0.7rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-family: 'TT Firs Neue';
    color: #939393;
    transform: translateY(-70px);
}

.roadmap-title {
    text-align: center;
    font-family: 'TT Firs Neue', sans-serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: #e4b92e;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transform: translateY(-120px);
}

        .coming_soon {
        font-size: 60px;
        margin-top: -60px;
        text-align: center;
    }

            .mobile-line {
        position: relative;
        width: 280%;
        height: 2px;
        background: linear-gradient(to right, transparent, yellow, transparent);
        margin-bottom: 130px;
    }

    .roadmap-container {
    width: 100%;
    height: 55vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
}

.faq__coins--right1 {
    right: 55px;
    margin-top: -40px;
    z-index: 2;
    max-width: 150px;
}

.btn-buy-dex {
    display: inline-block;
    padding: 14px 24px;
    background-color: #e4b92e30;
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-bottom: 30px;
    font-family: 'TT Firs Neue';
    height: 100px;
    width: 25%;
}

.faq__coins1 img {
    max-width: 200px;
    height: auto;
    display: block;
    opacity: 1;
}

.faq__coins--left1 {
    left: 70px;
}

    .faq-container {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        margin-top: -1330px;
    }

    .community__subtitle {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
    margin-top: -30px;
    color: #000;
}

.community__title {
    font-size: 1.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    font-weight: 500;
    color: #000;
    text-align: center;
}

.community__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -30px;
}

.community__icon-big {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.community__icon-small {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #000;
}

.section-community {
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #fff;
}

.community__title {
    font-size: 1.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    font-weight: 500;
    color: #000;
    text-align: center;
    z-index: 2;
}

.footer__wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

html[lang="en"] .tokenh31 {
    
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    font-size: 15.5vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(150px);
    margin-left: -22px;
}

.community__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.footer__disclaimer {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    max-width: 500px;
}

    .footer__contacts-list li a {
        color: #e4b92e;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

.footer__right img {
    width: 460px;
    margin-top: -200px;
    margin-right: 50px;
}

.footer__contacts-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer__contacts-list li a {
    color: #e4b92e;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer__disclaimer {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem
18px
;
    max-width: 500px;
}

.faq-question-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 1.1rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 35px 84px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
}

.faq__coins img {
    max-width: 150px;
    height: auto;
    display: block;
    opacity: 1;
}

.faq__coins--right {
    right: 180px;
}

.faq__coins {
    position: absolute;
    top: 60px;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 400px;
}

.faq__coins123 img {
    display: none;
}


.tokenomics-svg-wrapper {
    position: absolute;
    top: 250px;
    right: 190px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 1;
    transform: scale(1);
}

.my-lines-text3 {
        position: absolute;
        top: -146px;
        right: -33px;
        z-index: 10;
    }

.my-lines-text2 {
        position: absolute;
        top: 100px;
        right: 120px;
        z-index: 10;
    }

    .my-lines-svg3 {
        position: absolute;
        top: 275px;
        right: 186px;
        z-index: 10;
        transform: rotate(356deg);
    }

    .my-lines-svg2 {
        position: absolute;
        top: 170px;
        right: 430px;
        z-index: 10;
    }

    .my-lines-svg2 {
        position: absolute;
        top: 173px;
        right: 430px;
        z-index: 10;
    }

.my-lines-svg1 {
        position: absolute;
        top: 198px;
        right: 245px;
        z-index: 10;
    }
    .token-line-label2 {
      font-size: 8px;
    }

.my-lines-text1 {
        position: absolute;
        top: 158px;
        right: 176px;
        z-index: 10;
    }

.my-lines-svg {
        position: absolute;
        top: 243px;
        right: 260px;
        z-index: 10;
    }

        .my-lines-text {
        position: absolute;
        top: 284px;
        right: 25px;
        z-index: 10;
    }

    .token-line-label1 {
      font-size: 8px;
    }

.my-lines-svg4 {
        position: absolute;
        top: 240px;
        right: 225px;
        z-index: 10;
        transform: rotate(73deg);
    }

    html[lang="en"] .my-lines-text3 {
    position: absolute;
    top: -146px;
    right: -32px;
    z-index: 10;
}

.token-line-label4 {
  font-size: 8px;
}

.my-lines-text4 {
        position: absolute;
        top: 155px;
        right: -180px;
        z-index: 10;
    }

    .token-line-label5 {
      font-size: 8px;
    }

.hero__image {
    position: relative;
        width: 100%;
        min-height: 500px;
        overflow: hidden;
        transform: translate(70px, 50px) scale(1.6);
}

.slide-img {
    width: 420px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

.step-number {
    position: absolute;
    font-size: 6.8rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -95px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbers {
    position: absolute;
    font-size: 6.1rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -92px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}


.about__title0 {
        font-family: "TT Firs Neue", sans-serif;
        font-size: 1.5rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 470px;
    }

.about__text0 {
        margin-bottom: 16px;
        line-height: 1.5;
        font-size: 0.8rem;
        color: #939393;
        margin-left: 470px;
    }
    .header__buy-btn {
        background-color: #e4b92e;
        color: #000;
        border: none;
        border-radius: 6px;
        padding: 8px 16px;
        font-size: 1rem;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-right: 15px;
        height: 45px;
        font-weight: 600;
        font-family: 'TT Firs Neue';
        opacity: 0.2;
    }

    .social-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: #19191b;
        border-radius: 12px;
        transition: all 0.3s ease;
    }



.about__wrapper0 {
        max-width: 900px;
        margin: 0 auto;
        background-color: #000000;
        border: 1px solid #000000;
        border-radius: 26px;
        padding: 40px;
        display: flex;
        gap: 20px;
        color: #313131;
        overflow: hidden;
        position: relative;
        margin-top: 100px;
        border-radius: 20px 20px 0 0;
    }

    .faq-items {
        background-color: rgb(0 0 0);
        border-radius: 16px;
        padding: 40px 84px;
        transition: background-color 0.3s ease;
        overflow: hidden;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        border-radius: 0 0 20px 20px;
    }

    .faq-lists {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: -390px;
    }
    .tokenh4 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50.2%, -200%);
        font-size: 10rem;
        opacity: 1;
        pointer-events: none;
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
    }

    html[lang="en"] .tokenh4 {
    color: #000;
    text-transform: uppercase;
    transform: translate(px, 247px);
    font-size: 15rem;
    font-weight: 600;
    transform: translate(-49%, -144%);
}

p.hero__subtitle {
  font-family: "TT Firs Neue", sans-serif;
    font-size: 2.2rem;
    line-height: 1.133;
    color: #fff;
    white-space: nowrap;
    font-weight: 600;
    margin-top: -10px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

.header__logo img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 5px;
    margin-left: 10px;
}

.hero__image img {
  width: 190%;
        height: auto;
        margin-right: -100px;
        margin-top: 120px;
}

.hero__content {
  margin-top: -140px;
        transform: translateX(70px);
}

    .crypto-box {
    background-color: hsl(240 5.9% 90%);
    border-radius: 15px;
    padding: 20px;
    
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

  .hero__title {
    font-size: 3.5rem;
  }
  .hero {
    padding: 0 60px;
  }

      .about__image0 {
        width: 70px;
        margin-left: -125px;
        margin-bottom: -900px;
        position: relative;
        margin-top: -160px;
        z-index: 1;
    }

    .about__image0 img {
        width: 50vh;
        margin-top: 100px;
        margin-left: 85px;
    }
        .about__title0 {
        font-family: "TT Firs Neue", sans-serif;
        font-size: 1.2rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 410px;
        overflow-wrap: break-word;
    }

    .about__text0 {
        margin-bottom: 16px;
        line-height: 1.5;
        font-size: 0.9rem;
        color: #939393;
        margin-left: 410px;
    }

    .faq-items {
        background-color: rgb(0 0 0);
        border-radius: 16px;
        padding: 40px 35px;
        transition: background-color 0.3s ease;
        overflow: hidden;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        border-radius: 0 0 20px 20px;
    }
    .faq-question-texts {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
    z-index: 2;
}

.coin--smalls {
        width: 510px;
        margin-left: -105px;
        margin-bottom: -810px;
        position: relative;
        transform: translateY(-160px);
    }

    .tokenomics-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tokenomics-item {
    position: relative;
    width: 130px;
    padding: 20px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
    z-index: 12;
}
.tokenomics-item:hover {
    background-color: rgba(255, 255, 255, 0.07);
    transform: scale(1.1);
}
.item__title {
    font-size: 3rem;
    margin-bottom: 8px;
    background: linear-gradient(to bottom, #5b5a5a 10%, #000000 100%);
    -webkit-background-clip: text;
    color: #0000003d;
    font-family: 'BebasNeue', sans-serif;
    font-weight: 600;
}

.item__desc {
    font-size: 0.7rem;
    margin: 0 auto;
    text-align: center;
    font-family: 'TT Firs Neue';
    color: #939393;
    transition: color 0.3s ease;
}

    .tokenomics-svg-wrapper {
        position: absolute;
        top: 270px;
        right: 250px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        opacity: 1;
        transform: scale(1);
    }
}

/* 4K MONITORS (от 1920px) */
@media (min-width: 1920px) {
  h3.hero__title {
  font-family: "TT Firs Neue", sans-serif;
    font-size: 3.6rem;
    text-transform: none !important;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .3rem;

}

.community__icon1 {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.community__icon-small1 {
    font-size: 1rem;
    opacity: 0.9;
    margin-left: 15px;
}

.community__icon-big1 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-left: 10px;
    }

    .community__icon_you_ru {
        width: 100px;
        height: auto;
        transition: transform 0.3s ease;
        transform: translateY(-1px);
    }

    .community__icon-big_you_ru {
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(10px);
}

    .community__icon-small_you_ru {
    font-size: 0.9rem;
    opacity: 0.9;
    transform: translateY(10px);
}

.about__wrapper0 {
    max-width: 1600px;
    margin: 0 auto;
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 26px;
    padding: 40px;
    display: flex;
    gap: 20px;
    color: #313131;
    overflow: hidden;
    position: relative;
    margin-top: 100px;
    border-radius: 20px 20px 0 0;
}



    .main-img-1 {
        position: absolute;
        top: 60%;
        left: -7%;
        width: 60%;
        height: auto;
        z-index: 2;
    }

    

.tokenh3 {
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
    font-size: 14vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(310px);
}

html[lang="en"] .tokenh3 {
    color: #000;
    text-transform: uppercase;
    transform: translate(4px, 318px);
    font-size: 16.5rem;
    font-weight: 600;
}

html[lang="en"] .my-lines-text3 {
        position: absolute;
        top: -140px;
        right: -125px;
        z-index: 10;
    }

    html[lang="en"] .my-lines-text {
        position: absolute;
        top: 339px;
        right: -16px;
        z-index: 10;
    }

    .tokenh4 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50.2%, -145%);
        font-size: 17.8rem;
        opacity: 1;
        pointer-events: none;
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
    }

        html[lang="en"] .tokenh4 {
        color: #000;
        text-transform: uppercase;
        transform: translate(px, 247px);
        font-size: 26.5rem;
        font-weight: 600;
        transform: translate(-48.7%, -116%);
    }

            .tokenomics-svg-wrapper {
        position: absolute;
        top: 280px;
        right: 150px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        opacity: 1;
        transform: scale(1);
    }

        .my-lines-svg4 {
        position: absolute;
        top: 255px;
        right: 125px;
        z-index: 10;
        transform: rotate(73deg);
    }

            .my-lines-text4 {
        position: absolute;
        top: 175px;
        right: -300px;
        z-index: 10;
    }

    .my-lines-svg2 {
        position: absolute;
        top: 200px;
        right: 380px;
        z-index: 10;
    }

    .my-lines-text2 {
        position: absolute;
        top: 130px;
        right: 90px;
        z-index: 10;
    }

    .my-lines-svg1 {
        position: absolute;
        top: 219px;
        right: 140px;
        z-index: 10;
    }

        .my-lines-text1 {
        position: absolute;
        top: 181px;
        right: 70px;
        z-index: 10;
    }

        .my-lines-svg {
        position: absolute;
        top: 247px;
        right: 180px;
        z-index: 10;
    }

    .my-lines-text {
        position: absolute;
        top: 340px;
        right: -19px;
        z-index: 10;
    }

        .my-lines-svg3 {
        position: absolute;
        top: 330px;
        right: 126px;
        z-index: 10;
        transform: rotate(356deg);
    }

        .my-lines-text3 {
        position: absolute;
        top: -140px;
        right: -115px;
        z-index: 10;
    }

    .about__text0 {
        margin-bottom: 16px;
        line-height: 1.5;
        font-size: 1.2rem;
        color: #939393;
        margin-left: 550px;
    }

.tokenomics-btn {
        display: inline-block;
        padding: 14px 24px;
        background-color: #ffffff36;
        color: #000;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-bottom: 30px;
        font-family: 'TT Firs Neue';
        margin-top: 250px;
        margin-left: -410px;
        transform: translateY(30px);
    }

.tokenomics-footer {
        font-size: 0.9rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        opacity: 0.9;
        font-family: 'TT Firs Neue';
        color: #939393;
        /* margin-left: 10px; */
        margin-top: 50px;
    }

    .roadmap-title {
    text-align: center;
    font-family: 'TT Firs Neue', sans-serif;
    font-size: 4.6rem;
    font-weight: 600;
    color: #e4b92e;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    /* margin-left: 210px; */
}

.coming_soon {
  font-size: 80px;
    margin-top: 00px;
    text-align: center;
}

        .about__image0 {
        width: 70px;
        margin-left: -125px;
        margin-bottom: -900px;
        position: relative;
        margin-top: -160px;
        z-index: 1;
    }

    .about__image0 img {
        width: 55vh;
        margin-top: 80px;
        margin-left: 75px;
    }


.roadmap-container {
    width: 100%;
    height: 55vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
}

html[lang="en"] .tokenh31 {
    color: #ffffff;
    text-transform: uppercase;
    transform: translate(-30px, 217px);
    font-size: 17.7rem;
    font-weight: 600;
}

.mobile-line {
    position: relative;
    width: 480%;
    height: 2px;
    background: linear-gradient(to right, transparent, yellow, transparent);
    margin-bottom: 130px;
}



        .faq-lists {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: -420px;
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

.header__logo img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 5px;
    margin-left: 10px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #19191b;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-right: 20px;
}

p.hero__subtitle {
  font-family: "TT Firs Neue", sans-serif;
    font-size: 2rem;
  font-weight: 500;
    line-height: 1.133;
    color: #fff;
    white-space: nowrap;
  
    margin-top: -10px;
}

.hero__content {
        margin-top: -300px !important;
        transform: translateX(190px) !important;
    }

html[lang="en"] .hero__content {
  margin-top: -200px;
  transform: translateX(190px);
}

html[lang="en"] h3.hero__title {
  font-size: 3.6rem;
  text-transform: none !important;
}

html[lang="en"] p.hero__subtitle {
  font-size: 2rem;
  font-weight: 500;
}

.hero__image {
  position: relative;
    width: 150%;
    min-height: 700px;
    overflow: hidden;
    transform: translate(70px, 50px) scale(1.7);
}

.hero__image img {
  width: 200%;
  height: auto;
  margin-right: -100px;
}
  .hero__title {
    font-size: 4rem;
  }
  .hero__subtitle {
    font-size: 1.6rem;
  }
  .hero__container {
    padding: 90px 0;
  }

.about__wrapper {
            max-width: 1700px;
        margin: 0 auto;
        background-color: #fbfbfd;
        border: 1px solid #000000;
        border-radius: 26px;
        padding: 40px;
        display: flex;
        gap: 20px;
        color: #313131;
 }


 .about__title {
    font-family: "TT Firs Neue", sans-serif;
        font-size: 2.5rem;
        line-height: 1.133;
        color: #000;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
 }


 .about__text {
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 1.4rem;
 }

 .coin--big {
    width: 140px;
    top: -10px;
    left: -60px;
}

.buy__wrapper {
  max-width: 1700px;
}
.buy__title {
    font-size: 2.6rem;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        font-weight: 500;
        margin-left: 50px;
        color: #939393;
        font-family: 'TT Firs Neue', sans-serif;
        font-weight: 600;
}
.buy-block {
  height: 250px;
}

.coming-soon-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 220px; /* Можно увеличить */
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

.coming-soon-text {
  font-size: 56px;
  font-family: 'Bebas Neue', 'Montserrat', Arial, sans-serif;
  color: #fff;
  letter-spacing: 4px;
  opacity: 0;
  transform: translateY(60px);
  animation: comingUp 1.6s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}

@keyframes comingUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.buy__blocks {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    margin-left: 50px;
}
.buy-block__number {
    width: 58px;
        height: 58px;
  }
  .buy-block p {
    font-size: 1.5rem;
        line-height: 1.4;
        color: #939393;
}
    .btn-buy-dex {
        display: inline-block;
        padding: 14px 24px;
        background-color: #e4b92e30;
        color: #000;
        font-size: 1.6rem;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-bottom: 30px;
        font-family: 'TT Firs Neue';
        height: 100px;
        width: 25%;
    }
.community__wrapper {
  max-width: 1600px;
}
    .community__title {
        font-family: "TT Firs Neue", sans-serif;
        font-size: 2.7rem;
        line-height: 1.133;
        color: #000000;
        white-space: nowrap;
        font-weight: 600;
        margin-top: -10px;
        text-align: center;
        z-index: 3;
    }
.community__subtitle {
    font-size: 1.5rem;
        text-align: center;
        margin-bottom: 20px;
        opacity: 0.8;
        margin-top: -30px;
        color: #000;
}
.community__icon {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}
.community__icon-small {
    font-size: 1.5rem;
    opacity: 0.9;
    color: #000;
    margin-left: -50px;
}
.community__icon-big {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-left: -40px;
}

.buy-block__number {
    width: 58px;
        height: 58px;
        background-color: #ffffff;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 1.4rem;
        color: #000;
}
.header__buy-btn {
        background-color: #e4b92e;
        color: #000;
        border: none;
        border-radius: 6px;
        padding: 8px 16px;
        font-size: 1rem;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-right: 15px;
        height: 45px;
        font-weight: 600;
        font-family: 'TT Firs Neue';
        
    }
.btn {
    height: 80px;
}
.crypto-box__title {
    font-size: 1.4rem;
        margin-bottom: 5px;
        font-family: 'TT Firs Neue';
        font-weight: 500;
        margin-top: 5px;
        color: #000;
        font-weight: 600;
    }
}
.footer__contacts-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 500;
}
.footer__contacts-list li a {
    color: #e4b92e;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.image-part.part1-overlay {
    margin-left: -263px !important;
 }
}

/* EXTRA LARGE SCREENS (от 1440px) */

@media (min-width: 1400px) and (max-width: 1919px) {
  /* Для Chrome, Edge, Opera, Safari */
::-webkit-scrollbar {
  width: 17px;              /* Сделал ОЧЕНЬ широким, можешь увеличить! */
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #e4b92e;      /* Ярко-жёлтый */
  border-radius: 0px !important;  /* Принудительно УБИРАЕМ скругления */
  margin: 0;
  min-height: 164px;
  /* Без border, чтобы был только прямоугольник */
  /* Можно добавить box-shadow если хочется "ребро" */
}

::-webkit-scrollbar-track {
  background: #000;
  border-radius: 0px !important;
}
      h3.hero__title {
  font-family: "TT Firs Neue", sans-serif;
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .3rem;
}

    .tokenh3 {
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
        font-size: 14vw;
        font-weight: bold;
        text-align: center;
        line-height: 1;
        transform: translateY(210px);
    }

        .tokenh31 {
        text-transform: uppercase;
        color: #ffffff;
        white-space: nowrap;
        font-size: 13vw;
        font-weight: bold;
        text-align: center;
        line-height: 1;
        transform: translateY(140px);
        margin-left: -25px;
    }

        html[lang="en"] .tokenh3 {
        color: #000;
        text-transform: uppercase;
        transform: translate(4px, 218px);
        font-size: 14.5vw;
        text-align: center;
        font-weight: 600;
    }
.main-img-1 {
    position: absolute;
    top: 53%;
    left: -7%;
    width: 60%;
    height: auto;
    z-index: 2;
}
    .tokenomics-btn {
        display: inline-block;
        padding: 14px 24px;
        background-color: #ffffff26;
        color: #000;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-bottom: 30px;
        font-family: 'TT Firs Neue';
        margin-top: 320px;
        margin-left: -280px;
        transform: translateY(-90px);
    }

    .token-line-label3 {
        font-size: 8px;
    }


.tokenomics-footer {
    font-size: 0.7rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-family: 'TT Firs Neue';
    color: #939393;
    transform: translateY(-70px);
}

.roadmap-title {
    text-align: center;
    font-family: 'TT Firs Neue', sans-serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: #e4b92e;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transform: translateY(-120px);
}

        .coming_soon {
        font-size: 60px;
        margin-top: -60px;
        text-align: center;
    }

            .mobile-line {
        position: relative;
        width: 280%;
        height: 2px;
        background: linear-gradient(to right, transparent, yellow, transparent);
        margin-bottom: 130px;
    }

    .roadmap-container {
    width: 100%;
    height: 55vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
}

.faq__coins--right1 {
    right: 55px;
    margin-top: -40px;
    z-index: 2;
    max-width: 150px;
}

.btn-buy-dex {
    display: inline-block;
    padding: 14px 24px;
    background-color: #e4b92e30;
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-bottom: 30px;
    font-family: 'TT Firs Neue';
    height: 100px;
    width: 25%;
}

.faq__coins1 img {
    max-width: 200px;
    height: auto;
    display: block;
    opacity: 1;
}

.faq__coins--left1 {
    left: 70px;
}

.faq-container {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        margin-top: -1330px;
    }

    .community__subtitle {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
    margin-top: -30px;
    color: #000;
}

.community__title {
    font-size: 1.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    font-weight: 500;
    color: #000;
    text-align: center;
}

.community__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -30px;
}

.community__icon-big {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.community__icon-small {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #000;
}

.section-community {
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #fff;
}

.community__title {
    font-size: 1.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    font-weight: 500;
    color: #000;
    text-align: center;
    z-index: 2;
}

.footer__wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

html[lang="en"] .tokenh31 {
    
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    font-size: 15.5vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(150px);
    margin-left: -22px;
}

.community__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.footer__disclaimer {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    max-width: 500px;
}

    .footer__contacts-list li a {
        color: #e4b92e;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

.footer__right img {
    width: 460px;
    margin-top: -200px;
    margin-right: 50px;
}

.footer__contacts-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer__contacts-list li a {
    color: #e4b92e;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer__disclaimer {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem
18px
;
    max-width: 500px;
}

.faq-question-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 1.1rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 35px 84px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
}

.faq__coins img {
    max-width: 150px;
    height: auto;
    display: block;
    opacity: 1;
}

.faq__coins--right {
    right: 180px;
}

.faq__coins {
    position: absolute;
    top: 60px;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 400px;
}

.faq__coins123 img {
    display: none;
}


.tokenomics-svg-wrapper {
    position: absolute;
    top: 250px;
    right: 190px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 1;
    transform: scale(1);
}

.my-lines-text3 {
        position: absolute;
        top: -146px;
        right: -33px;
        z-index: 10;
    }

.my-lines-text2 {
        position: absolute;
        top: 100px;
        right: 120px;
        z-index: 10;
    }

    .my-lines-svg3 {
        position: absolute;
        top: 275px;
        right: 186px;
        z-index: 10;
        transform: rotate(356deg);
    }

    .my-lines-svg2 {
        position: absolute;
        top: 170px;
        right: 430px;
        z-index: 10;
    }

    .my-lines-svg2 {
        position: absolute;
        top: 173px;
        right: 430px;
        z-index: 10;
    }

.my-lines-svg1 {
        position: absolute;
        top: 198px;
        right: 245px;
        z-index: 10;
    }
    .token-line-label2 {
      font-size: 8px;
    }

.my-lines-text1 {
        position: absolute;
        top: 158px;
        right: 176px;
        z-index: 10;
    }

.my-lines-svg {
        position: absolute;
        top: 243px;
        right: 260px;
        z-index: 10;
    }

        .my-lines-text {
        position: absolute;
        top: 284px;
        right: 25px;
        z-index: 10;
    }

    .token-line-label1 {
      font-size: 8px;
    }

.my-lines-svg4 {
        position: absolute;
        top: 240px;
        right: 225px;
        z-index: 10;
        transform: rotate(73deg);
    }

    html[lang="en"] .my-lines-text3 {
    position: absolute;
    top: -146px;
    right: -32px;
    z-index: 10;
}

.token-line-label4 {
  font-size: 8px;
}

.my-lines-text4 {
        position: absolute;
        top: 155px;
        right: -180px;
        z-index: 10;
    }

    .token-line-label5 {
      font-size: 8px;
    }

.hero__image {
    position: relative;
        width: 100%;
        min-height: 500px;
        overflow: hidden;
        transform: translate(70px, 50px) scale(1.6);
}

.slide-img {
    width: 420px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

.step-number {
    position: absolute;
    font-size: 6.8rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -95px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbers {
    position: absolute;
    font-size: 6.1rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -92px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}


.about__title0 {
        font-family: "TT Firs Neue", sans-serif;
        font-size: 1.5rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 470px;
    }

.about__text0 {
        margin-bottom: 16px;
        line-height: 1.5;
        font-size: 0.8rem;
        color: #939393;
        margin-left: 470px;
    }
    .header__buy-btn {
        background-color: #e4b92e;
        color: #000;
        border: none;
        border-radius: 6px;
        padding: 8px 16px;
        font-size: 1rem;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-right: 15px;
        height: 45px;
        font-weight: 600;
        font-family: 'TT Firs Neue';
        opacity: 0.2;
    }

    .social-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: #19191b;
        border-radius: 12px;
        transition: all 0.3s ease;
    }



.about__wrapper0 {
        max-width: 900px;
        margin: 0 auto;
        background-color: #000000;
        border: 1px solid #000000;
        border-radius: 26px;
        padding: 40px;
        display: flex;
        gap: 20px;
        color: #313131;
        overflow: hidden;
        position: relative;
        margin-top: 100px;
        border-radius: 20px 20px 0 0;
    }

    .faq-items {
        background-color: rgb(0 0 0);
        border-radius: 16px;
        padding: 40px 84px;
        transition: background-color 0.3s ease;
        overflow: hidden;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        border-radius: 0 0 20px 20px;
    }

    .faq-lists {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: -280px;
    }
    .tokenh4 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50.2%, -200%);
        font-size: 10rem;
        opacity: 1;
        pointer-events: none;
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
    }

    html[lang="en"] .tokenh4 {
    color: #000;
    text-transform: uppercase;
    transform: translate(px, 247px);
    font-size: 15rem;
    font-weight: 600;
    transform: translate(-49%, -144%);
}

p.hero__subtitle {
  font-family: "TT Firs Neue", sans-serif;
    font-size: 2.2rem;
    line-height: 1.133;
    color: #fff;
    white-space: nowrap;
    font-weight: 600;
    margin-top: -10px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

.header__logo img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 5px;
    margin-left: 10px;
}

.hero__image img {
  width: 190%;
        height: auto;
        margin-right: -100px;
        margin-top: 120px;
}

.hero__content {
  margin-top: -140px;
        transform: translateX(70px);
}

    .crypto-box {
    background-color: hsl(240 5.9% 90%);
    border-radius: 15px;
    padding: 20px;
    
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

  .hero__title {
    font-size: 3.5rem;
  }
  .hero {
    padding: 0 60px;
  }

      .about__image0 {
        width: 70px;
        margin-left: -125px;
        margin-bottom: -900px;
        position: relative;
        margin-top: -160px;
        z-index: 1;
    }

    .about__image0 img {
        width: 55vh;
        margin-top: 100px;
        margin-left: 95px;
    }
        .about__title0 {
        font-family: "TT Firs Neue", sans-serif;
        font-size: 1.2rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 410px;
        overflow-wrap: break-word;
    }

    .about__text0 {
        margin-bottom: 16px;
        line-height: 1.5;
        font-size: 0.9rem;
        color: #939393;
        margin-left: 410px;
    }

    .faq-items {
        background-color: rgb(0 0 0);
        border-radius: 16px;
        padding: 40px 35px;
        transition: background-color 0.3s ease;
        overflow: hidden;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        border-radius: 0 0 20px 20px;
    }
    .faq-question-texts {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
    z-index: 2;
}

.coin--smalls {
        width: 510px;
        margin-left: -105px;
        margin-bottom: -810px;
        position: relative;
        transform: translateY(-160px);
    }

    .tokenomics-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tokenomics-item {
    position: relative;
    width: 130px;
    padding: 20px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
    z-index: 12;
}
.tokenomics-item:hover {
    background-color: rgba(255, 255, 255, 0.07);
    transform: scale(1.1);
}
.item__title {
    font-size: 3rem;
    margin-bottom: 8px;
    background: linear-gradient(to bottom, #5b5a5a 10%, #000000 100%);
    -webkit-background-clip: text;
    color: #0000003d;
    font-family: 'BebasNeue', sans-serif;
    font-weight: 600;
}

.item__desc {
    font-size: 0.7rem;
    margin: 0 auto;
    text-align: center;
    font-family: 'TT Firs Neue';
    color: #939393;
    transition: color 0.3s ease;
}

    .tokenomics-svg-wrapper {
        position: absolute;
        top: 270px;
        right: 250px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        opacity: 1;
        transform: scale(1);
    }



}

@media (max-width: 768px) {

    /* Для Chrome, Edge, Opera, Safari */
::-webkit-scrollbar {
  width: 7px;              /* Сделал ОЧЕНЬ широким, можешь увеличить! */
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #e4b92e;      /* Ярко-жёлтый */
  border-radius: 0px !important;  /* Принудительно УБИРАЕМ скругления */
  margin: 0;
  min-height: 24px;
  /* Без border, чтобы был только прямоугольник */
  /* Можно добавить box-shadow если хочется "ребро" */
}

::-webkit-scrollbar-track {
  background: #000;
  border-radius: 0px !important;
}

.community__icon1 {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.community__icon-small1 {
    font-size: 1rem;
    opacity: 0.9;
    margin-left: 15px;
}

.community__icon-big1 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-left: 10px;
    }

.community__icon_you_ru {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    transform: translateY(12px);
}

    .community__icon-big_you_ru {
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(10px);
}

    .community__icon-small_you_ru {
    font-size: 0.9rem;
    opacity: 0.9;
    transform: translateY(10px);
}

    .about__image0 {
        width: 100px;
        margin-left: -125px;
        margin-bottom: -400px;
        position: relative;
        margin-top: -160px;
        z-index: 1;
        transform: scale(0.8);
        opacity: 0.2;
    }

.coming_soon {
  display: none;
}
      h3.hero__title {
  font-family: "TT Firs Neue", sans-serif;
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .3rem;
}

  #home.hero {
    height: calc(100vh - 70px);
  }

          .mobile-image {
        width: 170%;
        margin-left: -197px;
        margin-top: -50px;
        transform: translate(0px, 30px);
    }


  /* Скрыть кнопку в хедере */
  .header__buy-btn {
    display: block;
    background-color: #e4b92e;
  }

  .coin--small {
    display: none !important;
  }

      .main-img-1 {
        position: absolute;
        top: 75%;
        left: 12%;
        width: 220px;
        height: auto;
        z-index: 2;
    }

  .about__images {
    display: none;
  }
  
  /* Для секции hero – изменить порядок блоков */
  .hero {
    flex-direction: column;
    padding: 20px;
    min-height: auto; /* высота определяется контентом */
  }

  /* Контент (текст + крипто бокс) – показывать первым */
  .hero__content {
    max-width: 100%;
    order: 1;
  }

  .coming-soon-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 220px; /* Можно увеличить */
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

    .coming-soon-text {
        font-size: 2.3rem;
        font-family: 'Bebas Neue', 'Montserrat', Arial, sans-serif;
        color: #fff;
        letter-spacing: 4px;
        opacity: 0;
        transform: translateY(60px);
        animation: comingUp 1.6s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
    }

@keyframes comingUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


  .my-lines-svg3 {
        display: none;
    }

    .my-lines-text3 {
        display: none;
    }

.my-lines-text2 {
        display: none;
    }

    .my-lines-svg2 {
        display: none;
    }

    .my-lines-svg4 {
        display: none;
    }

.my-lines-text4 {
       display: none;
    }

.my-lines-svg {
        display: none;
    }
    .my-lines-text {
        display: none;
    }

    .my-lines-text1 {
        display: none;
    }

    .my-lines-svg1 {
        display: none;
    }

    .tokenomics-footer {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-family: 'TT Firs Neue';
    color: #939393;
    /* margin-left: 10px; */
}

  /* Изображение – показывать после контента */
  .hero__image {
    max-width: 100%;
    justify-content: center;
    order: 2;
    margin-top: -20px; /* отступ сверху, если нужно */
    margin-bottom: 0;
    transform: translate(-40px, 20px);
  }

  .hero__image img {
    width: 140%;
    height: auto;
}

      h3.hero__title {
        font-family: 'TT Firs Neue';
        font-size: 2.3rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0;
        margin-top: 20px;
        font-weight: 500;
    }

            p.hero__subtitle {
        font-size: 2rem;
        line-height: 1.133;
        color: #fff;
        margin-top: -10px;
        font-weight: 500;
    }

        .btn {
        font-size: 1.4rem;
    }

    .crypto-box__title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: 'TT Firs Neue';
    font-weight: 500;
        margin-top: 2px;
        color: #000;
}

.header__logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 4px;
}
  .about__wrapper {
    margin: 10px !important;
    padding: 24px !important;
}
.about__text {
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 1.4rem;
        font-family: 'Gilroy';
 }
  
  /* Центрируем график */
  .tokenomics__chart {
    width: 100%;
    margin: 0 auto;
  }
  
  /* Сам график центрируется */
  .tokenomics__chart {
    margin: 0 auto;
  }

   .buy__title {
    text-align: left;
  }

  .buy__blocks {
    flex-direction: column;
    align-items: center;
  }

  .buy-block {
    width: 100%;
    max-width: 500px; /* Ограничиваем ширину на мобильных */
  }

  .buy__button {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  } /* <-- Закрываем скобку здесь! */

  .btn-buy-dex {
        width: 100%;
        height: 80px;
    }

  .tokenh3 {
    color: #000;
    color: #000;
    text-transform: uppercase;
    transform: translate(2px, 124px);
    font-size: 3.85rem;
    font-weight: 600;
}

  .contract-ton-label {
    display: inline;
  }
      .bottom-part .contract-label {
        font-size: 1.2rem;
        opacity: 0.3;
        font-weight: 200;
    }

      .buy-button-wrap {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
        width: 300px;
        transform: translateY(-30px);
    }

  .btn-part {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    width: auto;
    min-height: 40px;
    white-space: nowrap;
  }

  .btn-part.top-part {
        background-color: #fcd535;
        color: black;
        font-weight: 600;
        height: 50px;
        
    }

      .btn-part.bottom-part {
        background-color: #1f1f1fa6;
        color: white;
        flex-direction: row;
        font-size: 13px;
        height: 53px;
        margin-top: -1px;
    }

  .btn-divider-line {
    display: none;
  }

  .contract-address {
    font-size: 13px;
    font-weight: 500;
  }

  .copy-icon {
    font-size: 16px;
    margin-left: 4px;
  }


/*О Токене*/
    .tokenh4 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50.2%, -366%);
        font-size: 6.1rem;
        opacity: 1;
        pointer-events: none;
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
    }

.about__wrapper0 {
    max-width: 1200px;
        margin: 0 auto;
        background-color: #000000;
        border: 1px solid #000000;
        border-radius: 0px;
        padding: 40px;
        display: flex;
        gap: 20px;
        color: #313131;
        overflow: hidden;
        position: relative;
        margin-top: 100px;
}

.about__title0 {
  font-family: "TT Firs Neue", sans-serif;
        font-size: 2rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 0px;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal;
}

.about__text0 {
            margin-bottom: 16px;
        line-height: 1.5;
        font-size: 1.1rem;
        color: #939393;
        margin-left: 0px;
        z-index: 2;
        position: relative;
}

.faq-lists {
  display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -120px;
}



.faq-items {
    background-color: rgb(0 0 0);
    border-radius: 20px;
    padding: 1px 24px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    /* display: block; */
    /* padding: 0 0px; */
}

    .faq-question-texts {
        font-size: 1.5rem;
        font-weight: 500;
        color: #fff;
        margin-right: 16px;
        font-family: 'TT Firs Neue';
        margin-top: 10px;
        z-index: 2;
    }

.faq-toggle-circles {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}
.coin--smalls {
    width:100px;
  }

  .faq-answers {
  max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1.4rem;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #939393;
    font-size: 1rem;
    margin-left: 0px;
}

.newf {
  margin-left: 0px;
}

.highlight-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #939393;
}

.faq-items.active .faq-answers {
    max-height: 1470px;
}
.coin--smalls {
        width: 467px;
        z-index: 1;
        opacity: 0.15;
        top: -200px;
    }
/*ТОКЕНОМИКА*/
.tokenomics-section {
        padding: 100px 20px;
        background-size: 125% auto;
        background-position: center center;
        height: 700px;
        overflow: hidden;
        background-position: center 320px;
    }

  .tokenomics-section__content {
    /* Убираем или уменьшаем масштаб */
    transform: scale(0.82);
        margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(3, 120px); /* 3 колонки по 120px */
    justify-content: center;                /* Центрируем всю сетку */
    gap: 20px;
    margin-bottom: 150px;
  }

  .tokenomics-item {
    width: 120px; /* уменьшаем ширину */
    padding: 15px 8px;
  }

  .tokenomics-item__title {
    font-size: 4.4rem; /* уменьшаем шрифт процентов */
  }

  .tokenomics-item__desc {
    font-size: 1.1rem; /* чуть меньше описание */
  }

  .tokenomics-item:nth-child(4) {
    grid-column: 1;
        margin-left: 70px;
  }
  .tokenomics-item:nth-child(5) {
    grid-column: 2;
        margin-left: 60px;
  }

                  .tokenomics-btn {
        margin-top: 170px;
        font-size: 1.1rem;
        transform: translate(-1px, -90px) scale(1.4);
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-left: 1px;
    }


      .tokenomics-svg-wrapper {
        display:none;
    }


  .tokenomics-footer {
    font-size: 0.9rem;
        max-width: 90%;
        transform: translate(-1px, -75px) scale(1.2);
  }

  .tokenh3 {
        font-size: 4.34rem;
        transform: translate(1px, 65px);
    }

      html[lang="en"] .tokenh3 {
        text-transform: uppercase;
        color: #000000;
        white-space: nowrap;
        font-size: 14.7vw;
        font-weight: bold;
        text-align: center;
        line-height: 1;
        transform: translateY(70px);
        margin-left: 1px;
    }

    html[lang="en"] .my-lines-text3 {
    position: absolute;
    top: 142px;
    right: -175px;
    z-index: 10;
}

          html[lang="en"] .tokenh4 {
        transform: translate(px, 247px) !important;
        font-size: 9.2rem !important;
        transform: translate(-49%, -252%) !important;
    }

  /* ROADMAP */

  .fade-left {
    left: 0;
        background: none;
}

.fade-right {
            right: 0;
        width: 0px;
        background: none;
    }

.roadmap-title {
    text-align: center;
    font-family: 'TT Firs Neue', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #e4b92e;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-left: 0px;
    margin-top: -100px !important;
    
}
.roadmap-container {
        padding: 0 10px;
        margin-top: -230px !important;
    }



.roam_secti {
  padding: 100px 20px;
    background-size: 125% auto;
}

 #lineWrapper {
    display: none;
  }

  .mobile-slider-wrapper {
            display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        margin-top: 300px;
  }

      .mobile-line {
        position: relative;
        width: 180%;
        height: 2px;
        background: linear-gradient(to right, transparent, yellow, transparent);
        margin-bottom: 30px;
    }
  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

  /* Чтобы выровнять всю обёртку красиво */




  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

/* Чтобы выровнять всю обёртку красиво */
    .mobile-slider-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        margin-top: 150px;
    }

.roadmap-container {
    width: 100%;
    height: 45vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
}



  /* КАК КУПИТЬ? */
  .buy__blocks {
    flex-direction: column;
    gap: 20px;
  }
  
  /* В каждом блоке меняем направление на строку */
  .buy-block {
    flex-direction: row;
    align-items: center;
    padding: 15px 10px; /* можно подкорректировать, если нужно */
  }
  
  /* Убираем отступ снизу у номера */
  .buy-block__number {
    margin-bottom: 0;
    margin-right: 10px;
  }
  
  /* Заставляем текст идти в одну строку вместе с номером */
  .buy-block p {
     white-space: normal;
    margin: 0;
    flex: 1 1 0;
    font-size: 1.2rem; /* если нужно уменьшить шрифт для мобильной версии */
  }

  .section-buy {
    width: 100%;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    margin-top: -100px;
  }
  .faq__coins1 img {
        max-width: 100px;
        height: auto;
        display: block;
        opacity: 1;
        margin-top: 114px;
    }

          .faq__coins--right1 {
        right: 20px;
        margin-top: -90px;
        z-index: 2;
        max-width: 100px !important;
    }

  .buy__title {
        text-align: center;
        /* text-align: center; */
        font-family: 'TT Firs Neue', sans-serif;
        font-size: 1.8rem;
        font-weight: 600;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-left: 0px;
        margin-top: -10px;
    }

  /* Капитализация */
  .roadmap-section {
    width: 100%;
        padding: 20px 20px;
        background: #000;
        color: #fff;
        position: relative;
        z-index: 1;
        margin-top: 10px !important;
        min-height: 100px;
}

.faq-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
}

.slide-img {
    width: 345px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

.step-number {
        position: absolute;
        font-size: 7.2rem;
        color: #e4b92e;
        opacity: 0.07;
        font-weight: bold;
        top: -67px;
        left: -5px;
        font-family: 'BebasNeue', sans-serif;
        z-index: -1;
    }

    .step-numbers {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -66px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbers1 {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -70px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numberss {
    position: absolute;
    font-size: 5.85rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbersss {
    position: absolute;
    font-size: 5.86rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.slider-track {
    position: relative;
    height: 320px;
}


.mori-slider {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  padding: 60px 0;
}

.mori-slider-window {
  overflow: hidden;
  width: 100%;
}

.mori-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: fit-content;
}

.mori-slider-slide {
  display: flex;
  gap: 270px;
  margin-left: 100px;
  flex: 0 0 100%;
  justify-content: center;
}

.mori-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #e4b92e;
  font-size: 2.5rem;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mori-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mori-slider-arrow.left {
  left: 10px;
}

.mori-slider-arrow.right {
  right: 10px;
}


.process-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 100px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #939393;
    margin-left: 0px !important;
    text-transform: uppercase;
}

.process-title2 {
    font-size: 1.2rem;
    margin-bottom: 90px;
    text-transform: uppercase;
    letter-spacing: .0rem;
    font-weight: 500;
    margin-top: -80px;
    color: #939393;
    margin-left: 0px !important;
}

.step-number {
    position: absolute;
    font-size: 6rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -105px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
}

.step-block {
    position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 180px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.step-blocks {
     position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 390px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    }

    .step-blockss {
     position: absolute;
        background: #0e0e0e00;
        padding: 30px;
        border-radius: 14px;
        width: 390px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .step-blocks::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100px;
    background-image: radial-gradient(#ff96002e 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.step-blockss::before {
    content: "";
        position: absolute;
        top: 135px;
        right: 256px;
        width: 130px;
        height: 100px;
        background-image: radial-gradient(#ff96002e 2px, transparent 2px);
        background-size: 8px 8px;
        opacity: 0.4;
        z-index: 0;
        pointer-events: none;
}

.step-blocks h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-blockss h3 {
    color: #e4b92e;
        font-size: 2rem;
        margin: 0 0 10px;
        letter-spacing: 1px;
        font-family: 'BebasNeue', sans-serif;
        margin-left: 180px;
}

.step-block h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-block p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.4;
    margin: 0;
}

.step-blocks p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.6;
    margin: 0;
}

.step-blockss p {
    font-size: 0.9rem;
        color: #939393;
        line-height: 1.6;
        margin: 0;
        margin-left: 180px;
}

.glow-curve1234 {
    position: absolute;
    left: -200px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: none;
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

    .step-1 { top: 0; left: 0px; }
    .step-2 { top: 0px; right: 0px; height: 174px !important; }
    .step-3 { top: 220px; left: 0px; height: 174px !important; }
    .step-4 { top: 220px; right: 0px; }
    .step-5 { top: 440px; left: 0px; height: 228px !important;}
    .step-6 { top: 440px; right: 0px; height: 228px !important; }
    .step-7 { top: 700px; left: 0px; height: 238px !important; }
    .step-8 { top: 700px; right: 0px; }

    .steps-1 { top: -60px; left: 0px; }
    .steps-2 { top: -60px; left: 206px; }
    .steps-3 { top: 165px; left: 115px; }
    .steps-4 { top: 165px; left: 321px; }
    .steps-5 { top: 385px; left: 0px; }
    .steps-6 { top: 385px; left: 206px; }
    .steps-7 { top: 223px; left: 883px; }
    .steps-8 { top: 223px; left: 1313px; }
  
/*======FAQ==========*/
.faq-section {
    width: 100%;
    background-color: #000;
    padding: 60px 20px;
    box-sizing: border-box;
    color: #939393;
    font-family: Arial, sans-serif;
    position: relative;
    box-shadow: none;
    min-height: 100px;
}

.faq-list {
    gap: 15px;
    margin-top: -20px;
}

.faq-item {
    padding: 10px 24px;
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
}

.faq-toggle-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}

.faq__coins img {
    max-width: 100px;
    height: auto;
    display: block;
    opacity: 1;
}

.faq__coins123 img {
    display: none;
}

.faq__coins--left {
    margin-top: 0px !important;
    margin-left: 0px !important;
}

.faq__coins--right {
        right: 45px;
        margin-top: 30px;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 10px;
        color: #ffffff;
        line-height: 1.5;
        font-size: 1rem;
    }

.faq-title {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #fff;
    margin-top: -50px;
}
  /*CООБЩЕСТВО*/
  .tokenh31 {
        transform: translate(-4px, 84px);
        font-size: 4rem;
    }

    html[lang="en"] .tokenh31 {
        text-transform: uppercase;
        color: #ffffff;
        white-space: nowrap;
        font-size: 15.5vw;
        font-weight: bold;
        text-align: center;
        line-height: 1;
        transform: translateY(82px);
        margin-left: -19px;
    }

   /* Центрирование текста в секции "Сообщество" */
  .community__wrapper,
  .community__title,
  .community__subtitle {
    text-align: center;
    color: #000;
    font-size: 30px;
    margin-top: -50px;

  }
  
  /* Убираем отрицательные отступы у подзаголовка, если они есть */
  .community__subtitle {
    margin-top: -35px;
        font-size: 18px;
  }

  /* Расположение иконок: выравниваем по центру и уменьшаем промежутки */
  .community__icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: -20px;
    }

    .footer__contacts-list.horizontal {
    display: flex;
    gap: 20px;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

    .community__icon-block {
    width: 48%;      /* каждый блок занимает почти половину ширины */
    max-width: 48%;  /* на всякий случай */
    min-width: 120px; /* если блоки совсем маленькие, не сжимать */
    box-sizing: border-box;
    margin: 0;
  }

    .community__icon-block:nth-child(3) {
        width: 100%; /* Третья на всю ширину */
        margin-top: 20px;
    }
.community__icon-big {
    font-size: 1.5rem;
    font-weight: 600;
}
  

  /*ФУТЕР*/
  .footer {
    background: linear-gradient(135deg, #000, #000000);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    padding-bottom: 20px;
}

.footer__right img {
    display: none;
}

.footmori img {

    width: 300px;
    margin-top: -200px;
}

.footer__disclaimer p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

}

@media (min-width: 412px) and (max-width: 414px) {
  #home.hero {
    height: calc(100vh - 70px);
  }

          .mobile-image {
        width: 150%;
        margin-left: -140px;
        margin-top: -50px;
        transform: translate(0px, 30px);
    }

        .header__right {
        display: flex;
        align-items: center;
        margin-right: 15px;
        transform: scale(1);
        /* margin-left: -15px; */
    }

.mobile-slider-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        margin-top: 150px;
    }

.roadmap-container {
    width: 100%;
    height: 45vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
}


  /* Скрыть кнопку в хедере */
  .header__buy-btn {
    
    display: block;
    background-color: #e4b92e;
  }

  .about__images {
    display: none;
  }

  .nav-arrow {
    display: none;
  }
  .arrow-icon {
  display: none;
  }

  .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: #000; /* Цвет шапки */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
}

.mori-tooltip {
    min-width: 80vw;     /* на очень маленьких экранах всегда минимум 80% */
    max-width: 98vw;     /* почти во всю ширину */
    width: 92vw;         /* основная ширина */
    font-size: 1.08em;   /* чуть крупнее текст если надо */
    left: 50%;
    transform: translateX(-50%); /* центрирует если используешь position: absolute */
  }
      .main-img-1 {
        position: absolute;
        top: 75%;
        left: 13%;
        width: 220px;
        height: auto;
        z-index: 2;
    }
  
  /* Для секции hero – изменить порядок блоков */
  .hero {
    flex-direction: column;
    padding: 20px;
    min-height: auto; /* высота определяется контентом */
  }

  /* Контент (текст + крипто бокс) – показывать первым */
  .hero__content {
    max-width: 100%;
    order: 1;
  }

  .my-lines-svg3 {
    position: absolute;
    top: 584px;
    right: 10px;
    z-index: 10;
    transform: rotate(326deg);
}

.my-lines-text3 {
    position: absolute;
    top: 115px;
    right: -194px;
    z-index: 10;
}

.my-lines-text2 {
    position: absolute;
    top: 345px;
    right: -55px;
    z-index: 10;
}

.my-lines-svg2 {
    position: absolute;
    top: 400px;
    right: 230px;
    z-index: 10;
    transform: rotate(28deg);
}

.my-lines-svg4 {
    position: absolute;
    top: 540px;
    right: 20px;
    z-index: 10;
    transform: rotate(73deg);
}

.my-lines-text4 {
    position: absolute;
    top: 465px;
    right: -380px;
    z-index: 10;
}

.my-lines-svg {
    position: absolute;
    top: 503px;
    right: 36px;
    z-index: 10;
    transform: rotate(329deg);
}
.my-lines-text {
    position: absolute;
    top: 610px;
    right: -135px;
    z-index: 10;
}

.my-lines-text1 {
    position: absolute;
    top: 441px;
    right: -20px;
    z-index: 10;
}

.my-lines-svg1 {
    position: absolute;
    top: 478px;
    right: 53px;
    z-index: 10;
}

  /* Изображение – показывать после контента */
  .hero__image {
    max-width: 100%;
    justify-content: center;
    order: 2;
    margin-top: -20px; /* отступ сверху, если нужно */
    margin-bottom: 0;
    transform: translate(-40px, 20px);
  }

  .hero__image img {
    width: 140%;
    height: auto;
}

  h3.hero__title {
    font-family: "TT Firs Neue", sans-serif;
        font-size: 1.6rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: .3rem;
        margin-top: 20px;
        font-weight: 500;
}

        p.hero__subtitle {
        font-size: 1.8rem;
        line-height: 1.133;
        color: #fff;
        margin-top: -10px;
        font-weight: 500;
    }

        .btn {
        font-size: 1.4rem;
    }

    .crypto-box__title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: 'TT Firs Neue';
    font-weight: 500;
        margin-top: 2px;
        color: #000;
}

.header__logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 4px;
}
  .about__wrapper {
    margin: 10px !important;
    padding: 24px !important;
}
.about__text {
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 1.4rem;
        font-family: 'Gilroy';
 }
  
  /* Центрируем график */
  .tokenomics__chart {
    width: 100%;
    margin: 0 auto;
  }
  
  /* Сам график центрируется */
  .tokenomics__chart {
    margin: 0 auto;
  }

   .buy__title {
    text-align: left;
  }

  .buy__blocks {
    flex-direction: column;
    align-items: center;
  }

  .buy-block {
    width: 100%;
    max-width: 500px; /* Ограничиваем ширину на мобильных */
  }

  .buy__button {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  } /* <-- Закрываем скобку здесь! */

  .btn-buy-dex {
    width: 100%;
  }

  .tokenh3 {
    color: #000;
    color: #000;
    text-transform: uppercase;
    transform: translate(2px, 124px);
    font-size: 3.85rem;
    font-weight: 600;
}

  .contract-ton-label {
    display: inline;
  }
  .contract-label {
    display: none;
  }

  .buy-button-wrap {
        width: auto;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-top: 50px;
    }

  .btn-part {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    width: auto;
    min-height: 40px;
    white-space: nowrap;
  }

  .btn-part.top-part {
    background-color: #fcd535;
    color: black;
    font-weight: 600;
    height: 50px;
  }

  .btn-part.bottom-part {
    background-color: #1f1f1f;
    color: white;
    flex-direction: row;
    font-size: 13px;
    height: 53px;
        margin-top: -1px;
  }

  .btn-divider-line {
    display: none;
  }

  .contract-address {
    font-size: 13px;
    font-weight: 500;
  }

  .copy-icon {
    font-size: 16px;
    margin-left: 4px;
  }


/*О Токене*/
            .tokenh4 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50.2%, -395%);
        font-size: 5.8rem;
        opacity: 1;
        pointer-events: none;
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
    }
    .coin--small {
    display: none !important;
  }

.about__wrapper0 {
    max-width: 1200px;
        margin: 0 auto;
        background-color: #000000;
        border: 1px solid #000000;
        border-radius: 0px;
        padding: 40px;
        display: flex;
        gap: 20px;
        color: #313131;
        overflow: hidden;
        position: relative;
        margin-top: 100px;
}

.about__title0 {
  font-family: "TT Firs Neue", sans-serif;
        font-size: 2rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 0px;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal;
}

.about__text0 {
            margin-bottom: 16px;
        line-height: 1.5;
        font-size: 1.1rem;
        color: #939393;
        margin-left: 0px;
        z-index: 2;
        position: relative;
}

.faq-lists {
  display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -120px;
}



.faq-items {
        background-color: rgb(0 0 0);
        border-radius: 20px;
        padding: 1px 24px;
        transition: background-color 0.3s ease;
        overflow: hidden;
        max-width: 450px;
        margin: 0 auto;
        position: relative;
        /* display: block; */
        /* padding: 0 0px; */
    }

.faq-question-texts {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
    z-index: 2;
}

.faq-toggle-circles {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}
.coin--smalls {
    width:100px;
  }

  .faq-answers {
  max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1.4rem;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #939393;
    font-size: 1rem;
    margin-left: 0px;
}

.newf {
  margin-left: 0px;
}

.highlight-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #939393;
}

.faq-items.active .faq-answers {
    max-height: 1470px;
}
.coin--smalls {
        width: 467px;
        z-index: 1;
        opacity: 0.15;
        top: -200px;
    }
/*ТОКЕНОМИКА*/
.tokenomics-section {
        padding: 100px 20px;
        background-size: 125% auto;
        background-position: center center;
        height: 700px;
        overflow: hidden;
        background-position: center 320px;
    }

  .tokenomics-section__content {
    /* Убираем или уменьшаем масштаб */
    transform: scale(0.82);
        margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(3, 120px); /* 3 колонки по 120px */
    justify-content: center;                /* Центрируем всю сетку */
    gap: 20px;
    margin-bottom: 150px;
  }

  .tokenomics-item {
    width: 120px; /* уменьшаем ширину */
    padding: 15px 8px;
  }

  .tokenomics-item__title {
    font-size: 4.4rem; /* уменьшаем шрифт процентов */
  }

  .tokenomics-item__desc {
    font-size: 1.1rem; /* чуть меньше описание */
  }

  .tokenomics-item:nth-child(4) {
    grid-column: 1;
        margin-left: 70px;
  }
  .tokenomics-item:nth-child(5) {
    grid-column: 2;
        margin-left: 60px;
  }

          .tokenomics-btn {
        margin-top: 140px;
        font-size: 1.1rem;
        transform: translate(-1px, -90px) scale(1.4);
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-left: 1px;
    }


  .tokenomics-svg-wrapper {
    position: absolute;
    top: 550px;
    right: 50px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 1;
    transform: scale(1);
}


  .tokenomics-footer {
    font-size: 0.9rem;
        max-width: 90%;
        transform: translate(-1px, -75px) scale(1.2);
  }

      .tokenh3 {
        font-size: 4.1rem;
        transform: translate(1px, 60px);
    }

      html[lang="en"] .tokenh3 {
        font-size: 4.3rem;
        transform: translate(0px, 60px);
    }

      html[lang="en"] .tokenh4 {
        font-size: 8.9rem !important;
        transform: translate(-49%, -265%) !important;
    }

    .community__icon1 {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.community__icon-small1 {
    font-size: 1rem;
    opacity: 0.9;
    margin-left: 15px;
}

.community__icon-big1 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-left: 10px;
    }

.community__icon_you_ru {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    transform: translateY(12px);
}

    .community__icon-big_you_ru {
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(10px);
}

    .community__icon-small_you_ru {
    font-size: 0.9rem;
    opacity: 0.9;
    transform: translateY(10px);
}

  /* ROADMAP */

  .fade-left {
    left: 0;
        background: none;
}

.fade-right {
            right: 0;
        width: 0px;
        background: none;
    }

.roadmap-title {
    text-align: center;
    font-family: 'TT Firs Neue', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #e4b92e;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-left: 0px;
    margin-top: -100px !important;
    
}
.roadmap-container {
  padding: 0 10px;
}

.roam_secti {
  padding: 100px 20px;
    background-size: 125% auto;
}
 #lineWrapper {
    display: none;
  }

  .mobile-slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
  }

  .mobile-line {
        position: relative;
        width: 170%;
        height: 2px;
        background: linear-gradient(to right, transparent, yellow, transparent);
        margin-bottom: 30px;
    }
  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

  /* Чтобы выровнять всю обёртку красиво */
.mobile-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: -450px;
}



  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

/* Чтобы выровнять всю обёртку красиво */
        .mobile-slider-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 60px;
        margin-top: 230px;
    }



  /* КАК КУПИТЬ? */
  .buy__blocks {
    flex-direction: column;
    gap: 20px;
  }
  
  /* В каждом блоке меняем направление на строку */
  .buy-block {
    flex-direction: row;
    align-items: center;
    padding: 15px 10px; /* можно подкорректировать, если нужно */
  }
  
  /* Убираем отступ снизу у номера */
  .buy-block__number {
    margin-bottom: 0;
    margin-right: 10px;
  }
  
  /* Заставляем текст идти в одну строку вместе с номером */
  .buy-block p {
     white-space: normal;
    margin: 0;
    flex: 1 1 0;
    font-size: 1.2rem; /* если нужно уменьшить шрифт для мобильной версии */
  }

  .section-buy {
    width: 100%;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    margin-top: -100px;
  }
      .faq__coins1 img {
        max-width: 100px;
        height: auto;
        display: block;
        opacity: 1;
        margin-top: 174px;
    }
      .faq__coins--right1 {
        right: 20px;
        margin-top: -87px;
        z-index: 2;
        max-width: 70px !important;
    }

  .buy__title {
        text-align: center;
        /* text-align: center; */
        font-family: 'TT Firs Neue', sans-serif;
        font-size: 1.8rem;
        font-weight: 600;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-left: 0px;
        margin-top: 40px;
    }
  /* Капитализация */
  .roadmap-section {
    width: 100%;
        padding: 20px 20px;
        background: #000;
        color: #fff;
        position: relative;
        z-index: 1;
        margin-top: 10px !important;
        min-height: 100px;
}

.faq-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
}

    .slide-img {
        width: 320px;
        height: 315px;
        object-fit: cover;
        border-radius: 20px;
    }

.step-number {
        position: absolute;
        font-size: 7.2rem;
        color: #e4b92e;
        opacity: 0.07;
        font-weight: bold;
        top: -67px;
        left: -5px;
        font-family: 'BebasNeue', sans-serif;
        z-index: -1;
    }

    .step-numbers {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -66px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbers1 {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -70px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numberss {
    position: absolute;
    font-size: 5.85rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbersss {
    position: absolute;
    font-size: 5.86rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.slider-track {
    position: relative;
    height: 320px;
}


.mori-slider {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  padding: 60px 0;
}

.mori-slider-window {
  overflow: hidden;
  width: 100%;
}

.mori-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: fit-content;
}

.mori-slider-slide {
  display: flex;
  gap: 270px;
  margin-left: 100px;
  flex: 0 0 100%;
  justify-content: center;
}

.mori-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #e4b92e;
  font-size: 2.5rem;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mori-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mori-slider-arrow.left {
  left: 10px;
}

.mori-slider-arrow.right {
  right: 10px;
}


.process-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 100px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #939393;
    margin-left: 0px !important;
    text-transform: uppercase;
}

.process-title2 {
    font-size: 1.2rem;
    margin-bottom: 90px;
    text-transform: uppercase;
    letter-spacing: .0rem;
    font-weight: 500;
    margin-top: -80px;
    color: #939393;
    margin-left: 0px !important;
}

    .step-number {
        position: absolute;
        font-size: 6.7rem;
        color: #e4b92e;
        opacity: 0.07;
        font-weight: bold;
        top: -75px;
        left: -5px;
        font-family: 'BebasNeue', sans-serif;
        z-index: -1;
    }

.step-block {
    position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 180px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.step-blocks {
     position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 390px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    }

    .step-blockss {
     position: absolute;
        background: #0e0e0e00;
        padding: 30px;
        border-radius: 14px;
        width: 390px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .step-blocks::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100px;
    background-image: radial-gradient(#ff96002e 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.step-blockss::before {
    content: "";
        position: absolute;
        top: 135px;
        right: 256px;
        width: 130px;
        height: 100px;
        background-image: radial-gradient(#ff96002e 2px, transparent 2px);
        background-size: 8px 8px;
        opacity: 0.4;
        z-index: 0;
        pointer-events: none;
}

.step-blocks h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-blockss h3 {
    color: #e4b92e;
        font-size: 2rem;
        margin: 0 0 10px;
        letter-spacing: 1px;
        font-family: 'BebasNeue', sans-serif;
        margin-left: 180px;
}

.step-block h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-block p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.4;
    margin: 0;
}

.step-blocks p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.6;
    margin: 0;
}

.step-blockss p {
    font-size: 0.9rem;
        color: #939393;
        line-height: 1.6;
        margin: 0;
        margin-left: 180px;
}

.glow-curve1234 {
    position: absolute;
    left: -200px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: none;
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

    .step-1 { top: 0; left: 0px; }
    .step-2 { top: 0px; right: 0px; height: 174px !important; }
    .step-3 { top: 220px; left: 0px; height: 174px !important; }
    .step-4 { top: 220px; right: 0px; }
    .step-5 { top: 440px; left: 0px; height: 228px !important;}
    .step-6 { top: 440px; right: 0px; height: 228px !important; }
    .step-7 { top: 700px; left: 0px; height: 238px !important; }
    .step-8 { top: 700px; right: 0px; }

    .steps-1 { top: -60px; left: 0px; }
    .steps-2 { top: -60px; left: 206px; }
    .steps-3 { top: 165px; left: 115px; }
    .steps-4 { top: 165px; left: 321px; }
    .steps-5 { top: 385px; left: 0px; }
    .steps-6 { top: 385px; left: 206px; }
    .steps-7 { top: 223px; left: 883px; }
    .steps-8 { top: 223px; left: 1313px; }
  
/*======FAQ==========*/
.faq-section {
    width: 100%;
    background-color: #000;
    padding: 60px 20px;
    box-sizing: border-box;
    color: #939393;
    font-family: Arial, sans-serif;
    position: relative;
    box-shadow: none;
    min-height: 100px;
}

.faq-list {
    gap: 15px;
    margin-top: -20px;
}

.faq-item {
    padding: 10px 24px;
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
}

.faq-toggle-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}

    .faq__coins img {
        max-width: 80px;
        height: auto;
        display: block;
        opacity: 1;
    }

.faq__coins123 img {
    display: none;
}

.faq__coins--left {
    margin-top: 0px !important;
    margin-left: 0px !important;
}

    .faq__coins--right {
        right: 15px;
        margin-top: 30px;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1rem;
}

.faq-title {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #fff;
    margin-top: -50px;
}
  /*CООБЩЕСТВО*/
  .tokenh31 {
        transform: translate(0px, 76px);
        font-size: 3.8rem;
    }

    html[lang="en"] .tokenh31 {
        font-size: 4.6rem;
        transform: translate(0px, 82px);
    }

   .community__icons {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Две колонки */
  gap: 20px 16px;                /* Вертикальный и горизонтальный отступ */
  justify-items: center;         /* Центрируем иконки по центру ячейки */
  align-items: start;            /* Выравнивание сверху (или center если надо) */
  margin-top: 0;                 /* Без отрицательных отступов */
}

.community__icon-block {
  width: 100%;             /* Автоматически растягиваются на всю ширину колонки */
  max-width: 160px;        /* Сужай по необходимости, чтобы не растягивались сильно */
  min-width: 120px;
  background: none;        /* Можно задать цвет если надо */
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.community__icon-big {
  font-size: 1.5rem;
  font-weight: 600;
}

.community__icons {
    grid-template-columns: 1fr; /* Одна иконка в ряд */
    gap: 18px;
  }
  .community__icon-block {
    max-width: 90%;
    margin: 0 auto;
  }

  /*ФУТЕР*/
  .footer {
    background: linear-gradient(135deg, #000, #000000);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    padding-bottom: 20px;
}

.footer__right img {
    display: none;
}

.footmori img {

    width: 300px;
    margin-top: -200px;
}

.footer__disclaimer p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

}

@media (min-width: 391px) and (max-width: 411px) {
  #home.hero {
    height: calc(100vh - 70px);
  }

          .mobile-image {
        width: 150%;
        margin-left: -140px;
        margin-top: -50px;
        transform: translate(0px, 30px);
    }

        .header__right {
        display: flex;
        align-items: center;
        margin-right: 15px;
        transform: scale(0.9);
        margin-left: 5px;
    }

.mobile-slider-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        margin-top: 150px;
    }

.roadmap-container {
    width: 100%;
    height: 45vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
}


  /* Скрыть кнопку в хедере */
  .header__buy-btn {
    display: block;
    background-color: #e4b92e;
  }

  .about__images {
    display: none;
  }

  .nav-arrow {
    display: none;
  }
  .arrow-icon {
  display: none;
  }

  .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: #000; /* Цвет шапки */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
}

.mori-tooltip {
    min-width: 80vw;     /* на очень маленьких экранах всегда минимум 80% */
    max-width: 98vw;     /* почти во всю ширину */
    width: 92vw;         /* основная ширина */
    font-size: 1.08em;   /* чуть крупнее текст если надо */
    left: 50%;
    transform: translateX(-50%); /* центрирует если используешь position: absolute */
  }
      .main-img-1 {
        position: absolute;
        top: 75%;
        left: 13%;
        width: 220px;
        height: auto;
        z-index: 2;
    }
  
  /* Для секции hero – изменить порядок блоков */
  .hero {
    flex-direction: column;
    padding: 20px;
    min-height: auto; /* высота определяется контентом */
  }

  /* Контент (текст + крипто бокс) – показывать первым */
  .hero__content {
    max-width: 100%;
    order: 1;
  }

  .my-lines-svg3 {
    position: absolute;
    top: 584px;
    right: 10px;
    z-index: 10;
    transform: rotate(326deg);
}

.my-lines-text3 {
    position: absolute;
    top: 115px;
    right: -194px;
    z-index: 10;
}

.my-lines-text2 {
    position: absolute;
    top: 345px;
    right: -55px;
    z-index: 10;
}

.my-lines-svg2 {
    position: absolute;
    top: 400px;
    right: 230px;
    z-index: 10;
    transform: rotate(28deg);
}

.my-lines-svg4 {
    position: absolute;
    top: 540px;
    right: 20px;
    z-index: 10;
    transform: rotate(73deg);
}

.my-lines-text4 {
    position: absolute;
    top: 465px;
    right: -380px;
    z-index: 10;
}

.my-lines-svg {
    position: absolute;
    top: 503px;
    right: 36px;
    z-index: 10;
    transform: rotate(329deg);
}
.my-lines-text {
    position: absolute;
    top: 610px;
    right: -135px;
    z-index: 10;
}

.my-lines-text1 {
    position: absolute;
    top: 441px;
    right: -20px;
    z-index: 10;
}

.my-lines-svg1 {
    position: absolute;
    top: 478px;
    right: 53px;
    z-index: 10;
}

  /* Изображение – показывать после контента */
  .hero__image {
    max-width: 100%;
    justify-content: center;
    order: 2;
    margin-top: -20px; /* отступ сверху, если нужно */
    margin-bottom: 0;
    transform: translate(-40px, 20px);
  }

  .hero__image img {
    width: 140%;
    height: auto;
}

  h3.hero__title {
    font-family: "TT Firs Neue", sans-serif;
        font-size: 1.6rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: .3rem;
        margin-top: 20px;
        font-weight: 500;
}

        p.hero__subtitle {
        font-size: 1.8rem;
        line-height: 1.133;
        color: #fff;
        margin-top: -10px;
        font-weight: 500;
    }

        .btn {
        font-size: 1.4rem;
    }

    .crypto-box__title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: 'TT Firs Neue';
    font-weight: 500;
        margin-top: 2px;
        color: #000;
}

.header__logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 4px;
}
  .about__wrapper {
    margin: 10px !important;
    padding: 24px !important;
}
.about__text {
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 1.4rem;
        font-family: 'Gilroy';
 }
  
  /* Центрируем график */
  .tokenomics__chart {
    width: 100%;
    margin: 0 auto;
  }
  
  /* Сам график центрируется */
  .tokenomics__chart {
    margin: 0 auto;
  }

   .buy__title {
    text-align: left;
  }

  .buy__blocks {
    flex-direction: column;
    align-items: center;
  }

  .buy-block {
    width: 100%;
    max-width: 500px; /* Ограничиваем ширину на мобильных */
  }

  .buy__button {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  } /* <-- Закрываем скобку здесь! */

  .btn-buy-dex {
    width: 100%;
  }

  .tokenh3 {
    color: #000;
    color: #000;
    text-transform: uppercase;
    transform: translate(2px, 124px);
    font-size: 3.85rem;
    font-weight: 600;
}

  .contract-ton-label {
    display: inline;
  }
  .contract-label {
    display: none;
  }

  .buy-button-wrap {
        width: auto;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-top: 50px;
    }

  .btn-part {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    width: auto;
    min-height: 40px;
    white-space: nowrap;
  }

  .btn-part.top-part {
    background-color: #fcd535;
    color: black;
    font-weight: 600;
    height: 50px;
  }

  .btn-part.bottom-part {
    background-color: #1f1f1f;
    color: white;
    flex-direction: row;
    font-size: 13px;
    height: 53px;
        margin-top: -1px;
  }

  .btn-divider-line {
    display: none;
  }

  .contract-address {
    font-size: 13px;
    font-weight: 500;
  }

  .copy-icon {
    font-size: 16px;
    margin-left: 4px;
  }


/*О Токене*/
        .tokenh4 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50.2%, -420%);
        font-size: 5.6rem;
        opacity: 1;
        pointer-events: none;
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
    }
    .coin--small {
    display: none !important;
  }

.about__wrapper0 {
    max-width: 1200px;
        margin: 0 auto;
        background-color: #000000;
        border: 1px solid #000000;
        border-radius: 0px;
        padding: 40px;
        display: flex;
        gap: 20px;
        color: #313131;
        overflow: hidden;
        position: relative;
        margin-top: 100px;
}

.about__title0 {
  font-family: "TT Firs Neue", sans-serif;
        font-size: 2rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 0px;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal;
}

.about__text0 {
            margin-bottom: 16px;
        line-height: 1.5;
        font-size: 1.1rem;
        color: #939393;
        margin-left: 0px;
        z-index: 2;
        position: relative;
}

.faq-lists {
  display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -120px;
}



.faq-items {
        background-color: rgb(0 0 0);
        border-radius: 20px;
        padding: 1px 24px;
        transition: background-color 0.3s ease;
        overflow: hidden;
        max-width: 390px;
        margin: 0 auto;
        position: relative;
        /* display: block; */
        /* padding: 0 0px; */
    }

.faq-question-texts {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
    z-index: 2;
}

.faq-toggle-circles {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}
.coin--smalls {
    width:100px;
  }

  .faq-answers {
  max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1.4rem;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #939393;
    font-size: 1rem;
    margin-left: 0px;
}

.newf {
  margin-left: 0px;
}

.highlight-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #939393;
}

.faq-items.active .faq-answers {
    max-height: 1470px;
}
.coin--smalls {
        width: 467px;
        z-index: 1;
        opacity: 0.15;
        top: -200px;
    }
/*ТОКЕНОМИКА*/
.tokenomics-section {
        padding: 100px 20px;
        background-size: 125% auto;
        background-position: center center;
        height: 700px;
        overflow: hidden;
        background-position: center 320px;
    }

  .tokenomics-section__content {
    /* Убираем или уменьшаем масштаб */
    transform: scale(0.82);
        margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(3, 120px); /* 3 колонки по 120px */
    justify-content: center;                /* Центрируем всю сетку */
    gap: 20px;
    margin-bottom: 150px;
  }

  .tokenomics-item {
    width: 120px; /* уменьшаем ширину */
    padding: 15px 8px;
  }

  .tokenomics-item__title {
    font-size: 4.4rem; /* уменьшаем шрифт процентов */
  }

  .tokenomics-item__desc {
    font-size: 1.1rem; /* чуть меньше описание */
  }

  .tokenomics-item:nth-child(4) {
    grid-column: 1;
        margin-left: 70px;
  }
  .tokenomics-item:nth-child(5) {
    grid-column: 2;
        margin-left: 60px;
  }

          .tokenomics-btn {
        margin-top: 140px;
        font-size: 1.1rem;
        transform: translate(-1px, -90px) scale(1.4);
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-left: 1px;
    }


  .tokenomics-svg-wrapper {
    position: absolute;
    top: 550px;
    right: 50px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 1;
    transform: scale(1);
}


  .tokenomics-footer {
    font-size: 0.9rem;
        max-width: 90%;
        transform: translate(-1px, -75px) scale(1.2);
  }

      .tokenh3 {
        font-size: 3.93rem;
        transform: translate(0px, 58px);
    }

      html[lang="en"] .tokenh3 {
        font-size: 4.1rem;
        transform: translate(0px, 60px);
    }

      html[lang="en"] .tokenh4 {
        font-size: 8.7rem !important;
        transform: translate(-50%, -265%) !important;
    }

  /* ROADMAP */

  .fade-left {
    left: 0;
        background: none;
}

.fade-right {
            right: 0;
        width: 0px;
        background: none;
    }

.roadmap-title {
    text-align: center;
    font-family: 'TT Firs Neue', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #e4b92e;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-left: 0px;
    margin-top: -100px !important;
    
}
.roadmap-container {
  padding: 0 10px;
}

.roam_secti {
  padding: 100px 20px;
    background-size: 125% auto;
}
 #lineWrapper {
    display: none;
  }

  .mobile-slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
  }

  .mobile-line {
        position: relative;
        width: 170%;
        height: 2px;
        background: linear-gradient(to right, transparent, yellow, transparent);
        margin-bottom: 30px;
    }
  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

  /* Чтобы выровнять всю обёртку красиво */
.mobile-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: -450px;
}



  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

/* Чтобы выровнять всю обёртку красиво */
        .mobile-slider-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 60px;
        margin-top: 230px;
    }



  /* КАК КУПИТЬ? */
  .buy__blocks {
    flex-direction: column;
    gap: 20px;
  }
  
  /* В каждом блоке меняем направление на строку */
  .buy-block {
    flex-direction: row;
    align-items: center;
    padding: 15px 10px; /* можно подкорректировать, если нужно */
  }
  
  /* Убираем отступ снизу у номера */
  .buy-block__number {
    margin-bottom: 0;
    margin-right: 10px;
  }
  
  /* Заставляем текст идти в одну строку вместе с номером */
  .buy-block p {
     white-space: normal;
    margin: 0;
    flex: 1 1 0;
    font-size: 1.2rem; /* если нужно уменьшить шрифт для мобильной версии */
  }

  .section-buy {
    width: 100%;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    margin-top: -100px;
  }
  .faq__coins1 img {
        max-width: 100px;
        height: auto;
        display: block;
        opacity: 1;
        margin-top: 204px;
    }
      .faq__coins--right1 {
        right: 20px;
        margin-top: -87px;
        z-index: 2;
        max-width: 70px !important;
    }

  .buy__title {
        text-align: center;
        /* text-align: center; */
        font-family: 'TT Firs Neue', sans-serif;
        font-size: 1.8rem;
        font-weight: 600;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-left: 0px;
        margin-top: 40px;
    }
  /* Капитализация */
  .roadmap-section {
    width: 100%;
        padding: 20px 20px;
        background: #000;
        color: #fff;
        position: relative;
        z-index: 1;
        margin-top: 10px !important;
        min-height: 100px;
}

.faq-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
}

    .slide-img {
        width: 320px;
        height: 315px;
        object-fit: cover;
        border-radius: 20px;
    }

.step-number {
        position: absolute;
        font-size: 7.2rem;
        color: #e4b92e;
        opacity: 0.07;
        font-weight: bold;
        top: -67px;
        left: -5px;
        font-family: 'BebasNeue', sans-serif;
        z-index: -1;
    }

    .step-numbers {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -66px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbers1 {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -70px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numberss {
    position: absolute;
    font-size: 5.85rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbersss {
    position: absolute;
    font-size: 5.86rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.slider-track {
    position: relative;
    height: 320px;
}


.mori-slider {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  padding: 60px 0;
}

.mori-slider-window {
  overflow: hidden;
  width: 100%;
}

.mori-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: fit-content;
}

.mori-slider-slide {
  display: flex;
  gap: 270px;
  margin-left: 100px;
  flex: 0 0 100%;
  justify-content: center;
}

.mori-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #e4b92e;
  font-size: 2.5rem;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mori-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mori-slider-arrow.left {
  left: 10px;
}

.mori-slider-arrow.right {
  right: 10px;
}


.process-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 100px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #939393;
    margin-left: 0px !important;
    text-transform: uppercase;
}

.process-title2 {
    font-size: 1.2rem;
    margin-bottom: 90px;
    text-transform: uppercase;
    letter-spacing: .0rem;
    font-weight: 500;
    margin-top: -80px;
    color: #939393;
    margin-left: 0px !important;
}

    .step-number {
        position: absolute;
        font-size: 6.7rem;
        color: #e4b92e;
        opacity: 0.07;
        font-weight: bold;
        top: -75px;
        left: -5px;
        font-family: 'BebasNeue', sans-serif;
        z-index: -1;
    }

.step-block {
    position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 180px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.step-blocks {
     position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 390px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    }

    .step-blockss {
     position: absolute;
        background: #0e0e0e00;
        padding: 30px;
        border-radius: 14px;
        width: 390px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .step-blocks::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100px;
    background-image: radial-gradient(#ff96002e 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.step-blockss::before {
    content: "";
        position: absolute;
        top: 135px;
        right: 256px;
        width: 130px;
        height: 100px;
        background-image: radial-gradient(#ff96002e 2px, transparent 2px);
        background-size: 8px 8px;
        opacity: 0.4;
        z-index: 0;
        pointer-events: none;
}

.step-blocks h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-blockss h3 {
    color: #e4b92e;
        font-size: 2rem;
        margin: 0 0 10px;
        letter-spacing: 1px;
        font-family: 'BebasNeue', sans-serif;
        margin-left: 180px;
}

.step-block h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-block p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.4;
    margin: 0;
}

.step-blocks p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.6;
    margin: 0;
}

.step-blockss p {
    font-size: 0.9rem;
        color: #939393;
        line-height: 1.6;
        margin: 0;
        margin-left: 180px;
}

.glow-curve1234 {
    position: absolute;
    left: -200px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: none;
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

    .step-1 { top: 0; left: 0px; }
    .step-2 { top: 0px; right: 0px; height: 174px !important; }
    .step-3 { top: 220px; left: 0px; height: 174px !important; }
    .step-4 { top: 220px; right: 0px; }
    .step-5 { top: 440px; left: 0px; height: 228px !important;}
    .step-6 { top: 440px; right: 0px; height: 228px !important; }
    .step-7 { top: 700px; left: 0px; height: 238px !important; }
    .step-8 { top: 700px; right: 0px; }

    .steps-1 { top: -60px; left: 0px; }
    .steps-2 { top: -60px; left: 206px; }
    .steps-3 { top: 165px; left: 115px; }
    .steps-4 { top: 165px; left: 321px; }
    .steps-5 { top: 385px; left: 0px; }
    .steps-6 { top: 385px; left: 206px; }
    .steps-7 { top: 223px; left: 883px; }
    .steps-8 { top: 223px; left: 1313px; }
  
/*======FAQ==========*/
.faq-section {
    width: 100%;
    background-color: #000;
    padding: 60px 20px;
    box-sizing: border-box;
    color: #939393;
    font-family: Arial, sans-serif;
    position: relative;
    box-shadow: none;
    min-height: 100px;
}

.faq-list {
    gap: 15px;
    margin-top: -20px;
}

.faq-item {
    padding: 10px 24px;
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
}

.faq-toggle-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}

    .faq__coins img {
        max-width: 80px;
        height: auto;
        display: block;
        opacity: 1;
    }

.faq__coins123 img {
    display: none;
}

.faq__coins--left {
    margin-top: 0px !important;
    margin-left: 0px !important;
}

    .faq__coins--right {
        right: 15px;
        margin-top: 30px;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1rem;
}

.faq-title {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #fff;
    margin-top: -50px;
}
  /*CООБЩЕСТВО*/
  .tokenh31 {
        transform: translate(-5px, 77px);
        font-size: 3.68rem;
    }

    html[lang="en"] .tokenh31 {
        font-size: 4rem;
        transform: translate(-1px, 79px);
    }

   /* Центрирование текста в секции "Сообщество" */
  .community__wrapper,
  .community__title,
  .community__subtitle {
    text-align: center;
    color: #000;
    font-size: 30px;
    margin-top: -50px;

  }

  .community__icon1 {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.community__icon-small1 {
    font-size: 1rem;
    opacity: 0.9;
    margin-left: 15px;
}

.community__icon-big1 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-left: 10px;
    }

.community__icon_you_ru {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    transform: translateY(12px);
}

    .community__icon-big_you_ru {
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(10px);
}

    .community__icon-small_you_ru {
    font-size: 0.9rem;
    opacity: 0.9;
    transform: translateY(10px);
}
  
  /* Убираем отрицательные отступы у подзаголовка, если они есть */
  .community__subtitle {
    margin-top: -35px;
        font-size: 18px;
  }

  /* Расположение иконок: выравниваем по центру и уменьшаем промежутки */
  .community__icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: -20px;
    }

    .community__icon-block {
        width: 45%; /* Две иконки в ряд */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .community__icon-block:nth-child(3) {
        width: 100%; /* Третья на всю ширину */
        margin-top: 20px;
    }
.community__icon-big {
    font-size: 1.5rem;
    font-weight: 600;
}
  
  /* Если нужно, чтобы каждый блок занимал фиксированную ширину */
  .community__icon-block {
    flex: 0 0 auto; /* Автоматическая ширина, без растяжения */
  }

  /*ФУТЕР*/
  .footer {
    background: linear-gradient(135deg, #000, #000000);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    padding-bottom: 20px;
}

.footer__right img {
    display: none;
}

.footmori img {

    width: 300px;
    margin-top: -200px;
}

.footer__disclaimer p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

}
@media (min-width: 375px) and (max-width: 390px) {
  #home.hero {
    height: calc(100vh - 70px);
  }

          .mobile-image {
        width: 150%;
        margin-left: -140px;
        margin-top: -80px;
        transform: translate(0px, 30px);
    }

    .header__right {
    display: flex;
    align-items: center;
    margin-right: 15px;
    transform: scale(0.8);
    margin-left: -15px;
}

.mobile-slider-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        margin-top: 150px;
    }

.roadmap-container {
    width: 100%;
    height: 45vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
}


  /* Скрыть кнопку в хедере */
  .header__buy-btn {
    display: block;
    background-color: #e4b92e;
  }

  .about__images {
    display: none;
  }

  .nav-arrow {
    display: none;
  }
  .arrow-icon {
  display: none;
  }

  .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: #000; /* Цвет шапки */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
}

.mori-tooltip {
    min-width: 80vw;     /* на очень маленьких экранах всегда минимум 80% */
    max-width: 98vw;     /* почти во всю ширину */
    width: 92vw;         /* основная ширина */
    font-size: 1.08em;   /* чуть крупнее текст если надо */
    left: 50%;
    transform: translateX(-50%); /* центрирует если используешь position: absolute */
  }
      .main-img-1 {
        position: absolute;
        top: 75%;
        left: 13%;
        width: 220px;
        height: auto;
        z-index: 2;
    }
  
  /* Для секции hero – изменить порядок блоков */
  .hero {
    flex-direction: column;
    padding: 20px;
    min-height: auto; /* высота определяется контентом */
  }

  /* Контент (текст + крипто бокс) – показывать первым */
  .hero__content {
    max-width: 100%;
    order: 1;
  }

  .my-lines-svg3 {
    position: absolute;
    top: 584px;
    right: 10px;
    z-index: 10;
    transform: rotate(326deg);
}

.my-lines-text3 {
    position: absolute;
    top: 115px;
    right: -194px;
    z-index: 10;
}

.my-lines-text2 {
    position: absolute;
    top: 345px;
    right: -55px;
    z-index: 10;
}

.my-lines-svg2 {
    position: absolute;
    top: 400px;
    right: 230px;
    z-index: 10;
    transform: rotate(28deg);
}

.my-lines-svg4 {
    position: absolute;
    top: 540px;
    right: 20px;
    z-index: 10;
    transform: rotate(73deg);
}

.my-lines-text4 {
    position: absolute;
    top: 465px;
    right: -380px;
    z-index: 10;
}

.my-lines-svg {
    position: absolute;
    top: 503px;
    right: 36px;
    z-index: 10;
    transform: rotate(329deg);
}
.my-lines-text {
    position: absolute;
    top: 610px;
    right: -135px;
    z-index: 10;
}

.my-lines-text1 {
    position: absolute;
    top: 441px;
    right: -20px;
    z-index: 10;
}

.my-lines-svg1 {
    position: absolute;
    top: 478px;
    right: 53px;
    z-index: 10;
}

  /* Изображение – показывать после контента */
  .hero__image {
    max-width: 100%;
    justify-content: center;
    order: 2;
    margin-top: -20px; /* отступ сверху, если нужно */
    margin-bottom: 0;
    transform: translate(-40px, 20px);
  }

  .hero__image img {
    width: 140%;
    height: auto;
}

  h3.hero__title {
    font-family: "TT Firs Neue", sans-serif;
        font-size: 1.6rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: .3rem;
        margin-top: 20px;
        font-weight: 500;
}

        p.hero__subtitle {
        font-size: 1.8rem;
        line-height: 1.133;
        color: #fff;
        margin-top: -10px;
        font-weight: 500;
    }

        .btn {
        font-size: 1.4rem;
    }

    .crypto-box__title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: 'TT Firs Neue';
    font-weight: 500;
        margin-top: 2px;
        color: #000;
}

.header__logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 4px;
}
  .about__wrapper {
    margin: 10px !important;
    padding: 24px !important;
}
.about__text {
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 1.4rem;
        font-family: 'Gilroy';
 }
  
  /* Центрируем график */
  .tokenomics__chart {
    width: 100%;
    margin: 0 auto;
  }
  
  /* Сам график центрируется */
  .tokenomics__chart {
    margin: 0 auto;
  }

   .buy__title {
    text-align: left;
  }

  .buy__blocks {
    flex-direction: column;
    align-items: center;
  }

  .buy-block {
    width: 100%;
    max-width: 500px; /* Ограничиваем ширину на мобильных */
  }

  .buy__button {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  } /* <-- Закрываем скобку здесь! */

  .btn-buy-dex {
    width: 100%;
  }

  .tokenh3 {
    color: #000;
    color: #000;
    text-transform: uppercase;
    transform: translate(2px, 124px);
    font-size: 3.85rem;
    font-weight: 600;
}

  .contract-ton-label {
    display: inline;
  }
  .contract-label {
    display: none;
  }

  .buy-button-wrap {
        width: auto;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-top: 50px;
    }

  .btn-part {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    width: auto;
    min-height: 40px;
    white-space: nowrap;
  }

  .btn-part.top-part {
    background-color: #fcd535;
    color: black;
    font-weight: 600;
    height: 50px;
  }

  .btn-part.bottom-part {
    background-color: #1f1f1f;
    color: white;
    flex-direction: row;
    font-size: 13px;
    height: 53px;
        margin-top: -1px;
  }

  .btn-divider-line {
    display: none;
  }

  .contract-address {
    font-size: 13px;
    font-weight: 500;
  }

  .copy-icon {
    font-size: 16px;
    margin-left: 4px;
  }


/*О Токене*/
            .tokenh4 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -468%);
        font-size: 5.24rem;
        opacity: 1;
        pointer-events: none;
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
    }
    .coin--small {
    display: none !important;
  }

.about__wrapper0 {
    max-width: 1200px;
        margin: 0 auto;
        background-color: #000000;
        border: 1px solid #000000;
        border-radius: 0px;
        padding: 40px;
        display: flex;
        gap: 20px;
        color: #313131;
        overflow: hidden;
        position: relative;
        margin-top: 100px;
}

.about__title0 {
  font-family: "TT Firs Neue", sans-serif;
        font-size: 2rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 0px;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal;
}

.about__text0 {
            margin-bottom: 16px;
        line-height: 1.5;
        font-size: 1.1rem;
        color: #939393;
        margin-left: 0px;
        z-index: 2;
        position: relative;
}

.faq-lists {
  display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -120px;
}



    .faq-items {
        background-color: rgb(0 0 0);
        border-radius: 20px;
        padding: 1px 24px;
        transition: background-color 0.3s ease;
        overflow: hidden;
        max-width: 375px;
        margin: 0 auto;
        position: relative;
        /* display: block; */
        /* padding: 0 0px; */
    }

.faq-question-texts {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
    z-index: 2;
}

.faq-toggle-circles {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}
.coin--smalls {
    width:100px;
  }

  .faq-answers {
  max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1.4rem;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #939393;
    font-size: 1rem;
    margin-left: 0px;
}

.newf {
  margin-left: 0px;
}

.highlight-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #939393;
}

.faq-items.active .faq-answers {
    max-height: 1470px;
}
.coin--smalls {
        width: 467px;
        z-index: 1;
        opacity: 0.15;
        top: -200px;
    }
/*ТОКЕНОМИКА*/
.tokenomics-section {
        padding: 100px 20px;
        background-size: 125% auto;
        background-position: center center;
        height: 700px;
        overflow: hidden;
        background-position: center 320px;
    }

  .tokenomics-section__content {
    /* Убираем или уменьшаем масштаб */
    transform: scale(0.82);
        margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(3, 120px); /* 3 колонки по 120px */
    justify-content: center;                /* Центрируем всю сетку */
    gap: 20px;
    margin-bottom: 150px;
  }

  .tokenomics-item {
    width: 120px; /* уменьшаем ширину */
    padding: 15px 8px;
  }

  .tokenomics-item__title {
    font-size: 4.4rem; /* уменьшаем шрифт процентов */
  }

  .tokenomics-item__desc {
    font-size: 1.1rem; /* чуть меньше описание */
  }

  .tokenomics-item:nth-child(4) {
    grid-column: 1;
        margin-left: 70px;
  }
  .tokenomics-item:nth-child(5) {
    grid-column: 2;
        margin-left: 60px;
  }

          .tokenomics-btn {
        margin-top: 140px;
        font-size: 1.1rem;
        transform: translate(-1px, -90px) scale(1.4);
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-left: 1px;
    }


  .tokenomics-svg-wrapper {
    position: absolute;
    top: 550px;
    right: 50px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 1;
    transform: scale(1);
}


  .tokenomics-footer {
    font-size: 0.9rem;
        max-width: 90%;
        transform: translate(-1px, -75px) scale(1.2);
  }

      .tokenh3 {
        font-size: 3.76rem;
        transform: translate(0px, 58px);
    }

      html[lang="en"] .tokenh3 {
        font-size: 3.94rem;
        transform: translate(0px, 55px);
    }

      html[lang="en"] .tokenh4 {
        font-size: 8.2rem !important;
        transform: translate(-50%, -295%) !important;
    }

  /* ROADMAP */

  .fade-left {
    left: 0;
        background: none;
}

.fade-right {
            right: 0;
        width: 0px;
        background: none;
    }

.roadmap-title {
    text-align: center;
    font-family: 'TT Firs Neue', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #e4b92e;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-left: 0px;
    margin-top: -100px !important;
    
}
.roadmap-container {
  padding: 0 10px;
}

.roam_secti {
  padding: 100px 20px;
    background-size: 125% auto;
}
 #lineWrapper {
    display: none;
  }

  .mobile-slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
  }

      .mobile-line {
        position: relative;
        width: 170%;
        height: 2px;
        background: linear-gradient(to right, transparent, yellow, transparent);
        margin-bottom: 30px;
    }
  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

  /* Чтобы выровнять всю обёртку красиво */
.mobile-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: -450px;
}



  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

/* Чтобы выровнять всю обёртку красиво */
        .mobile-slider-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 60px;
        margin-top: 230px;
    }



  /* КАК КУПИТЬ? */
  .buy__blocks {
    flex-direction: column;
    gap: 20px;
  }
  
  /* В каждом блоке меняем направление на строку */
  .buy-block {
    flex-direction: row;
    align-items: center;
    padding: 15px 10px; /* можно подкорректировать, если нужно */
  }
  
  /* Убираем отступ снизу у номера */
  .buy-block__number {
    margin-bottom: 0;
    margin-right: 10px;
  }
  
  /* Заставляем текст идти в одну строку вместе с номером */
  .buy-block p {
     white-space: normal;
    margin: 0;
    flex: 1 1 0;
    font-size: 1.2rem; /* если нужно уменьшить шрифт для мобильной версии */
  }

  .section-buy {
    width: 100%;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    margin-top: -100px;
  }
  .faq__coins1 img {
        max-width: 100px;
        height: auto;
        display: block;
        opacity: 1;
        margin-top: 204px;
    }
      .faq__coins--right1 {
        right: 20px;
        margin-top: -87px;
        z-index: 2;
        max-width: 70px !important;
    }

  .buy__title {
        text-align: center;
        /* text-align: center; */
        font-family: 'TT Firs Neue', sans-serif;
        font-size: 1.8rem;
        font-weight: 600;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-left: 0px;
        margin-top: 40px;
    }
  /* Капитализация */
  .roadmap-section {
    width: 100%;
        padding: 20px 20px;
        background: #000;
        color: #fff;
        position: relative;
        z-index: 1;
        margin-top: 10px !important;
        min-height: 100px;
}

.faq-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
}

    .slide-img {
        width: 320px;
        height: 315px;
        object-fit: cover;
        border-radius: 20px;
    }

.step-number {
        position: absolute;
        font-size: 7.2rem;
        color: #e4b92e;
        opacity: 0.07;
        font-weight: bold;
        top: -67px;
        left: -5px;
        font-family: 'BebasNeue', sans-serif;
        z-index: -1;
    }

    .step-numbers {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -66px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbers1 {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -70px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numberss {
    position: absolute;
    font-size: 5.85rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbersss {
    position: absolute;
    font-size: 5.86rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.slider-track {
    position: relative;
    height: 320px;
}


.mori-slider {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  padding: 60px 0;
}

.mori-slider-window {
  overflow: hidden;
  width: 100%;
}

.mori-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: fit-content;
}

.mori-slider-slide {
  display: flex;
  gap: 270px;
  margin-left: 100px;
  flex: 0 0 100%;
  justify-content: center;
}

.mori-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #e4b92e;
  font-size: 2.5rem;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mori-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mori-slider-arrow.left {
  left: 10px;
}

.mori-slider-arrow.right {
  right: 10px;
}


.process-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 100px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #939393;
    margin-left: 0px !important;
    text-transform: uppercase;
}

.process-title2 {
    font-size: 1.2rem;
    margin-bottom: 90px;
    text-transform: uppercase;
    letter-spacing: .0rem;
    font-weight: 500;
    margin-top: -80px;
    color: #939393;
    margin-left: 0px !important;
}

    .step-number {
        position: absolute;
        font-size: 6.7rem;
        color: #e4b92e;
        opacity: 0.07;
        font-weight: bold;
        top: -75px;
        left: -5px;
        font-family: 'BebasNeue', sans-serif;
        z-index: -1;
    }

.step-block {
    position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 180px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.step-blocks {
     position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 390px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    }

    .step-blockss {
     position: absolute;
        background: #0e0e0e00;
        padding: 30px;
        border-radius: 14px;
        width: 390px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .step-blocks::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100px;
    background-image: radial-gradient(#ff96002e 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.step-blockss::before {
    content: "";
        position: absolute;
        top: 135px;
        right: 256px;
        width: 130px;
        height: 100px;
        background-image: radial-gradient(#ff96002e 2px, transparent 2px);
        background-size: 8px 8px;
        opacity: 0.4;
        z-index: 0;
        pointer-events: none;
}

.step-blocks h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-blockss h3 {
    color: #e4b92e;
        font-size: 2rem;
        margin: 0 0 10px;
        letter-spacing: 1px;
        font-family: 'BebasNeue', sans-serif;
        margin-left: 180px;
}

.step-block h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-block p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.4;
    margin: 0;
}

.step-blocks p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.6;
    margin: 0;
}

.step-blockss p {
    font-size: 0.9rem;
        color: #939393;
        line-height: 1.6;
        margin: 0;
        margin-left: 180px;
}

.glow-curve1234 {
    position: absolute;
    left: -200px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: none;
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

    .step-1 { top: 0; left: 0px; }
    .step-2 { top: 0px; right: 0px; height: 174px !important; }
    .step-3 { top: 220px; left: 0px; height: 174px !important; }
    .step-4 { top: 220px; right: 0px; }
    .step-5 { top: 440px; left: 0px; height: 228px !important;}
    .step-6 { top: 440px; right: 0px; height: 228px !important; }
    .step-7 { top: 700px; left: 0px; height: 238px !important; }
    .step-8 { top: 700px; right: 0px; }

    .steps-1 { top: -60px; left: 0px; }
    .steps-2 { top: -60px; left: 206px; }
    .steps-3 { top: 165px; left: 115px; }
    .steps-4 { top: 165px; left: 321px; }
    .steps-5 { top: 385px; left: 0px; }
    .steps-6 { top: 385px; left: 206px; }
    .steps-7 { top: 223px; left: 883px; }
    .steps-8 { top: 223px; left: 1313px; }
  
/*======FAQ==========*/
.faq-section {
    width: 100%;
    background-color: #000;
    padding: 60px 20px;
    box-sizing: border-box;
    color: #939393;
    font-family: Arial, sans-serif;
    position: relative;
    box-shadow: none;
    min-height: 100px;
}

.community__icon1 {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.community__icon-small1 {
    font-size: 1rem;
    opacity: 0.9;
    margin-left: 15px;
}

.community__icon-big1 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-left: 10px;
    }

.community__icon_you_ru {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    transform: translateY(12px);
}

    .community__icon-big_you_ru {
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(10px);
}

    .community__icon-small_you_ru {
    font-size: 0.9rem;
    opacity: 0.9;
    transform: translateY(10px);
}


.faq-list {
    gap: 15px;
    margin-top: -20px;
}

.faq-item {
    padding: 10px 24px;
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
}

.faq-toggle-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}

    .faq__coins img {
        max-width: 80px;
        height: auto;
        display: block;
        opacity: 1;
    }

.faq__coins123 img {
    display: none;
}

.faq__coins--left {
    margin-top: 0px !important;
    margin-left: 0px !important;
}

    .faq__coins--right {
        right: 15px;
        margin-top: 30px;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1rem;
}

.faq-title {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #fff;
    margin-top: -50px;
}
  /*CООБЩЕСТВО*/
      .tokenh31 {
        transform: translate(0px, 77px);
        font-size: 3.44rem;
    }

    html[lang="en"] .tokenh31 {
        font-size: 4.2rem;
        transform: translate(0px, 81px);
    }

   /* Центрирование текста в секции "Сообщество" */
  .community__wrapper,
  .community__title,
  .community__subtitle {
    text-align: center;
    color: #000;
    font-size: 30px;
    margin-top: -50px;

  }
  
  /* Убираем отрицательные отступы у подзаголовка, если они есть */
  .community__subtitle {
    margin-top: -35px;
        font-size: 18px;
  }

  /* Расположение иконок: выравниваем по центру и уменьшаем промежутки */
  .community__icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: -20px;
    }

    .community__icon-block {
        width: 45%; /* Две иконки в ряд */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .community__icon-block:nth-child(3) {
        width: 100%; /* Третья на всю ширину */
        margin-top: 20px;
    }
.community__icon-big {
    font-size: 1.5rem;
    font-weight: 600;
}
  
  /* Если нужно, чтобы каждый блок занимал фиксированную ширину */
  .community__icon-block {
    flex: 0 0 auto; /* Автоматическая ширина, без растяжения */
  }

  /*ФУТЕР*/
  .footer {
    background: linear-gradient(135deg, #000, #000000);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    padding-bottom: 20px;
}

.footer__right img {
    display: none;
}

.footmori img {

    width: 300px;
    margin-top: -200px;
}

.footer__disclaimer p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

}


@media (min-width: 320px) and (max-width: 350px) {
  #home.hero {
    height: calc(100vh - 70px);
  }

          .mobile-image {
            width: 150%;
        margin-left: -150px;
        margin-top: -50px;
        transform: translate(0px, 30px);
        }


  /* Скрыть кнопку в хедере */
  .header__buy-btn {
    display: block;
    background-color: #e4b92e;
  }

  .about__images {
    display: none;
  }
  
  /* Для секции hero – изменить порядок блоков */
  .hero {
    flex-direction: column;
    padding: 20px;
    min-height: auto; /* высота определяется контентом */
  }

  /* Контент (текст + крипто бокс) – показывать первым */
  .hero__content {
    max-width: 100%;
    order: 1;
  }

  .my-lines-svg3 {
    position: absolute;
    top: 584px;
    right: 10px;
    z-index: 10;
    transform: rotate(326deg);
}

.my-lines-text3 {
    position: absolute;
    top: 115px;
    right: -194px;
    z-index: 10;
}

.my-lines-text2 {
    position: absolute;
    top: 345px;
    right: -55px;
    z-index: 10;
}

.my-lines-svg2 {
    position: absolute;
    top: 400px;
    right: 230px;
    z-index: 10;
    transform: rotate(28deg);
}

.my-lines-svg4 {
    position: absolute;
    top: 540px;
    right: 20px;
    z-index: 10;
    transform: rotate(73deg);
}

.my-lines-text4 {
    position: absolute;
    top: 465px;
    right: -380px;
    z-index: 10;
}

.my-lines-svg {
    position: absolute;
    top: 503px;
    right: 36px;
    z-index: 10;
    transform: rotate(329deg);
}
.my-lines-text {
    position: absolute;
    top: 610px;
    right: -135px;
    z-index: 10;
}

.my-lines-text1 {
    position: absolute;
    top: 441px;
    right: -20px;
    z-index: 10;
}

.my-lines-svg1 {
    position: absolute;
    top: 478px;
    right: 53px;
    z-index: 10;
}

  /* Изображение – показывать после контента */
  .hero__image {
    max-width: 100%;
    justify-content: center;
    order: 2;
    margin-top: -20px; /* отступ сверху, если нужно */
    margin-bottom: 0;
    transform: translate(-40px, 20px);
  }

  .hero__image img {
    width: 140%;
    height: auto;
}

  h3.hero__title {
    font-family: "TT Firs Neue", sans-serif;
        font-size: 1.6rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: .3rem;
        margin-top: 20px;
        font-weight: 500;
}

    p.hero__subtitle {
        font-size: 2rem;
        line-height: 1.133;
        color: #fff;
        margin-top: -10px;
        font-weight: 500;
    }

        .btn {
        font-size: 1.4rem;
    }

    .crypto-box__title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: 'TT Firs Neue';
    font-weight: 500;
        margin-top: 2px;
        color: #000;
}

.header__logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 4px;
}
  .about__wrapper {
    margin: 10px !important;
    padding: 24px !important;
}
.about__text {
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 1.4rem;
        font-family: 'Gilroy';
 }
  
  /* Центрируем график */
  .tokenomics__chart {
    width: 100%;
    margin: 0 auto;
  }
  
  /* Сам график центрируется */
  .tokenomics__chart {
    margin: 0 auto;
  }

   .buy__title {
    text-align: left;
  }

  .buy__blocks {
    flex-direction: column;
    align-items: center;
  }

  .buy-block {
    width: 100%;
    max-width: 500px; /* Ограничиваем ширину на мобильных */
  }

  .buy__button {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  } /* <-- Закрываем скобку здесь! */

  .btn-buy-dex {
    width: 100%;
  }

  .tokenh3 {
    color: #000;
    color: #000;
    text-transform: uppercase;
    transform: translate(2px, 124px);
    font-size: 3.85rem;
    font-weight: 600;
}

  .contract-ton-label {
    display: inline;
  }
  .contract-label {
    display: none;
  }

  .buy-button-wrap {
    width: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
  }

  .btn-part {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    width: auto;
    min-height: 40px;
    white-space: nowrap;
  }

  .btn-part.top-part {
    background-color: #fcd535;
    color: black;
    font-weight: 600;
    height: 50px;
  }

  .btn-part.bottom-part {
    background-color: #1f1f1f;
    color: white;
    flex-direction: row;
    font-size: 13px;
    height: 53px;
        margin-top: -1px;
  }

  .btn-divider-line {
    display: none;
  }

  .contract-address {
    font-size: 13px;
    font-weight: 500;
  }

  .copy-icon {
    font-size: 16px;
    margin-left: 4px;
  }


/*О Токене*/
.tokenh4 {
         position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50.2%, -256%);
        font-size: 6.1rem;
        opacity: 1;
        pointer-events: none;
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
}

.about__wrapper0 {
    max-width: 1200px;
        margin: 0 auto;
        background-color: #000000;
        border: 1px solid #000000;
        border-radius: 0px;
        padding: 40px;
        display: flex;
        gap: 20px;
        color: #313131;
        overflow: hidden;
        position: relative;
        margin-top: 100px;
}

.about__title0 {
  font-family: "TT Firs Neue", sans-serif;
        font-size: 2rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 0px;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal;
}

.about__text0 {
            margin-bottom: 16px;
        line-height: 1.5;
        font-size: 1.1rem;
        color: #939393;
        margin-left: 0px;
        z-index: 2;
        position: relative;
}

.faq-lists {
  display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -120px;
}



.faq-items {
    background-color: rgb(0 0 0);
    border-radius: 20px;
    padding: 1px 24px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    /* display: block; */
    /* padding: 0 0px; */
}

.faq-question-texts {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
    z-index: 2;
}

.faq-toggle-circles {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}
.coin--smalls {
    width:100px;
  }

  .faq-answers {
  max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1.4rem;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #939393;
    font-size: 1rem;
    margin-left: 0px;
}

.newf {
  margin-left: 0px;
}

.highlight-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #939393;
}

.faq-items.active .faq-answers {
    max-height: 1470px;
}
.coin--smalls {
        width: 467px;
        z-index: 1;
        opacity: 0.15;
        top: -200px;
    }
/*ТОКЕНОМИКА*/
.tokenomics-section {
        padding: 100px 20px;
        background-size: 125% auto;
        background-position: center center;
        height: 1000px;
        overflow: hidden;
        background-position: center 320px;
    }

  .tokenomics-section__content {
    /* Убираем или уменьшаем масштаб */
    transform: scale(0.82);
        margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(3, 120px); /* 3 колонки по 120px */
    justify-content: center;                /* Центрируем всю сетку */
    gap: 20px;
    margin-bottom: 150px;
  }

  .tokenomics-item {
    width: 120px; /* уменьшаем ширину */
    padding: 15px 8px;
  }

  .tokenomics-item__title {
    font-size: 4.4rem; /* уменьшаем шрифт процентов */
  }

  .tokenomics-item__desc {
    font-size: 1.1rem; /* чуть меньше описание */
  }

  .tokenomics-item:nth-child(4) {
    grid-column: 1;
        margin-left: 70px;
  }
  .tokenomics-item:nth-child(5) {
    grid-column: 2;
        margin-left: 60px;
  }

          .tokenomics-btn {
        margin-top: 500px;
        font-size: 1.1rem;
        transform: translate(-1px, -90px) scale(1.4);
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-left: 1px;
    }


  .tokenomics-svg-wrapper {
    position: absolute;
    top: 550px;
    right: 50px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 1;
    transform: scale(1);
}


  .tokenomics-footer {
    font-size: 0.9rem;
        max-width: 90%;
        transform: translate(-1px, -75px) scale(1.2);
  }

  .tokenh3 {
    font-size: 4.1rem;
        transform: translate(2px, 70px);
  }

  html[lang="en"] .tokenh3 {
    font-size: 4.1rem;
        transform: translate(2px, 70px);
  }

  html[lang="en"] .tokenh4 {
    transform: translate(px, 247px) !important;
    font-size: 8.48rem !important;
    transform: translate(-49.6%, -210%) !important;
}

  /* ROADMAP */

  .fade-left {
    left: 0;
        background: none;
}

.fade-right {
            right: 0;
        width: 0px;
        background: none;
    }

.roadmap-title {
    text-align: center;
    font-family: 'TT Firs Neue', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #e4b92e;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-left: 0px;
    margin-top: -100px !important;
    
}
.roadmap-container {
  padding: 0 10px;
}

.roam_secti {
  padding: 100px 20px;
    background-size: 125% auto;
}
 #lineWrapper {
    display: none;
  }

  .mobile-slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
  }

  .mobile-line {
    position: relative;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, yellow, transparent);
    margin-bottom: 30px;

  }
  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

  /* Чтобы выровнять всю обёртку красиво */
.mobile-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: -450px;
}



  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

/* Чтобы выровнять всю обёртку красиво */
.mobile-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: -400px;
}



  /* КАК КУПИТЬ? */
  .buy__blocks {
    flex-direction: column;
    gap: 20px;
  }
  
  /* В каждом блоке меняем направление на строку */
  .buy-block {
    flex-direction: row;
    align-items: center;
    padding: 15px 10px; /* можно подкорректировать, если нужно */
  }
  
  /* Убираем отступ снизу у номера */
  .buy-block__number {
    margin-bottom: 0;
    margin-right: 10px;
  }
  
  /* Заставляем текст идти в одну строку вместе с номером */
  .buy-block p {
     white-space: normal;
    margin: 0;
    flex: 1 1 0;
    font-size: 1.2rem; /* если нужно уменьшить шрифт для мобильной версии */
  }

  .section-buy {
    width: 100%;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    margin-top: -100px;
  }
  .faq__coins1 img {
    max-width: 100px;
        height: auto;
        display: block;
        opacity: 1;
        margin-top: 174px;
  }

  .faq__coins--right1 {
    right: 20px;
    margin-top: -87px;
    z-index: 2;
    max-width: 100px !important;
  }

  .buy__title {
    text-align: left;
        /* text-align: center; */
        font-family: 'TT Firs Neue', sans-serif;
        font-size: 1.8rem;
        font-weight: 600;
        color: #ffffff;
        
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-left: 0px;
        margin-top: 40px;
  }

  /* Капитализация */
  .roadmap-section {
    width: 100%;
        padding: 20px 20px;
        background: #000;
        color: #fff;
        position: relative;
        z-index: 1;
        margin-top: 10px !important;
        min-height: 100px;
}

.faq-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
}

.slide-img {
    width: 345px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

.step-number {
        position: absolute;
        font-size: 7.2rem;
        color: #e4b92e;
        opacity: 0.07;
        font-weight: bold;
        top: -67px;
        left: -5px;
        font-family: 'BebasNeue', sans-serif;
        z-index: -1;
    }

    .step-numbers {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -66px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbers1 {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -70px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numberss {
    position: absolute;
    font-size: 5.85rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbersss {
    position: absolute;
    font-size: 5.86rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.slider-track {
    position: relative;
    height: 320px;
}


.mori-slider {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  padding: 60px 0;
}

.mori-slider-window {
  overflow: hidden;
  width: 100%;
}

.mori-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: fit-content;
}

.mori-slider-slide {
  display: flex;
  gap: 270px;
  margin-left: 100px;
  flex: 0 0 100%;
  justify-content: center;
}

.mori-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #e4b92e;
  font-size: 2.5rem;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mori-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mori-slider-arrow.left {
  left: 10px;
}

.mori-slider-arrow.right {
  right: 10px;
}


.process-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 100px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #939393;
    margin-left: 0px !important;
    text-transform: uppercase;
}

.process-title2 {
    font-size: 1.2rem;
    margin-bottom: 90px;
    text-transform: uppercase;
    letter-spacing: .0rem;
    font-weight: 500;
    margin-top: -80px;
    color: #939393;
    margin-left: 0px !important;
}

.step-number {
    position: absolute;
    font-size: 6rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -105px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
}

.step-block {
    position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 180px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.step-blocks {
     position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 390px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    }

    .step-blockss {
     position: absolute;
        background: #0e0e0e00;
        padding: 30px;
        border-radius: 14px;
        width: 390px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .step-blocks::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100px;
    background-image: radial-gradient(#ff96002e 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.step-blockss::before {
    content: "";
        position: absolute;
        top: 135px;
        right: 256px;
        width: 130px;
        height: 100px;
        background-image: radial-gradient(#ff96002e 2px, transparent 2px);
        background-size: 8px 8px;
        opacity: 0.4;
        z-index: 0;
        pointer-events: none;
}

.step-blocks h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-blockss h3 {
    color: #e4b92e;
        font-size: 2rem;
        margin: 0 0 10px;
        letter-spacing: 1px;
        font-family: 'BebasNeue', sans-serif;
        margin-left: 180px;
}

.step-block h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-block p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.4;
    margin: 0;
}

.step-blocks p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.6;
    margin: 0;
}

.step-blockss p {
    font-size: 0.9rem;
        color: #939393;
        line-height: 1.6;
        margin: 0;
        margin-left: 180px;
}

.glow-curve1234 {
    position: absolute;
    left: -200px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: none;
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

    .step-1 { top: 0; left: 0px; }
    .step-2 { top: 0px; right: 0px; height: 174px !important; }
    .step-3 { top: 220px; left: 0px; height: 174px !important; }
    .step-4 { top: 220px; right: 0px; }
    .step-5 { top: 440px; left: 0px; height: 228px !important;}
    .step-6 { top: 440px; right: 0px; height: 228px !important; }
    .step-7 { top: 700px; left: 0px; height: 238px !important; }
    .step-8 { top: 700px; right: 0px; }

    .steps-1 { top: -60px; left: 0px; }
    .steps-2 { top: -60px; left: 206px; }
    .steps-3 { top: 165px; left: 115px; }
    .steps-4 { top: 165px; left: 321px; }
    .steps-5 { top: 385px; left: 0px; }
    .steps-6 { top: 385px; left: 206px; }
    .steps-7 { top: 223px; left: 883px; }
    .steps-8 { top: 223px; left: 1313px; }
  
/*======FAQ==========*/
.faq-section {
    width: 100%;
    background-color: #000;
    padding: 60px 20px;
    box-sizing: border-box;
    color: #939393;
    font-family: Arial, sans-serif;
    position: relative;
    box-shadow: none;
    min-height: 100px;
}

.faq-list {
    gap: 15px;
    margin-top: -20px;
}

.faq-item {
    padding: 10px 24px;
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
}

.faq-toggle-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}

.faq__coins img {
    max-width: 100px;
    height: auto;
    display: block;
    opacity: 1;
}

.faq__coins123 img {
    display: none;
}

.faq__coins--left {
    margin-top: 0px !important;
    margin-left: 0px !important;
}

.faq__coins--right {
    right: 55px;
    margin-top: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1rem;
}

.faq-title {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #fff;
    margin-top: -50px;
}
  /*CООБЩЕСТВО*/
  .tokenh31 {
    transform: translate(-20px, 87px);
        font-size: 4rem;
}

html[lang="en"] .tokenh31 {
    font-size: 4.3rem;
    transform: translate(-20px, 40px);
  }

   /* Центрирование текста в секции "Сообщество" */
  .community__wrapper,
  .community__title,
  .community__subtitle {
    text-align: center;
    color: #000;
    font-size: 30px;
    margin-top: -50px;

  }
  
  /* Убираем отрицательные отступы у подзаголовка, если они есть */
  .community__subtitle {
    margin-top: -35px;
        font-size: 18px;
  }

  /* Расположение иконок: выравниваем по центру и уменьшаем промежутки */
  .community__icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: -20px;
    }

    .community__icon-block {
        width: 45%; /* Две иконки в ряд */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .community__icon-block:nth-child(3) {
        width: 100%; /* Третья на всю ширину */
        margin-top: 20px;
    }
.community__icon-big {
    font-size: 1.5rem;
    font-weight: 600;
}
  
  /* Если нужно, чтобы каждый блок занимал фиксированную ширину */
  .community__icon-block {
    flex: 0 0 auto; /* Автоматическая ширина, без растяжения */
  }

  /*ФУТЕР*/
  .footer {
    background: linear-gradient(135deg, #000, #000000);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    padding-bottom: 20px;
}

.footer__right img {
    display: none;
}

.footmori img {

    width: 300px;
    margin-top: -200px;
}

.footer__disclaimer p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

}

@media (min-width: 360px) and (max-width: 374px) {
  #home.hero {
    height: calc(100vh - 70px);
  }

          .mobile-image {
        width: 150%;
        margin-left: -130px;
        margin-top: -50px;
        transform: translate(0px, 30px);
    }

    .header__right {
    display: flex;
    align-items: center;
    margin-right: 15px;
    transform: scale(0.8);
    margin-left: -15px;
}

.mobile-slider-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        margin-top: 150px;
    }

.roadmap-container {
    width: 100%;
    height: 45vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
}


  /* Скрыть кнопку в хедере */
  .header__buy-btn {
    display: block;
    background-color: #e4b92e;
  }

  .about__images {
    display: none;
  }

  .nav-arrow {
    display: none;
  }
  .arrow-icon {
  display: none;
  }

  .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: #000; /* Цвет шапки */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
}

.mori-tooltip {
    min-width: 80vw;     /* на очень маленьких экранах всегда минимум 80% */
    max-width: 98vw;     /* почти во всю ширину */
    width: 92vw;         /* основная ширина */
    font-size: 1.08em;   /* чуть крупнее текст если надо */
    left: 50%;
    transform: translateX(-50%); /* центрирует если используешь position: absolute */
  }
      .main-img-1 {
        position: absolute;
        top: 75%;
        left: 13%;
        width: 220px;
        height: auto;
        z-index: 2;
    }
  
  /* Для секции hero – изменить порядок блоков */
  .hero {
    flex-direction: column;
    padding: 20px;
    min-height: auto; /* высота определяется контентом */
  }

  /* Контент (текст + крипто бокс) – показывать первым */
  .hero__content {
    max-width: 100%;
    order: 1;
  }

  .my-lines-svg3 {
    position: absolute;
    top: 584px;
    right: 10px;
    z-index: 10;
    transform: rotate(326deg);
}

.my-lines-text3 {
    position: absolute;
    top: 115px;
    right: -194px;
    z-index: 10;
}

.my-lines-text2 {
    position: absolute;
    top: 345px;
    right: -55px;
    z-index: 10;
}

.my-lines-svg2 {
    position: absolute;
    top: 400px;
    right: 230px;
    z-index: 10;
    transform: rotate(28deg);
}

.my-lines-svg4 {
    position: absolute;
    top: 540px;
    right: 20px;
    z-index: 10;
    transform: rotate(73deg);
}

.my-lines-text4 {
    position: absolute;
    top: 465px;
    right: -380px;
    z-index: 10;
}

.my-lines-svg {
    position: absolute;
    top: 503px;
    right: 36px;
    z-index: 10;
    transform: rotate(329deg);
}
.my-lines-text {
    position: absolute;
    top: 610px;
    right: -135px;
    z-index: 10;
}

.my-lines-text1 {
    position: absolute;
    top: 441px;
    right: -20px;
    z-index: 10;
}

.my-lines-svg1 {
    position: absolute;
    top: 478px;
    right: 53px;
    z-index: 10;
}

  /* Изображение – показывать после контента */
  .hero__image {
    max-width: 100%;
    justify-content: center;
    order: 2;
    margin-top: -20px; /* отступ сверху, если нужно */
    margin-bottom: 0;
    transform: translate(-40px, 20px);
  }

  .hero__image img {
    width: 140%;
    height: auto;
}

  h3.hero__title {
    font-family: "TT Firs Neue", sans-serif;
        font-size: 1.6rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: .3rem;
        margin-top: 20px;
        font-weight: 500;
}

        p.hero__subtitle {
        font-size: 1.8rem;
        line-height: 1.133;
        color: #fff;
        margin-top: -10px;
        font-weight: 500;
    }

        .btn {
        font-size: 1.4rem;
    }

    .crypto-box__title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: 'TT Firs Neue';
    font-weight: 500;
        margin-top: 2px;
        color: #000;
}

.header__logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 4px;
}
  .about__wrapper {
    margin: 10px !important;
    padding: 24px !important;
}
.about__text {
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 1.4rem;
        font-family: 'Gilroy';
 }
  
  /* Центрируем график */
  .tokenomics__chart {
    width: 100%;
    margin: 0 auto;
  }
  
  /* Сам график центрируется */
  .tokenomics__chart {
    margin: 0 auto;
  }

   .buy__title {
    text-align: left;
  }

  .buy__blocks {
    flex-direction: column;
    align-items: center;
  }

  .buy-block {
    width: 100%;
    max-width: 500px; /* Ограничиваем ширину на мобильных */
  }

  .buy__button {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  } /* <-- Закрываем скобку здесь! */

  .btn-buy-dex {
    width: 100%;
  }

  .tokenh3 {
    color: #000;
    color: #000;
    text-transform: uppercase;
    transform: translate(2px, 124px);
    font-size: 3.85rem;
    font-weight: 600;
}

  .contract-ton-label {
    display: inline;
  }
  .contract-label {
    display: none;
  }

  .buy-button-wrap {
        width: auto;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-top: 50px;
    }

  .btn-part {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    width: auto;
    min-height: 40px;
    white-space: nowrap;
  }

  .btn-part.top-part {
    background-color: #fcd535;
    color: black;
    font-weight: 600;
    height: 50px;
  }

  .btn-part.bottom-part {
    background-color: #1f1f1f;
    color: white;
    flex-direction: row;
    font-size: 13px;
    height: 53px;
        margin-top: -1px;
  }

  .btn-divider-line {
    display: none;
  }

  .contract-address {
    font-size: 13px;
    font-weight: 500;
  }

  .copy-icon {
    font-size: 16px;
    margin-left: 4px;
  }


/*О Токене*/
    .tokenh4 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50.2%, -480%);
        font-size: 5.2rem;
        opacity: 1;
        pointer-events: none;
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
    }
    .coin--small {
    display: none !important;
  }

.about__wrapper0 {
    max-width: 1200px;
        margin: 0 auto;
        background-color: #000000;
        border: 1px solid #000000;
        border-radius: 0px;
        padding: 40px;
        display: flex;
        gap: 20px;
        color: #313131;
        overflow: hidden;
        position: relative;
        margin-top: 100px;
}

.about__title0 {
  font-family: "TT Firs Neue", sans-serif;
        font-size: 2rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 0px;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal;
}

.about__text0 {
            margin-bottom: 16px;
        line-height: 1.5;
        font-size: 1.1rem;
        color: #939393;
        margin-left: 0px;
        z-index: 2;
        position: relative;
}

.faq-lists {
  display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -120px;
}



.faq-items {
        background-color: rgb(0 0 0);
        border-radius: 20px;
        padding: 1px 24px;
        transition: background-color 0.3s ease;
        overflow: hidden;
        max-width: 360px;
        margin: 0 auto;
        position: relative;
        /* display: block; */
        /* padding: 0 0px; */
    }

.faq-question-texts {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
    z-index: 2;
}

.faq-toggle-circles {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}
.coin--smalls {
    width:100px;
  }


  .faq-answers {
  max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1.4rem;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #939393;
    font-size: 1rem;
    margin-left: 0px;
}

.newf {
  margin-left: 0px;
}

.highlight-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #939393;
}

.faq-items.active .faq-answers {
    max-height: 1470px;
}
.coin--smalls {
        width: 467px;
        z-index: 1;
        opacity: 0.15;
        top: -200px;
    }
/*ТОКЕНОМИКА*/
.tokenomics-section {
        padding: 100px 20px;
        background-size: 125% auto;
        background-position: center center;
        height: 700px;
        overflow: hidden;
        background-position: center 320px;
    }

  .tokenomics-section__content {
    /* Убираем или уменьшаем масштаб */
    transform: scale(0.82);
        margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(3, 120px); /* 3 колонки по 120px */
    justify-content: center;                /* Центрируем всю сетку */
    gap: 20px;
    margin-bottom: 150px;
  }

  .tokenomics-item {
    width: 120px; /* уменьшаем ширину */
    padding: 15px 8px;
  }

  .tokenomics-item__title {
    font-size: 4.4rem; /* уменьшаем шрифт процентов */
  }

  .tokenomics-item__desc {
    font-size: 1.1rem; /* чуть меньше описание */
  }

  .tokenomics-item:nth-child(4) {
    grid-column: 1;
        margin-left: 70px;
  }
  .tokenomics-item:nth-child(5) {
    grid-column: 2;
        margin-left: 60px;
  }

          .tokenomics-btn {
        margin-top: 140px;
        font-size: 1.1rem;
        transform: translate(-1px, -90px) scale(1.4);
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-left: 1px;
    }


  .tokenomics-svg-wrapper {
    position: absolute;
    top: 550px;
    right: 50px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 1;
    transform: scale(1);
}


  .tokenomics-footer {
    font-size: 0.9rem;
        max-width: 90%;
        transform: translate(-1px, -75px) scale(1.2);
  }

      .tokenh3 {
        font-size: 3.6rem;
        transform: translate(2px, 55px);
    }

      html[lang="en"] .tokenh3 {
        font-size: 3.8rem;
        transform: translate(-1px, 55px);
    }

  html[lang="en"] .tokenh4 {
        font-size: 7.8rem !important;
        transform: translate(-49.6%, -305%) !important;
    }

  /* ROADMAP */

  .fade-left {
    left: 0;
        background: none;
}

.fade-right {
            right: 0;
        width: 0px;
        background: none;
    }

.roadmap-title {
    text-align: center;
    font-family: 'TT Firs Neue', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #e4b92e;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-left: 0px;
    margin-top: -100px !important;
    
}
.roadmap-container {
  padding: 0 10px;
}

.roam_secti {
  padding: 100px 20px;
    background-size: 125% auto;
}
 #lineWrapper {
    display: none;
  }

  .mobile-slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
  }

  .mobile-line {
        position: relative;
        width: 170%;
        height: 2px;
        background: linear-gradient(to right, transparent, yellow, transparent);
        margin-bottom: 30px;
    }
  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

  /* Чтобы выровнять всю обёртку красиво */
.mobile-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: -450px;
}



  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

/* Чтобы выровнять всю обёртку красиво */
    .mobile-slider-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 60px;
        margin-top: 230px;
    }



  /* КАК КУПИТЬ? */
  .buy__blocks {
    flex-direction: column;
    gap: 20px;
  }
  
  /* В каждом блоке меняем направление на строку */
  .buy-block {
    flex-direction: row;
    align-items: center;
    padding: 15px 10px; /* можно подкорректировать, если нужно */
  }
  
  /* Убираем отступ снизу у номера */
  .buy-block__number {
    margin-bottom: 0;
    margin-right: 10px;
  }
  
  /* Заставляем текст идти в одну строку вместе с номером */
  .buy-block p {
     white-space: normal;
    margin: 0;
    flex: 1 1 0;
    font-size: 1.2rem; /* если нужно уменьшить шрифт для мобильной версии */
  }

  .section-buy {
    width: 100%;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    margin-top: -100px;
  }
  .faq__coins1 img {
        max-width: 100px;
        height: auto;
        display: block;
        opacity: 1;
        margin-top: 204px;
    }
      .faq__coins--right1 {
        right: 20px;
        margin-top: -87px;
        z-index: 2;
        max-width: 70px !important;
    }

  .buy__title {
        text-align: center;
        /* text-align: center; */
        font-family: 'TT Firs Neue', sans-serif;
        font-size: 1.8rem;
        font-weight: 600;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-left: 0px;
        margin-top: 40px;
    }
  /* Капитализация */
  .roadmap-section {
    width: 100%;
        padding: 20px 20px;
        background: #000;
        color: #fff;
        position: relative;
        z-index: 1;
        margin-top: 10px !important;
        min-height: 100px;
}

.faq-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
}

    .slide-img {
        width: 320px;
        height: 315px;
        object-fit: cover;
        border-radius: 20px;
    }

.step-number {
        position: absolute;
        font-size: 7.2rem;
        color: #e4b92e;
        opacity: 0.07;
        font-weight: bold;
        top: -67px;
        left: -5px;
        font-family: 'BebasNeue', sans-serif;
        z-index: -1;
    }

    .step-numbers {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -66px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbers1 {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -70px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numberss {
    position: absolute;
    font-size: 5.85rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbersss {
    position: absolute;
    font-size: 5.86rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.slider-track {
    position: relative;
    height: 320px;
}


.mori-slider {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  padding: 60px 0;
}

.mori-slider-window {
  overflow: hidden;
  width: 100%;
}

.mori-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: fit-content;
}

.mori-slider-slide {
  display: flex;
  gap: 270px;
  margin-left: 100px;
  flex: 0 0 100%;
  justify-content: center;
}

.mori-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #e4b92e;
  font-size: 2.5rem;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mori-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mori-slider-arrow.left {
  left: 10px;
}

.mori-slider-arrow.right {
  right: 10px;
}


.process-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 100px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #939393;
    margin-left: 0px !important;
    text-transform: uppercase;
}

.process-title2 {
    font-size: 1.2rem;
    margin-bottom: 90px;
    text-transform: uppercase;
    letter-spacing: .0rem;
    font-weight: 500;
    margin-top: -80px;
    color: #939393;
    margin-left: 0px !important;
}

    .step-number {
        position: absolute;
        font-size: 6.7rem;
        color: #e4b92e;
        opacity: 0.07;
        font-weight: bold;
        top: -75px;
        left: -5px;
        font-family: 'BebasNeue', sans-serif;
        z-index: -1;
    }

.step-block {
    position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 180px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.step-blocks {
     position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 390px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    }

    .step-blockss {
     position: absolute;
        background: #0e0e0e00;
        padding: 30px;
        border-radius: 14px;
        width: 390px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .step-blocks::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100px;
    background-image: radial-gradient(#ff96002e 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.step-blockss::before {
    content: "";
        position: absolute;
        top: 135px;
        right: 256px;
        width: 130px;
        height: 100px;
        background-image: radial-gradient(#ff96002e 2px, transparent 2px);
        background-size: 8px 8px;
        opacity: 0.4;
        z-index: 0;
        pointer-events: none;
}

.step-blocks h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-blockss h3 {
    color: #e4b92e;
        font-size: 2rem;
        margin: 0 0 10px;
        letter-spacing: 1px;
        font-family: 'BebasNeue', sans-serif;
        margin-left: 180px;
}

.step-block h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-block p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.4;
    margin: 0;
}

.step-blocks p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.6;
    margin: 0;
}

.step-blockss p {
    font-size: 0.9rem;
        color: #939393;
        line-height: 1.6;
        margin: 0;
        margin-left: 180px;
}

.glow-curve1234 {
    position: absolute;
    left: -200px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: none;
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

    .step-1 { top: 0; left: 0px; }
    .step-2 { top: 0px; right: 0px; height: 174px !important; }
    .step-3 { top: 220px; left: 0px; height: 174px !important; }
    .step-4 { top: 220px; right: 0px; }
    .step-5 { top: 440px; left: 0px; height: 228px !important;}
    .step-6 { top: 440px; right: 0px; height: 228px !important; }
    .step-7 { top: 700px; left: 0px; height: 238px !important; }
    .step-8 { top: 700px; right: 0px; }

    .steps-1 { top: -60px; left: 0px; }
    .steps-2 { top: -60px; left: 206px; }
    .steps-3 { top: 165px; left: 115px; }
    .steps-4 { top: 165px; left: 321px; }
    .steps-5 { top: 385px; left: 0px; }
    .steps-6 { top: 385px; left: 206px; }
    .steps-7 { top: 223px; left: 883px; }
    .steps-8 { top: 223px; left: 1313px; }
  
/*======FAQ==========*/
.faq-section {
    width: 100%;
    background-color: #000;
    padding: 60px 20px;
    box-sizing: border-box;
    color: #939393;
    font-family: Arial, sans-serif;
    position: relative;
    box-shadow: none;
    min-height: 100px;
}

.faq-list {
    gap: 15px;
    margin-top: -20px;
}

.faq-item {
    padding: 10px 24px;
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
}

.faq-toggle-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}

    .faq__coins img {
        max-width: 80px;
        height: auto;
        display: block;
        opacity: 1;
    }

.faq__coins123 img {
    display: none;
}

.faq__coins--left {
    margin-top: 0px !important;
    margin-left: 0px !important;
}

    .faq__coins--right {
        right: 15px;
        margin-top: 30px;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1rem;
}

.faq-title {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #fff;
    margin-top: -50px;
}
  /*CООБЩЕСТВО*/
  .tokenh31 {
        transform: translate(-10px, 77px);
        font-size: 3.4rem;
    }

    html[lang="en"] .tokenh31 {
        font-size: 4rem;
        transform: translate(-1px, 79px);
    }

   /* Центрирование текста в секции "Сообщество" */
  .community__wrapper,
  .community__title,
  .community__subtitle {
    text-align: center;
    color: #000;
    font-size: 30px;
    margin-top: -50px;

  }

  .community__icon1 {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.community__icon-small1 {
    font-size: 1rem;
    opacity: 0.9;
    margin-left: 15px;
}

.community__icon-big1 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-left: 10px;
    }

.community__icon_you_ru {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    transform: translateY(12px);
}

    .community__icon-big_you_ru {
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(10px);
}

    .community__icon-small_you_ru {
    font-size: 0.9rem;
    opacity: 0.9;
    transform: translateY(10px);
}
  
  /* Убираем отрицательные отступы у подзаголовка, если они есть */
  .community__subtitle {
    margin-top: -35px;
        font-size: 18px;
  }

  /* Расположение иконок: выравниваем по центру и уменьшаем промежутки */
  .community__icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: -20px;
    }

    .community__icon-block {
        width: 45%; /* Две иконки в ряд */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .community__icon-block:nth-child(3) {
        width: 100%; /* Третья на всю ширину */
        margin-top: 20px;
    }
.community__icon-big {
    font-size: 1.5rem;
    font-weight: 600;
}
  
  /* Если нужно, чтобы каждый блок занимал фиксированную ширину */
  .community__icon-block {
    flex: 0 0 auto; /* Автоматическая ширина, без растяжения */
  }

  /*ФУТЕР*/
  .footer {
    background: linear-gradient(135deg, #000, #000000);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    padding-bottom: 20px;
}

.footer__right img {
    display: none;
}

.footmori img {

    width: 300px;
    margin-top: -200px;
}

.footer__disclaimer p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

}


@media (min-width: 320px) and (max-width: 350px) {
  #home.hero {
    height: calc(100vh - 70px);
  }

          .mobile-image {
            width: 150%;
        margin-left: -150px;
        margin-top: -50px;
        transform: translate(0px, 30px);
        }


  /* Скрыть кнопку в хедере */
  .header__buy-btn {
    display: block;
    background-color: #e4b92e;
  }

  .about__images {
    display: none;
  }
  
  /* Для секции hero – изменить порядок блоков */
  .hero {
    flex-direction: column;
    padding: 20px;
    min-height: auto; /* высота определяется контентом */
  }

  /* Контент (текст + крипто бокс) – показывать первым */
  .hero__content {
    max-width: 100%;
    order: 1;
  }

  .my-lines-svg3 {
    position: absolute;
    top: 584px;
    right: 10px;
    z-index: 10;
    transform: rotate(326deg);
}

.my-lines-text3 {
    position: absolute;
    top: 115px;
    right: -194px;
    z-index: 10;
}

.my-lines-text2 {
    position: absolute;
    top: 345px;
    right: -55px;
    z-index: 10;
}

.my-lines-svg2 {
    position: absolute;
    top: 400px;
    right: 230px;
    z-index: 10;
    transform: rotate(28deg);
}

.my-lines-svg4 {
    position: absolute;
    top: 540px;
    right: 20px;
    z-index: 10;
    transform: rotate(73deg);
}

.my-lines-text4 {
    position: absolute;
    top: 465px;
    right: -380px;
    z-index: 10;
}

.my-lines-svg {
    position: absolute;
    top: 503px;
    right: 36px;
    z-index: 10;
    transform: rotate(329deg);
}
.my-lines-text {
    position: absolute;
    top: 610px;
    right: -135px;
    z-index: 10;
}

.my-lines-text1 {
    position: absolute;
    top: 441px;
    right: -20px;
    z-index: 10;
}

.my-lines-svg1 {
    position: absolute;
    top: 478px;
    right: 53px;
    z-index: 10;
}

  /* Изображение – показывать после контента */
  .hero__image {
    max-width: 100%;
    justify-content: center;
    order: 2;
    margin-top: -20px; /* отступ сверху, если нужно */
    margin-bottom: 0;
    transform: translate(-40px, 20px);
  }

  .hero__image img {
    width: 140%;
    height: auto;
}

  h3.hero__title {
    font-family: "TT Firs Neue", sans-serif;
        font-size: 1.6rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: .3rem;
        margin-top: 20px;
        font-weight: 500;
}

    p.hero__subtitle {
        font-size: 2rem;
        line-height: 1.133;
        color: #fff;
        margin-top: -10px;
        font-weight: 500;
    }

        .btn {
        font-size: 1.4rem;
    }

    .crypto-box__title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: 'TT Firs Neue';
    font-weight: 500;
        margin-top: 2px;
        color: #000;
}

.header__logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 4px;
}
  .about__wrapper {
    margin: 10px !important;
    padding: 24px !important;
}
.about__text {
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 1.4rem;
        font-family: 'Gilroy';
 }
  
  /* Центрируем график */
  .tokenomics__chart {
    width: 100%;
    margin: 0 auto;
  }
  
  /* Сам график центрируется */
  .tokenomics__chart {
    margin: 0 auto;
  }

   .buy__title {
    text-align: left;
  }

  .buy__blocks {
    flex-direction: column;
    align-items: center;
  }

  .buy-block {
    width: 100%;
    max-width: 500px; /* Ограничиваем ширину на мобильных */
  }

  .buy__button {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  } /* <-- Закрываем скобку здесь! */

  .btn-buy-dex {
    width: 100%;
  }

  .tokenh3 {
    color: #000;
    color: #000;
    text-transform: uppercase;
    transform: translate(2px, 124px);
    font-size: 3.85rem;
    font-weight: 600;
}

  .contract-ton-label {
    display: inline;
  }
  .contract-label {
    display: none;
  }

  .buy-button-wrap {
    width: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
  }

  .btn-part {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    width: auto;
    min-height: 40px;
    white-space: nowrap;
  }

  .btn-part.top-part {
    background-color: #fcd535;
    color: black;
    font-weight: 600;
    height: 50px;
  }

  .btn-part.bottom-part {
    background-color: #1f1f1f;
    color: white;
    flex-direction: row;
    font-size: 13px;
    height: 53px;
        margin-top: -1px;
  }

  .btn-divider-line {
    display: none;
  }

  .contract-address {
    font-size: 13px;
    font-weight: 500;
  }

  .copy-icon {
    font-size: 16px;
    margin-left: 4px;
  }


/*О Токене*/
.tokenh4 {
         position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50.2%, -256%);
        font-size: 6.1rem;
        opacity: 1;
        pointer-events: none;
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
}

.about__wrapper0 {
    max-width: 1200px;
        margin: 0 auto;
        background-color: #000000;
        border: 1px solid #000000;
        border-radius: 0px;
        padding: 40px;
        display: flex;
        gap: 20px;
        color: #313131;
        overflow: hidden;
        position: relative;
        margin-top: 100px;
}

.about__title0 {
  font-family: "TT Firs Neue", sans-serif;
        font-size: 2rem;
        line-height: 1.133;
        color: #939393;
        white-space: nowrap;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 15px;
        margin-left: 0px;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal;
}

.about__text0 {
            margin-bottom: 16px;
        line-height: 1.5;
        font-size: 1.1rem;
        color: #939393;
        margin-left: 0px;
        z-index: 2;
        position: relative;
}

.faq-lists {
  display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -120px;
}



.faq-items {
    background-color: rgb(0 0 0);
    border-radius: 20px;
    padding: 1px 24px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    /* display: block; */
    /* padding: 0 0px; */
}

.faq-question-texts {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
    z-index: 2;
}

.faq-toggle-circles {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}
.coin--smalls {
    width:100px;
  }

  .faq-answers {
  max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1.4rem;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #939393;
    font-size: 1rem;
    margin-left: 0px;
}

.newf {
  margin-left: 0px;
}

.highlight-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #939393;
}

.faq-items.active .faq-answers {
    max-height: 1470px;
}
.coin--smalls {
        width: 467px;
        z-index: 1;
        opacity: 0.15;
        top: -200px;
    }
/*ТОКЕНОМИКА*/
.tokenomics-section {
        padding: 100px 20px;
        background-size: 125% auto;
        background-position: center center;
        height: 1000px;
        overflow: hidden;
        background-position: center 320px;
    }

  .tokenomics-section__content {
    /* Убираем или уменьшаем масштаб */
    transform: scale(0.82);
        margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(3, 120px); /* 3 колонки по 120px */
    justify-content: center;                /* Центрируем всю сетку */
    gap: 20px;
    margin-bottom: 150px;
  }

  .tokenomics-item {
    width: 120px; /* уменьшаем ширину */
    padding: 15px 8px;
  }

  .tokenomics-item__title {
    font-size: 4.4rem; /* уменьшаем шрифт процентов */
  }

  .tokenomics-item__desc {
    font-size: 1.1rem; /* чуть меньше описание */
  }

  .tokenomics-item:nth-child(4) {
    grid-column: 1;
        margin-left: 70px;
  }
  .tokenomics-item:nth-child(5) {
    grid-column: 2;
        margin-left: 60px;
  }

          .tokenomics-btn {
        margin-top: 500px;
        font-size: 1.1rem;
        transform: translate(-1px, -90px) scale(1.4);
        transition: transform 0.3s ease, background-color 0.3s ease;
        margin-left: 1px;
    }


  .tokenomics-svg-wrapper {
    position: absolute;
    top: 550px;
    right: 50px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 1;
    transform: scale(1);
}


  .tokenomics-footer {
    font-size: 0.9rem;
        max-width: 90%;
        transform: translate(-1px, -75px) scale(1.2);
  }

  .tokenh3 {
    font-size: 4.1rem;
        transform: translate(2px, 70px);
  }

  html[lang="en"] .tokenh3 {
    font-size: 4.1rem;
        transform: translate(2px, 70px);
  }

  html[lang="en"] .tokenh4 {
    transform: translate(px, 247px) !important;
    font-size: 8.48rem !important;
    transform: translate(-49.6%, -210%) !important;
}

  /* ROADMAP */

  .fade-left {
    left: 0;
        background: none;
}

.fade-right {
            right: 0;
        width: 0px;
        background: none;
    }

.roadmap-title {
    text-align: center;
    font-family: 'TT Firs Neue', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #e4b92e;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-left: 0px;
    margin-top: -100px !important;
    
}
.roadmap-container {
  padding: 0 10px;
}

.roam_secti {
  padding: 100px 20px;
    background-size: 125% auto;
}
 #lineWrapper {
    display: none;
  }

  .mobile-slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
  }

  .mobile-line {
    position: relative;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, yellow, transparent);
    margin-bottom: 30px;

  }
  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

  /* Чтобы выровнять всю обёртку красиво */
.mobile-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: -450px;
}



  .mobile-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid gold;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .mobile-checkpoint {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
.mobile-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.mobile-text {
  opacity: 0;
  transition: opacity 0.6s ease;
  margin-top: -10px;
  text-align: center;
  color: #939393;
  font-size: 1rem;

}

/* Чтобы выровнять всю обёртку красиво */
.mobile-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: -400px;
}



  /* КАК КУПИТЬ? */
  .buy__blocks {
    flex-direction: column;
    gap: 20px;
  }
  
  /* В каждом блоке меняем направление на строку */
  .buy-block {
    flex-direction: row;
    align-items: center;
    padding: 15px 10px; /* можно подкорректировать, если нужно */
  }
  
  /* Убираем отступ снизу у номера */
  .buy-block__number {
    margin-bottom: 0;
    margin-right: 10px;
  }
  
  /* Заставляем текст идти в одну строку вместе с номером */
  .buy-block p {
     white-space: normal;
    margin: 0;
    flex: 1 1 0;
    font-size: 1.2rem; /* если нужно уменьшить шрифт для мобильной версии */
  }

  .section-buy {
    width: 100%;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    margin-top: -100px;
  }
  .faq__coins1 img {
    max-width: 100px;
        height: auto;
        display: block;
        opacity: 1;
        margin-top: 174px;
  }

  .faq__coins--right1 {
    right: 20px;
    margin-top: -87px;
    z-index: 2;
    max-width: 100px !important;
  }

  .buy__title {
    text-align: left;
        /* text-align: center; */
        font-family: 'TT Firs Neue', sans-serif;
        font-size: 1.8rem;
        font-weight: 600;
        color: #ffffff;
        
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-left: 0px;
        margin-top: 40px;
  }

  /* Капитализация */
  .roadmap-section {
    width: 100%;
        padding: 20px 20px;
        background: #000;
        color: #fff;
        position: relative;
        z-index: 1;
        margin-top: 10px !important;
        min-height: 100px;
}

.faq-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
}

.slide-img {
    width: 345px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

.step-number {
        position: absolute;
        font-size: 7.2rem;
        color: #e4b92e;
        opacity: 0.07;
        font-weight: bold;
        top: -67px;
        left: -5px;
        font-family: 'BebasNeue', sans-serif;
        z-index: -1;
    }

    .step-numbers {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -66px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbers1 {
    position: absolute;
    font-size: 6.5rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -70px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numberss {
    position: absolute;
    font-size: 5.85rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.step-numbersss {
    position: absolute;
    font-size: 5.86rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -60px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.slider-track {
    position: relative;
    height: 320px;
}


.mori-slider {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  padding: 60px 0;
}

.mori-slider-window {
  overflow: hidden;
  width: 100%;
}

.mori-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: fit-content;
}

.mori-slider-slide {
  display: flex;
  gap: 270px;
  margin-left: 100px;
  flex: 0 0 100%;
  justify-content: center;
}

.mori-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #e4b92e;
  font-size: 2.5rem;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mori-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mori-slider-arrow.left {
  left: 10px;
}

.mori-slider-arrow.right {
  right: 10px;
}


.process-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 100px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #939393;
    margin-left: 0px !important;
    text-transform: uppercase;
}

.process-title2 {
    font-size: 1.2rem;
    margin-bottom: 90px;
    text-transform: uppercase;
    letter-spacing: .0rem;
    font-weight: 500;
    margin-top: -80px;
    color: #939393;
    margin-left: 0px !important;
}

.step-number {
    position: absolute;
    font-size: 6rem;
    color: #e4b92e;
    opacity: 0.07;
    font-weight: bold;
    top: -105px;
    left: -5px;
    font-family: 'BebasNeue', sans-serif;
    z-index: -1;
}

.step-block {
    position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 180px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.step-blocks {
     position: absolute;
    background: #0e0e0e;
    padding: 30px;
    border-radius: 14px;
    width: 390px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    }

    .step-blockss {
     position: absolute;
        background: #0e0e0e00;
        padding: 30px;
        border-radius: 14px;
        width: 390px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .step-blocks::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100px;
    background-image: radial-gradient(#ff96002e 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.step-blockss::before {
    content: "";
        position: absolute;
        top: 135px;
        right: 256px;
        width: 130px;
        height: 100px;
        background-image: radial-gradient(#ff96002e 2px, transparent 2px);
        background-size: 8px 8px;
        opacity: 0.4;
        z-index: 0;
        pointer-events: none;
}

.step-blocks h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-blockss h3 {
    color: #e4b92e;
        font-size: 2rem;
        margin: 0 0 10px;
        letter-spacing: 1px;
        font-family: 'BebasNeue', sans-serif;
        margin-left: 180px;
}

.step-block h3 {
    color: #e4b92e;
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-family: 'BebasNeue', sans-serif;
}

.step-block p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.4;
    margin: 0;
}

.step-blocks p {
    font-size: 0.9rem;
    color: #939393;
    line-height: 1.6;
    margin: 0;
}

.step-blockss p {
    font-size: 0.9rem;
        color: #939393;
        line-height: 1.6;
        margin: 0;
        margin-left: 180px;
}

.glow-curve1234 {
    position: absolute;
    left: -200px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: none;
    transform: rotate(45deg);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

    .step-1 { top: 0; left: 0px; }
    .step-2 { top: 0px; right: 0px; height: 174px !important; }
    .step-3 { top: 220px; left: 0px; height: 174px !important; }
    .step-4 { top: 220px; right: 0px; }
    .step-5 { top: 440px; left: 0px; height: 228px !important;}
    .step-6 { top: 440px; right: 0px; height: 228px !important; }
    .step-7 { top: 700px; left: 0px; height: 238px !important; }
    .step-8 { top: 700px; right: 0px; }

    .steps-1 { top: -60px; left: 0px; }
    .steps-2 { top: -60px; left: 206px; }
    .steps-3 { top: 165px; left: 115px; }
    .steps-4 { top: 165px; left: 321px; }
    .steps-5 { top: 385px; left: 0px; }
    .steps-6 { top: 385px; left: 206px; }
    .steps-7 { top: 223px; left: 883px; }
    .steps-8 { top: 223px; left: 1313px; }
  
/*======FAQ==========*/
.faq-section {
    width: 100%;
    background-color: #000;
    padding: 60px 20px;
    box-sizing: border-box;
    color: #939393;
    font-family: Arial, sans-serif;
    position: relative;
    box-shadow: none;
    min-height: 100px;
}

.faq-list {
    gap: 15px;
    margin-top: -20px;
}

.faq-item {
    padding: 10px 24px;
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-right: 16px;
    font-family: 'TT Firs Neue';
    margin-top: 10px;
}

.faq-toggle-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 1px solid #555;
    margin-top: 10px;
}

.faq__coins img {
    max-width: 100px;
    height: auto;
    display: block;
    opacity: 1;
}

.faq__coins123 img {
    display: none;
}

.faq__coins--left {
    margin-top: 0px !important;
    margin-left: 0px !important;
}

.faq__coins--right {
    right: 55px;
    margin-top: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #ddd;
    line-height: 1.5;
    font-size: 1rem;
}

.faq-title {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #fff;
    margin-top: -50px;
}
  /*CООБЩЕСТВО*/
  .tokenh31 {
    transform: translate(-20px, 87px);
        font-size: 4rem;
}

html[lang="en"] .tokenh31 {
    font-size: 4.3rem;
    transform: translate(-20px, 40px);
  }

   /* Центрирование текста в секции "Сообщество" */
  .community__wrapper,
  .community__title,
  .community__subtitle {
    text-align: center;
    color: #000;
    font-size: 30px;
    margin-top: -50px;

  }
  
  /* Убираем отрицательные отступы у подзаголовка, если они есть */
  .community__subtitle {
    margin-top: -35px;
        font-size: 18px;
  }

  /* Расположение иконок: выравниваем по центру и уменьшаем промежутки */
  .community__icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: -20px;
    }

    .community__icon-block {
        width: 45%; /* Две иконки в ряд */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .community__icon-block:nth-child(3) {
        width: 100%; /* Третья на всю ширину */
        margin-top: 20px;
    }
.community__icon-big {
    font-size: 1.5rem;
    font-weight: 600;
}
  
  /* Если нужно, чтобы каждый блок занимал фиксированную ширину */
  .community__icon-block {
    flex: 0 0 auto; /* Автоматическая ширина, без растяжения */
  }

  /*ФУТЕР*/
  .footer {
    background: linear-gradient(135deg, #000, #000000);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    padding-bottom: 20px;
}

.footer__right img {
    display: none;
}

.footmori img {

    width: 300px;
    margin-top: -200px;
}

.footer__disclaimer p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

}



