@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;
  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;
}

/* Ссылки по умолчанию */
a {
  text-decoration: none;
  color: inherit;
}

/* === ЯЗЫКОВОЙ СЕЛЕКТ (dropdown) === */
.language-select {
  position: relative;
  width: 120px;
  margin-right: 20px;
  font-family: 'TT Firs Neue', sans-serif;
}

.language-select__current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffd535;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-select__current:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.language-select__current i {
  font-size: 0.8rem;
  margin-left: 6px;
  transition: transform 0.3s ease;
  color: #ffd535;
}

.language-select.open .language-select__current i {
  transform: rotate(180deg);
}

.language-select__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  margin-top: 6px;
  background-color: #000;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.language-select.open .language-select__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  background-color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.language-option:hover {
  background-color: rgba(228, 185, 46, 0.1);
  color: #e4b92e;
}

.language-option[data-lang="zh"] {
  font-family: 'PingFang SC', 'Hiragino Sans GB', sans-serif;
}

/* === СЕЛЕКТ ДЕЙСТВИЙ: BUY / STAKE === */
.action-select {
  display: none;
  position: relative;
  width: 140px;
  font-family: 'TT Firs Neue', sans-serif;
}

.action-select__current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.05);
  color: #e4b92e;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-select__current:hover {
  background-color: rgba(228, 185, 46, 0.1);
}

.action-select__current i {
  font-size: 0.8rem;
  margin-left: 6px;
  color: #e4b92e;
  transition: transform 0.3s ease;
}

.action-select.open .action-select__current i {
  transform: rotate(180deg);
}

.action-select__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  margin-top: 6px;
  background-color: #000;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.action-select.open .action-select__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.action-option {
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.action-option:hover {
  background-color: rgba(228, 185, 46, 0.1);
  color: #e4b92e;
}

  html[lang="zh"] .tokenh4 {
    color: #000;
    text-transform: uppercase;
    transform: translate(px, 247px);
    font-size: 6.9rem;
    font-weight: 600;
    transform: translate(-49.5%, -200%);
  }

  html[lang="zh"] .tokenh3 {
    color: #000;
    text-transform: uppercase;
    transform: translate(0px, 358px);
    font-size: 18.6rem;
    font-weight: 600;
  }

  html[lang="zh"] .tokenh31 {
    color: #ffffff;
    text-transform: uppercase;
    transform: translate(0px, 217px);
    font-size: 20.7rem;
    font-weight: 600;
  }

.checkmark {
  opacity: hidden;
  visibility: hidden;
  color: #e4b92e;
  font-weight: bold;
  font-size: 1.1rem;
  width: 16px;
  text-align: center;
}

/* Показываем галочку только у выбранного языка */
#check-en, #check-ru, #check-zh, #check-es {
  opacity: 0;
  visibility: hidden;
}

/* Активный язык — отображаем галочку */
.language-option.active .checkmark {
  opacity: 1;
  visibility: visible;
}

/* Кнопки по умолчанию */
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;
}

::-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: #fff;
  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';
}

.header__buy-btn:hover {
  transform: scale(1.05);
  background-color: rgb(129 101 11);
}



/* Блок иконок соцсетей */
.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; 
}

/* Кнопка-«бургер» для открытия меню */
.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; 
}

/* Верхняя часть бокового меню (заголовок + кнопка закрыть) */
.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("../images/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: max-content;  
  padding: 20px;
}

/* Левая часть секции */
.hero__content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: 1;
}

.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: 70px;
}

.btn-part {
  background-color: #e4b92e;
  color: #000;
  padding: 16px 24px;
  font-size: 1.5rem;
  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:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(228, 185, 46, 0.3);
}

.bottom-part:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 10px rgba(228, 185, 46, 0.3);
}

.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: #19191b;
  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: 1.3rem;
  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 {
  order: 2;
  margin-top: auto;
  width: 100%;
  max-width: 500px;
  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;
}

/* Оверлей, накладываемый поверх part1 */
.image-part.part1-overlay {
  position: absolute;
  top: 5px;     
  left: 0;    
  width: 108%; 
  height: auto;
  z-index: 2; 
  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;
}

.hero__left-overlay {
  position: absolute; 
  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("../images/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; 
}

/* Стили для самой картинки */
.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; 
  
}

