/* ШАПКА Подчёркивание при наведении */

.underlinecustom {
    position: relative;
  }
  .underlinecustom::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 3px;
    bottom: 1.5px;
    border-radius: 20px;
    transition: transform 0.25s ease-in-out;
    background-color: #67c960;
  }
  
  .underlinecustom::after {
    width: 0;
    transition: 0.3s;
  }
  .underlinecustom:hover:after {
    width: 80%;
  }
  
  .underlinecustom::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Баннер Старый градиент */
  
  .lngradold{
    background: linear-gradient(180deg, #0D0D11 0%, rgb(41, 104, 230) 0%, rgb(41, 151, 230) 82%, #0D0D11 88%)
  }
  
  /* Баннер */
  
  .gradient-block {
    position: relative; /* Для абсолютного позиционирования текста */
    width: 100%; /* Ширина 100% экрана */
    display: flex; /* Используем Flexbox для центрирования */
    align-items: center; /* Вертикальное выравнивание содержимого */
    justify-content: center; /* Горизонтальное выравнивание содержимого */
    background: linear-gradient(180deg, #0D0D11 0%, rgb(41, 104, 230) 0%, rgb(41, 151, 230) 82%, #0D0D11 88%);
}

.banner-image {
    max-width: 100%; /* Адаптивная ширина */
    height: auto; /* Высота автоматически для сохранения пропорций */
}

.text-overlay-title {
    position: absolute; /* Абсолютное позиционирование текста */
    text-align: center; /* Центрируем текст */
    top: 32%; /* Положение вертикально по центру */
    left: 50%; /* Положение горизонтально по центру */
    transform: translate(-50%, -50%); /* Центрирование */
}

.text-overlay-title-mini {
  position: absolute;
  text-align: center;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.buttonplay-title-mini {
  position: absolute; /* Абсолютное позиционирование текста */
  text-align: center; /* Центрируем текст */
  top: 50%; /* Положение вертикально по центру */
  left: 50%; /* Положение горизонтально по центру */
  transform: translate(-50%, -75%); /* Центрирование */
}

/* Фикс для мобильного Safari */
@supports (-webkit-touch-callout: none) {
  .gradient-block {
    height: -webkit-fill-available;
  }
}

/* Оптимизация рендеринга текста */
.text-overlay-title, .text-overlay-title-mini {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}

/* Анимация появления для лучшего UX */
.gradient-block {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0.8; }
  to { opacity: 1; }
}

/* Мобильный баннер */
@media (max-width: 768px) {
  .gradient-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    overflow: hidden;
    position: relative;
  }

  .banner-image {
    width: 100%;
    height: auto;
    min-height: 180px;
    object-fit: cover;
    object-position: center;
  }

  .text-overlay-title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    white-space: nowrap;
    text-align: center;
    width: 100%;
  }

  .text-overlay-title-mini {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    padding: 0 15px;
  }
}
  
  @media (max-width: 1200px) {
  .text-overlay-title-mini {
    visibility: visible; /* Изменено с hidden */
    font-size: 0.9rem; /* Уменьшаем размер шрифта для мобильных */
  }
}

  @media (max-width: 1080px) {
    .text-overlay-title{
      font-size: 1.2rem;
    }
  }
  @media (max-width: 1800px) {
    .text-overlay-title{
      font-size: 4rem;
    }
  }
  @media (max-width: 1500px) {
    .text-overlay-title{
      font-size: 3rem;
    }
  }
  /* Кнопка DISCORD */
  
  .btndiscord {
    position: relative;
    z-index: 2;

    display: inline-block;
    margin-bottom: 0;
    padding: 1em 1.5em;

    vertical-align: middle;

    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: 0.1px 0 rgba(0, 0, 0, .25);
    letter-spacing: 0.15em;
    white-space: nowrap;

    background-color: #373737;
    border: none;
    border-radius: 0;

    user-select: none;
    touch-action: manipulation;
    cursor: pointer;
}