.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;
}

.footer__disclaimer p {
  white-space: pre-line;
}

.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%;       
  left: 5%;       
  width: 120px;   
  height: auto;   
  z-index: 2;
}

/* Вторая картинка */
.main-img-2 {
  position: absolute;
  bottom: 5%;     
  right: 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;
}

html[lang="zh"] .faq-items {
  min-width: 900px;
}


.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;
}

/* ====== СЕКЦИЯ "О МОРИАРТИ КАК О СОЗДАТЕЛЕ" ======== */
.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="es"] .tokenh4 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50.2%, -300%);
  font-size: 5.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(../images/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: #ffffff;
  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;
  box-sizing: border-box;
  min-height: 48px;
}

.tokenomics-btn:hover {
  background-color: #919191;
}

/* Подпись снизу */
.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%;
  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-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: #e4b92e;
  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: 80px;
  width: 25%;
}

.btn-buy-dex:hover {
  transform: scale(1.03);
  background-color: #997d22;
}

/* Декоративные монеты – контейнеры */
.faq__coins1 {
  position: absolute;
  top: 10px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 400px;
}

/* Монеты слева */
.faq__coins--left1 {
  left: 20px;
}

.coin-margin {
  margin-top: 430px;
  z-index: 2;
}

html[lang="es"] .coin-margin {
  margin-top: 470px;
  z-index: 2;
}

/* Монеты справа */
.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; 
  font-family: Arial, sans-serif; 
  position: relative;
  box-shadow: none;
}

.footmori img {
  display: block;
}

/* Псевдоэлемент для наверху */
.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;
}

/* Список 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;
  cursor: pointer;
}

/* При наведении блок становится чуть светлее */
.faq-item:hover {
  background-color: rgba(255,255,255,0.08);
}

/* Верхняя строка */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Текст вопроса */
.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 активен */
.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);
}

/* ====== СЕКЦИЯ "СООБЩЕСТВО" ====== */
.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;
  text-align: center;
  transition: none;
}

/* Эффект при наведении */
.community__icon-block:hover {
  transform: scale(1.05);
}

/* Сами иконки */
.community__icon {
  width: 80px;
  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;
}

html[lang="es"] .tokenh31 {
  color: #ffffff;
    text-transform: uppercase;
    transform: translate(-30px, 150px);
    font-size: 13.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;
  border-radius: 10px;
  font-size: 1.3rem;
  position: relative;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.05);
  width: 1230px;
  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;
}

    .about__image0 {
    width: 70px;
    margin-left: -125px;
    margin-bottom: -900px;
    position: relative;
    margin-top: -160px;
    z-index: 1;
  }

  .about__image0 img {
    width: 500px;
    margin-top: 80px;
    margin-left: 75px;
  }

@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;
  }

  html[lang="zh"] .tokenh4 {
    color: #000;
    text-transform: uppercase;
    transform: translate(px, 247px);
    font-size: 12.9rem;
    font-weight: 600;
    transform: translate(-49.5%, -156%);
  }

  html[lang="zh"] .tokenh3 {
    color: #000;
    text-transform: uppercase;
    transform: translate(0px, 358px);
    font-size: 18.6rem;
    font-weight: 600;
  }

  html[lang="zh"] .tokenh31 {
    color: #ffffff;
    text-transform: uppercase;
    transform: translate(0px, 217px);
    font-size: 27.7rem;
    font-weight: 600;
  }

  .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: #ffffff;
    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-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;
  }

  .coming_soon {
    font-size: 80px;
    margin-top: 00px;
    text-align: center;
  }

  .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;
  }

  html[lang="es"] .tokenh31 {
    color: #ffffff;
    text-transform: uppercase;
    transform: translate(-30px, 180px);
    font-size: 17.7rem;
    font-weight: 600;
  }

  html[lang="es"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -230%);
    font-size: 10.4rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  .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: -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;
}

  .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 {
    order: 2;
    margin-top: auto;;
    position: relative;
    width: 150%;
    min-height: 700px;
    overflow: hidden;
    transform: scale(1.5);
  }

  .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: #e4b92e;
    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%;
  }

  .btn-buy-dex:hover {
    transform: scale(1.03);
    background-color: #997d22;
  }

  .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;
  }

  .community__icon-big {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
  }

  .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';
  }

  .header__buy-btn:hover {
    transform: scale(1.05);
    background-color: rgb(129 101 11);
  }

  .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;
  }
}

@media (min-width: 1400px) and (max-width: 1920px) {
  /* Для Chrome, Edge, Opera, Safari */
  ::-webkit-scrollbar {
    width: 17px;
    background: #000;
  }

  ::-webkit-scrollbar-thumb {
    background: #e4b92e;
    border-radius: 0px !important;
    margin: 0;
    min-height: 164px;
  }

  ::-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: #ffffff;
    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: #e4b92e;
    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%;
  }

  .btn-buy-dex:hover {
    transform: scale(1.03);
    background-color: #997d22;
  }

  .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;
  }

  html[lang="es"] .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;
    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;
  }

  .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 {
    order: 2;
    margin-top: auto;;
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    transform: scale(1.5);
  }

  .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';
  }

  .header__buy-btn:hover {
    transform: scale(1.05);
    background-color: rgb(129 101 11);
  }

  .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__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: 400px;
    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);
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  /* Для Chrome, Edge, Opera, Safari */
  ::-webkit-scrollbar {
    width: 17px;
    background: #000;
  }

  ::-webkit-scrollbar-thumb {
    background: #e4b92e;
    border-radius: 0px !important;
    margin: 0;
    min-height: 164px;
  }

  ::-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: #ffffff;
    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: #e4b92e;
    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%;
  }

  .btn-buy-dex:hover {
    transform: scale(1.03);
    background-color: #997d22;
  }

  .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;
  }

  html[lang="es"] .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;
    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;
  }

  .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 {
    order: 2;
    margin-top: auto;;
    position: relative;
    width: 100%;
    overflow: hidden;
    transform: 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';
  }

  .header__buy-btn:hover {
    transform: scale(1.05);
    background-color: rgb(129 101 11);
  }

  .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__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: 100;
  }

  .about__image0 img {
    width: 400px;
    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);
  }
}

@media (min-width: 1001px) and (max-width: 1200px) {
  /* Для Chrome, Edge, Opera, Safari */
  ::-webkit-scrollbar {
    width: 17px;
    background: #000;
  }

  ::-webkit-scrollbar-thumb {
    background: #e4b92e;
    border-radius: 0px !important;
    margin: 0;
    min-height: 164px;
  }

  ::-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 {
    transform: translateY(160px);
  }

  .tokenh31 {
    transform: translateY(110px);
  }

  html[lang="en"] .tokenh3 {
    transform: translate(4px, 160px);
    font-size: 14vw;
  }

  .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: #ffffff;
    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: #e4b92e;
    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%;
  }

  .btn-buy-dex:hover {
    transform: scale(1.03);
    background-color: #997d22;
  }

  .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 {
    font-size: 15.5vw;
    transform: translateY(130px);
  }

  html[lang="es"] .tokenh31 {
    font-size: 15.5vw;
    transform: translateY(130px);
  }

  .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;
    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;
  }

  .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 {
    order: 2;
    margin-top: auto;;
    position: relative;
    width: 100%;
    overflow: hidden;
    transform: scale(1.5);
  }

  .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';
  }

  .header__buy-btn:hover {
    transform: scale(1.05);
    background-color: rgb(129 101 11);
  }

  .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__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: -130px;
    transform: translateX(-10px);
  }

  .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: 400px;
    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);
  }
}

@media (max-width: 1107px) {
  .footer__right img {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  /* Для Chrome, Edge, Opera, Safari */
  ::-webkit-scrollbar {
    width: 7px;
    background: #000;
  }

  ::-webkit-scrollbar-thumb {
    background: #e4b92e;
    border-radius: 0px !important;
    margin: 0;
    min-height: 24px;
  }

  ::-webkit-scrollbar-track {
    background: #000;
    border-radius: 0px !important;
  }

  .community__icon1 {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    margin-left: 20px;
  }

  html[lang="zh"] .faq-items {
    min-width: 0px;
  }

  .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -220%);
    font-size: 10rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="en"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -180%);
    font-size: 13rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="es"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -325%);
    font-size: 6rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="zh"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -250%);
    font-size: 7rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="zh"] .tokenh3 {
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
    font-size: 16.5vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(70px);
    margin-left: 1px;
  }

  html[lang="zh"] .tokenh31 {
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    font-size: 24.7vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(82px);
    margin-left: -19px;
  }

  .menu-toggle {
    display: none;
  }

  .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: none;
  }

  .action-select {
    display: block;
    margin-right: 20px;
  }

  .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;
  }

  /* Изображение – показывать после контента */

  .hero__image {
    order: 2;
    margin-top: auto;
    position: relative;
    width: 100%;
    overflow: hidden;
    transform: scale(2);
  }

  .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: 60px;
  }

  .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;
  }