.btndiscord:before,
.btndiscord:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;

    transition: all .625s cubic-bezier(0, .8, .26, .99), opacity .05s linear;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.btndiscord:before {
    z-index: -1;

    background: #515ce9;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, .15);

    border-top: 4px solid #7982ff;
    border-bottom: 4px solid #353c9b;
    border-left: 4px solid #3e46b5;
    border-right: 4px solid #5f67d7;
}

.btndiscord:after {
    z-index: -2; /* Псевдоэлемент для свечения ниже */
    background: linear-gradient(90deg, #686868, #5f5f5f, #414141, #5f5f5f);
    background-size: 400%;
    border-radius: 40px;
    filter: blur(20px);
    opacity: 0;
    transition: 0.6s;
}

.btndiscord:hover,
.btndiscord:focus {
    outline: 0;

    &::before,
    &::after {
        transform: scale(1.2);
    }

    &::before {
        background-color: #272727;
        border-top-color: #3d3d3d;
        border-bottom-color: #000;
        border-right-color: #2f2f2f;
        border-left-color: #171717;
    }

    &::after {
        opacity: 0.4; /* Больше свечение при наведении */
        animation: animate 8s linear infinite; /* Анимация */
    }
}

/* Добавьте анимацию, если это необходимо */
@keyframes animate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

 /* Кнопка DISCORD */
  
 .btnquestion {
  position: relative;
  z-index: 2;

  display: inline-block;
  margin-bottom: 0;
  padding: 0em 1.5em;

  vertical-align: middle;

  line-height: 1.4;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;

  background-color: #373737;
  border: none;
  border-radius: 0;

  user-select: none;
  touch-action: manipulation;
  cursor: pointer;
}

.btnquestion:before,
.btnquestion:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;

  transition: all .625s cubic-bezier(0, .8, .26, .99), opacity .05s linear;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.btnquestion:before {
  z-index: -1;

  background: #303030;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, .15);

  border-top: 4px solid #3b3b3b;
  border-bottom: 4px solid #272727;
  border-left: 4px solid #252525;
  border-right: 4px solid #363636;
}

.btnquestion:after {
  z-index: -2; /* Псевдоэлемент для свечения ниже */
  background: linear-gradient(90deg, #686868, #5f5f5f, #414141, #5f5f5f);
  background-size: 400%;
  border-radius: 40px;
  filter: blur(20px);
  opacity: 0;
  transition: 0.6s;
}

.btnquestion:hover,
.btnquestion:focus {
  outline: 0;

  &::before,
  &::after {
      transform: scale(1);
  }

  &::before {
      background-color: #272727;
      border-top-color: #3d3d3d;
      border-bottom-color: #000;
      border-right-color: #2f2f2f;
      border-left-color: #171717;
  }

  &::after {
      opacity: 0.2; /* Больше свечение при наведении */
      animation: animate 4s linear infinite; /* Анимация */
  }
}

/* Добавьте анимацию, если это необходимо */
@keyframes animate {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}
 
/* КНОПКА ИГРАТЬ ВВЕРХУ */
  
.btnplaytop {
  position: relative;
  z-index: 2;

  display: inline-block;
  margin-bottom: 0;
  padding: 0.4em 5.2em;

  vertical-align: middle;

  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0.1px 0 rgba(0, 0, 0, .25);
  letter-spacing: 0.15em;
  white-space: nowrap;

  background-color: #373737;
  border: none;
  border-radius: 0;

  user-select: none;
  touch-action: manipulation;
  cursor: pointer;
  margin-top: 5%;
}

.btnplaytop:before,
.btnplaytop:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;

  transition: all .625s cubic-bezier(0, .8, .26, .99), opacity .05s linear;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.btnplaytop:before {
  z-index: -1;

  background: #31ae1f;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, .15);

  border-top: 4px solid #64fd1f;
  border-bottom: 4px solid #1e8c03;
  border-left: 4px solid #156c00;
  border-right: 4px solid #47d009;
}

.btnplaytop:after {
  z-index: -2; /* Псевдоэлемент для свечения ниже */
  background: linear-gradient(90deg, #686868, #5f5f5f, #414141, #5f5f5f);
  background-size: 400%;
  border-radius: 40px;
  filter: blur(20px);
  opacity: 0;
  transition: 0.6s;
}

.btnplaytop:hover,
.btnplaytop:focus {
  outline: 0;

  &::before,
  &::after {
      transform: scale(1.2);
  }

  &::before {
      background-color: #272727;
      border-top-color: #3d3d3d;
      border-bottom-color: #000;
      border-right-color: #2f2f2f;
      border-left-color: #171717;
  }

  &::after {
      opacity: 0.4; /* Больше свечение при наведении */
      animation: animate 8s linear infinite; /* Анимация */
  }
}


  /* КНОПКА ИГРАТЬ */
  
  .btnplay {
    position: relative;
    z-index: 2;

    display: inline-block;
    margin-bottom: 0;
    padding: 1em 1.5em;

    vertical-align: middle;

    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: 0.1px 0 rgba(0, 0, 0, .25);
    letter-spacing: 0.15em;
    white-space: nowrap;

    background-color: #373737;
    border: none;
    border-radius: 0;

    user-select: none;
    touch-action: manipulation;
    cursor: pointer;
}

.btnplay:before,
.btnplay:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;

    transition: all .625s cubic-bezier(0, .8, .26, .99), opacity .05s linear;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.btnplay:before {
    z-index: -1;

    background: #31ae1f;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, .15);

    border-top: 4px solid #64fd1f;
    border-bottom: 4px solid #1e8c03;
    border-left: 4px solid #156c00;
    border-right: 4px solid #47d009;
}

.btnplay:after {
    z-index: -2; /* Псевдоэлемент для свечения ниже */
    background: linear-gradient(90deg, #686868, #5f5f5f, #414141, #5f5f5f);
    background-size: 400%;
    border-radius: 40px;
    filter: blur(20px);
    opacity: 0;
    transition: 0.6s;
}

.btnplay:hover,
.btnplay:focus {
    outline: 0;

    &::before,
    &::after {
        transform: scale(1.2);
    }

    &::before {
        background-color: #272727;
        border-top-color: #3d3d3d;
        border-bottom-color: #000;
        border-right-color: #2f2f2f;
        border-left-color: #171717;
    }

    &::after {
        opacity: 0.4; /* Больше свечение при наведении */
        animation: animate 8s linear infinite; /* Анимация */
    }
}

/* Добавьте анимацию, если это необходимо */
@keyframes animate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


  /* КНОПКА КУПИТЬ ПРОХОДКУ */
  
  .btnbuy {
    position: relative;
    z-index: 2;

    display: inline-block;
    margin-bottom: 0;
    padding: 1em 1.5em;

    vertical-align: middle;

    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: 0.1px 0 rgba(0, 0, 0, .25);
    letter-spacing: 0.15em;
    white-space: nowrap;

    background-color: #373737;
    border: none;
    border-radius: 0;

    user-select: none;
    touch-action: manipulation;
    cursor: pointer;
}

.btnbuy:before,
.btnbuy:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;

    transition: all .625s cubic-bezier(0, .8, .26, .99), opacity .05s linear;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.btnbuy:before {
    z-index: -1;

    background: #1a9cd8;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, .15);

    border-top: 4px solid #40bffa;
    border-bottom: 4px solid #177aa8;
    border-left: 4px solid #105b7e;
    border-right: 4px solid #0eb3ff;
}

.btnbuy:after {
    z-index: -2; /* Псевдоэлемент для свечения ниже */
    background: linear-gradient(90deg, #686868, #5f5f5f, #414141, #5f5f5f);
    background-size: 400%;
    border-radius: 40px;
    filter: blur(20px);
    opacity: 0;
    transition: 0.6s;
}

.btnbuy:hover,
.btnbuy:focus {
    outline: 0;

    &::before,
    &::after {
        transform: scale(1.2);
    }

    &::before {
        background-color: #272727;
        border-top-color: #3d3d3d;
        border-bottom-color: #000;
        border-right-color: #2f2f2f;
        border-left-color: #171717;
    }

    &::after {
        opacity: 0.4; /* Больше свечение при наведении */
        animation: animate 8s linear infinite; /* Анимация */
    }
}

/* Добавьте анимацию, если это необходимо */
@keyframes animate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
  
  /* СТАРТ Кнопка футера */
  
  
  
  /* ЦВЕТА КНОПОК */
  
  .gradient-cyan{
      background: #5d65d6;   
  }

  .gradient-green{
      background: #59c551;   
  }
  
  .gradient-blue{
      background: #43b4ff;   
  }
  
  .gradient-dark-blue{
      background: #7289da;
  }
  
  /* Переход кнопок FOOTER */
  
  .footer-btn-store img {
      transition: background-color 0.33s ease; /* Плавный переход для эффекта */
  }
  
  .footer-btn-store:hover img {
      background-color: #267cb2; /* Затемнённый голубой фон при наведении */
  }
  /* КОНЕЦ Эффект при наведении на кнопку футера */
  
  .footer-btn-discord img {
      transition: background-color 0.33s ease; /* Плавный переход для эффекта */
  }
  .footer-btn-discord:hover img {
      background-color: #49588d; /* Затемнённый синий фон при наведении */
  }
  
  /* СТАРТ Эффект при наведении на кнопку футера */
  .footer-btn-wiki img {
      transition: background-color 0.33s ease; /* Плавный переход для эффекта */
  }
  
  .footer-btn-wiki:hover img {
      background-color: #40893b; /* Затемнённый зеленый фон при наведении */
  }
  /* КОНЕЦ Эффект при наведении на кнопку футера */

    /* СТАРТ Эффект при наведении на кнопку футера */
    .footer-btn-copy img {
      transition: background-color 0.33s ease; /* Плавный переход для эффекта */
  }
  
  .footer-btn-copy:hover img {
      background-color: #424796; /* Затемнённый тёмно-синий фон при наведении */
  }
  /* КОНЕЦ Эффект при наведении на кнопку футера */

  /* Burger menu */

/* Основные стили */
/* Обновленные стили для шапки */
.header-container {
  width: 100%;
  background-color: #0D0D11;
  padding: 10px 0;
  position: relative;
  z-index: 999;
}

.header-content {
  max-width: 950px; /* Ограничиваем ширину контейнера */
  margin: 0 auto; /* Центрируем */
  padding: 0 20px;
  display: flex;
  justify-content: center; /* Центрируем содержимое */
  align-items: center;
  gap: 40px; /* Расстояние между лого и навигацией */
}

.logo-container {
  flex-shrink: 0; /* Запрещаем сжатие логотипа */
}

.logo-container img {
  width: 36px;
  height: 36px;
  object-fit: contain; /* Сохраняем пропорции */
  display: block; /* Убираем лишние отступы */
}

/* Мобильная версия */
@media (max-width: 768px) {
  .header-container {
    padding: 8px 0;
  }
  
  .logo-container img {
    width: 36px;
    height: 36px;
    min-width: 36px; /* Запрещаем уменьшение */
  }
}

/* Увеличиваем отступы от центра */
.logo-section {
  margin-right: auto; /* Логотип сдвигается влево */
}

.nav-section {
  margin-left: auto; /* Навигация сдвигается вправо */
}

.nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: #3080e6;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #3080e6;
  transition: width 0.3s ease;
}

.nav-list li a:hover::after {
  width: 80%;
}

/* Адаптивность */
@media (min-width: 768px) {
  .logo-text {
    display: block;
  }
}

@media (max-width: 1200px) {
  .logo-section {
    padding-right: 80px;
  }
  .nav-section {
    padding-left: 80px;
  }
}

@media (max-width: 992px) {
  .logo-section {
    padding-right: 60px;
  }
  .nav-section {
    padding-left: 60px;
  }
}

/* Мобильная навигация */
@media (max-width: 768px) {
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    height: 60px; /* Фиксированная высота шапки */
  }

  .nav-container {
    display: block !important;
  }

  .nav-list {
    display: flex !important;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0;
    margin: 0;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    background: transparent;
    z-index: auto;
    transform: none;
    width: auto;
    height: auto;
  }

  .nav-list li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .nav-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500;
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  /* Эффекты при наведении */
  .nav-list li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
}

@media (max-width: 480px) {
  .nav-list {
    gap: 8px;
  }
  
  .nav-list li a {
    height: 32px;
    padding: 0 12px;
    font-size: 13px;
  }
  
  .logo-container img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 768px) {
  .text-overlay-title {
    font-size: 2.5rem !important;
    top: 30% !important;
    white-space: nowrap; /* Запрещаем перенос текста */
    width: 100%; /* Занимает всю ширину */
    overflow: hidden; /* Скрываем выходящий за границы текст */
    text-overflow: ellipsis; /* Добавляем многоточие если текст не помещается */
    padding: 0 20px; /* Добавляем отступы по бокам */
  }
  
  .text-overlay-title-mini {
    top: 32%; /* Располагаем ниже */
    font-size: 0.8rem;
    white-space: nowrap;
    /* Убираем transform для лучшего контроля на мобильных */
    transform: translateX(-50%); /* Только по горизонтали */
    margin-top: 20px; /* Отступ от основного заголовка */
  }
  
  .gradient-block {
    min-height: 200px;
  }
}

@media (max-width: 400px) {
  .text-overlay-title-mini {
    font-size: 0.7rem;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .text-\[3rem\] {
    font-size: 2rem !important;
  }
  
  .max-w-\[960px\] {
    padding: 0 15px !important;
  }
  
  .text-base {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 768px) {
  .w-96 {
    width: 100% !important;
    max-width: 350px !important;
    margin: 0.5rem auto !important;
  }
  
  .flex-wrap {
    flex-direction: column;
    align-items: center;
  }
  
  .bg-\[\#1E1E25\] {
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 576px) {
  .nav-list {
    gap: 15px;
  }
  
  .logo-container img {
    width: 36px;
    height: 36px;
  }
}

/* Простая анимация увеличения логотипа */
.logo-container img {
    transition: transform 0.3s ease; /* Плавное изменение */
}

.logo-container:hover img {
    transform: scale(1.1); /* Увеличение на 10% */
}

  nav {
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  nav > a img {
    width: 100px;
    border-radius: 50%;
  }
  
  ul {
    display: flex;
    gap: 20px;
    transition: .5s;
  }
  
  li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }
  
  label {
    display: none;
  }
  
  #burger-toggle {
    display: none;
  }
  
  @media (max-width: 784px) {
    label {
      position: relative;
      display: block;
      height: 25px;
      width: 30px;
    }
  
    label::after, label::before, label span {
      position: absolute;
      width: 100%;
      height: 3px;
      background-color: white;
      transition: .3s;
    }
  
    label::before {
      content: "";
      top: 0;
    }
  
    label::after {
      content: "";
      bottom: 0;
    }
  
    label span {
      top: 11px;
    }
  
    #burger-toggle:checked ~ label::after {
      transform: rotate(45deg);
      bottom: 10px;
    }
  
    #burger-toggle:checked ~ label::before {
      transform: rotate(-45deg);
      top: 12px;
    }
  
    #burger-toggle:checked ~ label span {
      transform: rotate(-45deg);
      top: 12px;
    }
  
    ul {
      position: fixed;
      left: 0;
      right: 0;
      background-color: #0D0D11;
      padding-top: 43%;
      z-index: -1;
      flex-direction: column;
      text-align: center;
  
      left: -100vw;
      right: 100vw;
  
    }
  
    #burger-toggle:checked ~ ul {
      left: 0;
      right: 0;
    }
  
    li a {
      font-size: 24px;
    }
  }

/* Burger menu */

  @media (max-width: 1024px) {

    body {
      overflow-x: hidden;
      width: 100%;
    }

    .mobile-img-center{
      background-color: #07006c;
      flex-direction: column;
      align-items: center;
      max-width: 10%;
    }

  }

  /* FAQ */
  
  .faq_3 .container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    display: block;
    padding-top: 10px;
    padding-right: 295px;
    padding-bottom: 10px;
    padding-left: 295px;
  }
  
  .faq_3 .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
  }
  
  .faq_3 .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
  }
  
  .faq_3 .answer-box {
    max-height: 0px;
    overflow-x: hidden;
    overflow-y: hidden;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-property: max-height;
  }
  
  .faq_3 .faq.active .openimg {
    transform: rotate(180deg);
  }
  
  .faq_3 .openimg {
    transition-duration: 0.1s;
    transition-timing-function: ease-in-out;
    transition-property: transform;
  }
  
  .faq_3 .faq.active .answer-box {
    max-height: 550px;
  }
  
  .faq_3 input:focus {
    outline-color: initial;
    outline-style: none;
    outline-width: initial;
  }
  
  
  .faq_3 .text-blk.faq-heading {
    line-height: 50px;
    font-weight: 400;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 28px;
    margin-left: 0px;
  }
  
  .faq_3 .text-blk.faq-subhead {
    max-width: 650px;
    line-height: 26px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 28px;
    margin-left: 0px;
  }
  
  .faq_3 .input {
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: inset;
    border-right-style: inset;
    border-bottom-style: inset;
    border-left-style: inset;
    border-top-color: #767676;
    border-right-color: #767676;
    border-bottom-color: #767676;
    border-left-color: #767676;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    height: 45px;
    width: 100%;
    padding-top: 1px;
    padding-right: 24px;
    padding-bottom: 1px;
    padding-left: 24px;
  }
  
  .faq_3 .input-box {
    background-color: white;
    max-width: 550px;
    width: 100%;
    height: 45px;
    display: flex;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  
  .faq_3 .search-btn {
    height: 45px;
    display: flex;
    align-items: center;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
    cursor: pointer;
  }
  
  .faq_3 .heading-content {
    margin-top: 100px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  
  .faq_3 .form-box {
    float: none;
    display: flex;
    justify-content: center;
  }
  
  .faq_3 .responsive-container-block.dropdown-container {
    background-color: #1E1E25;
    max-width: 100%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
    height: auto;
    flex-direction: column;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  
  .faq_3 .search-svg {
    width: 20px;
    height: 20px;
  }
  
  .faq_3 .text-blk.faq-head2 {
    text-align: center;
    line-height: 60px;
    font-weight: 900;
    margin-top: 60px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
  }
  
  .faq_3 .faq {
    display: block;
    flex-direction: column;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #aaaaaa;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
  }
  
  .faq_3 .faq-question-container {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
  }
  
  
  .faq_3 .text-blk.faq-answer {
    line-height: 28px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
  }
  
  .faq_3 .faq-question-container:hover {
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .faq_3 .responsive-container-block.faqheading-bg {
      padding-top: 0px;
      padding-right: 30px;
      padding-bottom: 0px;
      padding-left: 30px;
    }
  
    .faq_3 .text-blk.faq-heading {
      line-height: 42px;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 24px;
      margin-left: 0px;
    }
  
    .faq_3 .text-blk.faq-subhead {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 24px;
      margin-left: 0px;
    }
  
  }
  
  @media (max-width: 768px) {
  .faq_3 .container-block {
    padding: 10px 15px !important;
  }
  
  .text-blk.faq-head2 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin: 30px 0 !important;
  }
  
  .text-blk.faq-questions {
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .btndiscord, .btnplay, .btnbuy {
    padding: 0.8em 1em !important;
    font-size: 1rem !important;
  }
  
  .flex-wrap.justify-center {
    flex-direction: column;
    gap: 0.5rem !important;
  }
  
  .text-center.py-4 {
    padding: 0.5rem 0 !important;
  }
}

@media (max-width: 768px) {
  footer .flex {
    flex-direction: row; /* Изменяем на row вместо column */
    flex-wrap: wrap; /* Разрешаем перенос элементов если не помещаются */
    justify-content: center; /* Центрируем элементы */
    align-items: center; /* Выравниваем по центру вертикально */
    gap: 0.5rem; /* Добавляем небольшой отступ между элементами */
  }

  .footer-btn-store, 
  .footer-btn-discord, 
  .footer-btn-copy {
    margin: 0.5rem !important;
    flex-shrink: 0; /* Запрещаем сжатие элементов */
  }

  .gradient-green, 
  .gradient-dark-blue, 
  .gradient-cyan {
    margin: 0.5rem !important;
    padding: 0.5rem !important;
  }

  .max-lg\\:hidden {
    display: none !important; /* Скрываем текст на мобильных */
  }
}

@media (max-width: 480px) {
  footer .flex {
    gap: 0.3rem; /* Уменьшаем отступ для очень маленьких экранов */
  }
  
  .footer-btn-store img, 
  .footer-btn-discord img, 
  .footer-btn-copy img {
    width: 24px; /* Уменьшаем размер иконок */
    height: 24px;
    padding: 0.3rem; /* Уменьшаем внутренние отступы */
    margin: 0.3rem; /* Уменьшаем внешние отступы */
  }
}
  
  @media (max-width: 1140px) {
    .faq_3 .responsive-container-block.dropdown-container-wrapper {
      padding-top: 0px;
      padding-right: 20px;
      padding-bottom: 0px;
      padding-left: 20px;
    }
  
  
    .faq_3 .heading-content {
      margin-top: 60px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
  
    .faq_3 .text-blk.faq-head2 {
      line-height: 46px;
      margin-top: 30px;
      margin-right: 0px;
      margin-bottom: 40px;
      margin-left: 0px;
    }
  
    .faq_3 .container-block {
      padding-top: 10px;
      padding-right: 15px;
      padding-bottom: 10px;
      padding-left: 15px;
    }
  
    .faq_3 .faq-question-container {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 15px;
      margin-left: 0px;
    }

  
    .faq_3 .text-blk.faq-answer {
      line-height: 22px;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  

  }

/* FAQ */

/* FAQ2 */

.card {
  background: #1E1E25;
  color: #f5f5f5;
  margin: 2rem auto;
  padding-bottom: 1rem;
  max-width: 51rem;
  border-radius: .5rem;
}

.acc-container {
  padding: 1rem 2rem 0rem 2rem;
}
.acc-btn-q {
  width: 100%;
  padding: 1.125rem 2rem;
  font-size: 1.5rem;
  font-family: Montserrat-SemiBold;
  cursor: pointer;
  background: inherit;
  border: none;
  outline: none;
  text-align: left;
  transition: all 0.1s linear; /* убрать если вопросы не появляются при открытии страницы*/
}
.acc-btn-q:after {
  content: "\27A4";
  color: #f5f5f5;
  float: right;
  transition: all 0.3s linear;
}
.acc-btn-q.is-open:after {
  transform: rotate(90deg);
}
.acc-btn-q:hover, .acc-btn-q.is-open {
  color: #ffffff;
}

.acc-content {
  max-height: 0;
  color: #f5f5f5;
  font-size: 1.125rem;
  font-family: Montserrat-SemiBold;
  margin: 0 2rem;
  padding-left: 1rem;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  border-bottom: 1px solid #f5f5f5;
}

/* FAQ2 */

/* Выдвигающаяся надпись из под картинки */

  .hover-block-up {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.hover-block-up:hover .error-message-up {
  visibility: visible;
  opacity: 1;
  bottom: 99%;
}

.error-message-up {
  width: 100%; /* Задаем ширину */
  text-align: center;
  visibility: hidden;
  background-color: #1E1E25;
  color: #f5f5f5;
  font-family: Montserrat-SemiBold;
  border-radius: 8px 8px 0px 0px ;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  bottom: 460px; 
  left: 50%;
  transform: translateX(-50%);
  transition: 0.1s ease-in-out;
  opacity: 0.5;
}

.hover-block-down {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.hover-block-down:hover .errormessage-down {
visibility: visible;
opacity: 1;
bottom: -2%;
}

.errormessage-down {
  width: 100%; /* Задаем ширину */
  text-align: center;
  visibility: hidden;
  background-color: #1E1E25;
  color: #f5f5f5;
  font-family: Montserrat-SemiBold;
  border-radius: 0px 0px 8px 8px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  bottom: -6px; 
  left: 50%;
  transform: translateX(-50%);
  transition: 0.1s ease-in-out;
  opacity: 0.5;
}