/*О Токене*/

  .about__wrapper0 {
    width: 100%;
    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;
  }

  .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 {
    gap: 30px;
    width: 100%;
    transform: translateY(-214px);
    margin-top: auto;
  }

  .faq-items {
    background-color: rgb(0 0 0);
    border-radius: 20px;
    padding: 1px 24px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    width: 100%;
    min-width: none;
    margin: 0 auto;
    position: relative;
  }

  html[lang="zh"] .faq-items {
    min-width: 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: 400px;
    overflow: hidden;
    background-position: center 188px;
  }

  .tokenomics-section__content {
    transform: scale(0.82);
    margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(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, -170px) scale(1.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-left: 1px;
  }

  .tokenomics-btn:hover {
    margin-top: 150px;
    font-size: 1.1rem;
    transform: translate(-1px, -91px) scale(1.5);
    background-color: #919191;
    color: #000;
  }


  .tokenomics-svg-wrapper {
    display:none;
  }

  .tokenomics-footer {
    font-size: 0.9rem;
    max-width: 90%;
    transform: translate(-1px, -75px) scale(1.2);
  }

  .tokenh3 {
    font-size: 6.34rem;
    transform: translate(1px, 105px);
  }

  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="es"] .tokenh3 {
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
    font-size: 14.7vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(115px);
    margin-left: 1px;
  }

  html[lang="en"] .my-lines-text3 {
    position: absolute;
    top: 142px;
    right: -175px;
    z-index: 10;
  }

  /* 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: 5.9rem;
  }

  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;
  }

  html[lang="es"] .tokenh31 {
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    font-size: 15.5vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(110px);
    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: start;
    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;
  }

  .footmori img {
    width: 300px;
    margin-top: -200px;
  }

  .footer__left {
    position: relative;
    padding-bottom: 80px;
  }

  .footer__disclaimer p {
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
  }
}

@media (max-width: 768px) {
  /* Для Chrome, Edge, Opera, Safari */
  ::-webkit-scrollbar {
    width: 7px;
    background: #000;
  }

  .action-select {
    display: block;
    margin-right: 20px;
  }

  ::-webkit-scrollbar-thumb {
    background: #e4b92e;
    border-radius: 0px !important;
    margin: 0;
    min-height: 24px;
  }

  ::-webkit-scrollbar-track {
    background: #000;
    border-radius: 0px !important;
  }

  .community__icon1 {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    margin-left: 20px;
  }

  html[lang="zh"] .tokenh3 {
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
    font-size: 16.5vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(70px);
    margin-left: 1px;
  }

  html[lang="zh"] .tokenh31 {
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    font-size: 24.7vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(82px);
    margin-left: -19px;
  }

  .menu-toggle {
    display: none;
  }

  .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: none;
  }

  .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;
  }

  /* Изображение – показывать после контента */
  .hero__image {
    order: 2;
    margin-top: auto;
    position: relative;
    width: 100%;
    overflow: hidden;
    transform: scale(2.5);
  }

  .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: 60px;
  }

  .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%, -200%);
      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;
      flex-direction: column
  } */

  .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 {
    width: 100%;
    margin-top: auto; 
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform: translateY(-170px);
  }

  .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;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  html[lang="zh"] .faq-items {
    min-width: 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: 400px;
    overflow: hidden;
    background-position: center 188px;
  }

  .tokenomics-section__content {
    transform: scale(0.82);
    margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(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, -150px) scale(1.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-left: 1px;
  }

  .tokenomics-btn:hover {
    margin-top: 150px;
    font-size: 1.1rem;
    transform: translate(-1px, -91px) scale(1.5);
    background-color: #919191;
    color: #000;
  }


  .tokenomics-svg-wrapper {
    display:none;
  }

  .tokenomics-footer {
    font-size: 0.9rem;
    max-width: 90%;
    transform: translate(-1px, -75px) scale(1.2);
  }

  .tokenh3 {
    font-size: 5.64rem;
    transform: translate(1px, 95px);
  }

  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="es"] .tokenh3 {
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
    font-size: 14.7vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(60px);
    margin-left: 1px;
  }

  html[lang="en"] .my-lines-text3 {
    position: absolute;
    top: 142px;
    right: -175px;
    z-index: 10;
  }

  .tokenh4 {
    position: absolute;
    transform: translate(-50.2%, -270%);
    font-size: 8rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="en"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -190%);
    font-size: 13rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="es"] .tokenh4 {
    position: absolute;
    transform: translate(-50.2%, -380%);
    font-size: 5rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="zh"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -250%);
    font-size: 7rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  /* 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: 5.5rem;
  }

  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;
  }

  html[lang="es"] .tokenh31 {
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    font-size: 15.5vw;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transform: translateY(85px);
    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: start;
    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;
  }

  .footmori img {
    width: 300px;
    margin-top: -200px;
  }

  .footer__left {
    position: relative;
    padding-bottom: 80px;
  }

  .footer__disclaimer p {
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
  }
}

@media (max-width: 666px) {
  .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -310%);
    font-size: 7rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="en"] .tokenh4 {
    font-size: 11rem;
    transform: translate(-50.2%, -220%);
  }

  html[lang="es"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -440%);
    font-size: 4.5rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="zh"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -320%);
    font-size: 5rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }
}

@media (max-width: 588px) {
  .faq-lists {
    width: 100%;
    margin-top: auto; 
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform: translateY(-140px);
  }

  .action-select {
    width: 80px;
    margin-right: 20px;
  }

  .language-select {
    width: 80px;
  }
  
  .tokenh4 {
    position: absolute;
    transform: translate(-50.2%, -310%);
    font-size: 7rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="zh"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -340%);
    font-size: 5rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="es"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -490%);
    font-size: 4rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="en"] .tokenh4 {
    font-size: 10rem;
    transform: translate(-50.2%, -240%);
  }
}

@media (max-width: 450px) {
  .faq-lists {
    width: 100%;
    margin-top: auto; 
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform: translateY(-120px);
  }

  .action-select {
    width: 70px;
    margin-right: 10px;
  }

  .social-icons {
    margin-right: -20px;
  }

  .language-select {
    width: 70px;
  }
  

  html[lang="zh"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -350%);
    font-size: 5rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  .tokenh4 {
    position: absolute;
    transform: translate(-50.2%, -380%);
    font-size: 6rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="es"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -570%);
    font-size: 3.7rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="en"] .tokenh4 {
    font-size: 9rem;
    transform: translate(-50.2%, -260%);
  }
}

@media (min-width: 412px) and (max-width: 415px) {
  #home.hero {
    height: calc(100vh - 70px);
  }

  .mobile-image {
    width: 150%;
    margin-left: -140px;
    margin-top: -50px;
    transform: translate(0px, 30px);
  }

  html[lang="es"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -680%);
    font-size: 3.2rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="zh"] .tokenh3 {
    font-size: 4.9rem;
    transform: translate(0px, 67px);
  }

  html[lang="zh"] .tokenh31 {
    font-size: 7.3rem;
    transform: translate(0px, 82px);
  }

  .header__right {
    display: flex;
    align-items: center;
    margin-right: 15px;
    transform: scale(1);
  }

  .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: none;
  }

  .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;
    max-width: 98vw;
    width: 92vw;
    font-size: 1.08em; 
    left: 50%;
    transform: translateX(-50%);
  }

  .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;
  }
  

  .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: #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;
  }

  .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-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;
  }

  .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: 400px;
    overflow: hidden;
    background-position: center 188px;
  }

  .tokenomics-section__content {
    /* Убираем или уменьшаем масштаб */
    transform: scale(0.82);
    margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(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);
  }

  .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;
    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;
    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: none;
  }

  .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;
    max-width: 98vw;
    width: 92vw;
    font-size: 1.08em;
    left: 50%;
    transform: translateX(-50%);
  }

  .main-img-1 {
    position: absolute;
    top: 75%;
    left: 13%;
    width: 220px;
    height: auto;
    z-index: 2;
  }

  .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;
  }

  .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: #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-items {
    background-color: rgb(0 0 0);
    border-radius: 20px;
    padding: 1px 24px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    /* max-width: 390px; */
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  html[lang="zh"] .faq-items {
    min-width: 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 188px;
  }

  .tokenomics-section__content {
    transform: scale(0.82);
    margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(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);
  }

  /* 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;
    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: start;
    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;
  }

  html[lang="es"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -680%);
    font-size: 3.2rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }
}

@media (min-width: 375px) and (max-width: 391px) {
  #home.hero {
    height: calc(100vh - 70px);
  }

  .tokenh4 {
    position: absolute;
    transform: translate(-50.2%, -477%);
    font-size: 5rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="en"] .tokenh4 {
    font-size: 8rem;
    transform: translate(-50.2%, -295%);
  }

  html[lang="es"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -700%);
    font-size: 3.2rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  .mobile-image {
    width: 150%;
    margin-left: -140px;
    margin-top: -80px;
    transform: translate(0px, 30px);
  }

  html[lang="zh"] .tokenh3 {
    font-size: 4.4rem;
    transform: translate(0px, 60px);
  }

  html[lang="zh"] .tokenh31 {
    font-size: 6.6rem;
    transform: translate(0px, 95px);
  }

  .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: none;
  }

  .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;
    max-width: 98vw;
    width: 92vw;
    font-size: 1.08em;
    left: 50%;
    transform: translateX(-50%);
  }

  .main-img-1 {
    position: absolute;
    top: 75%;
    left: 13%;
    width: 220px;
    height: auto;
    z-index: 2;
  }
  
  .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;
  }

  .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: #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;
  }


  .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-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;
  }

  .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: 400px;
    overflow: hidden;
    background-position: center 188px;
  }

  .tokenomics-section__content {
    transform: scale(0.82);
    margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(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);
  }

  /* 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: start;
    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);
  }

  html[lang="es"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -785%);
    font-size: 2.8rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  .mobile-image {
    width: 150%;
    margin-left: -130px;
    margin-top: -50px;
    transform: translate(0px, 30px);
  }

  html[lang="zh"] .tokenh3 {
    font-size: 3.8rem;
    transform: translate(-1px, 55px);
  }

  html[lang="zh"] .tokenh31 {
    font-size: 4rem;
    transform: translate(-1px, 79px);
  }

  .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: none;
  }

  .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; 
    max-width: 98vw;
    width: 92vw;
    font-size: 1.08em;
    left: 50%;
    transform: translateX(-50%);
  }

  .main-img-1 {
    position: absolute;
    top: 75%;
    left: 13%;
    width: 220px;
    height: auto;
    z-index: 2;
  }
  
  .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;
  }
  
  .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: #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;
    transform: translate(-50.2%, -510%);
    font-size: 5rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

    html[lang="es"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -825%);
    font-size: 2.8rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  html[lang="en"] .tokenh4 {
    font-size: 7rem;
    transform: translate(-50.2%, -340%);
  }

  .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-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;
  }

  .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 188px;
  }

  .tokenomics-section__content {
    transform: scale(0.82);
    margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(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);
  }

  /* 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: start;
    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 (max-width: 360px) {
  .header__logo {
    display: none;
  }
  .action-select {
    width: 70px;
    margin-right: 10px;
  }

  .social-icons {
    margin-right: -20px;
  }

  .language-select {
    width: 70px;
  }
}

@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(28px, 30px);
  }

  html[lang="es"] .tokenh4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50.2%, -890%);
    font-size: 2.8rem;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  /* Скрыть кнопку в хедере */
  .header__buy-btn {
    display: none;
  }

  .about__images {
    display: none;
  }
  
  .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;
  }

  .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;
  }

  html[lang="en"] .tokenh4 {
    font-size: 6.5rem;
    transform: translate(-50.2%, -590%);
  }

  /* .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-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;
  }

  .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 188px;
  }

  .tokenomics-section__content {
    transform: scale(0.82);
    margin-top: -154px;
  }

  .tokenomics-items {
    display: grid;
    grid-template-columns: repeat(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);
  }

  /* 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: start;
    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;
  }
}
