/* Загальний ресет і базові налаштування */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  /* Рожево-фіолетовий фон */
  background: #090f1e; /* Зробили фон чорним */
  background-size: cover;
  font-family: 'Lexend Deca', sans-serif;
  color: #fff;
  overflow-x: hidden;

}

/* Верхній блок (top-bar) тільки з логотипом і правим контейнером */
.top-bar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  z-index: 1100;
}

/* Логотип/назва сайту */
.logo-container {
  position: relative;
  font-size: 17px;
  letter-spacing: 0.15px;
  line-height: 24px;

  text-align: left;
}

.top-left-text {
  font-size: 1.4em;
  font-weight: 900;
  text-transform: uppercase;
  color: #FFB2E6;
}

#username-container img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}



/* Мобільна панель */
.mobile-side-nav {
  position: fixed;
  /*top: 70px; /* з урахуванням висоти top-bar */
  left: 0;
  width: 70%;
  max-width: 238px;
  height: 100%;
  /*height: calc(100vh - 70px);*/
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-right: 2px solid rgba(46,232,111,0.22);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1001;
  transform: translateX(-100%); /* схована за замовчуванням */
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding-top: 20px;
}

/* Коли панель відкрита */
.mobile-side-nav.open {
  transform: translateX(0);
}

/* Стилі для мобільного меню */
.mobile-menu {
  list-style: none;
  padding: 0 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Кнопка для відкриття мобільної панелі (гамбургер) */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

/* На мобільних пристроях показуємо кнопку відкриття */
@media (max-width: 768px) {
  .mobile-menu-button {
    display: inline-block;
  }
  .main-container2 {
    margin: 10px 30px !important;
  }
}

.online-indicator {
  margin-left: 30px;           /* Більший відступ від логотипу */
  margin-top: -12px;            /* Піднімаємо елемент за допомогою margin */
  padding: 5px 12px;
  font-size: 16px;
  font-weight: 600;
  
  
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

/* Ліва панель навігації */
.left-side-nav {
  position: fixed;
  top: 70px; /* щоб не перекривати top-bar */
  left: 0;
  width: 60px;
  min-height: calc(100vh - 70px);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-right: 2px solid rgba(46,232,111,0.22);
  padding-top: 20px;
  z-index: 1001;
  transition: width 0.3s ease;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.left-side-nav:hover {
  width: 200px;
}

.side-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 10px;
}
.side-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  font-size: 0.95em;
  cursor: pointer;
}
.side-menu li a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(5px);
}
.side-menu li a span {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* Показуємо текст при розширенні панелі */
.left-side-nav:hover li a span {
  display: inline;
  opacity: 1;
}

/* Основний контейнер */
.main-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-top: 20px;
}

.main-container2 {
  
  margin: 30px 200px;
  
}

.left-side-nav:hover + .main-container {
  margin-left: 200px;
}

/* Загальний стиль для банера */
.banner-section {
  position: relative;
  width: 100%;
  border-radius: 16px;
  /* Фон: градієнт + зображення */
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/фон.jpeg") center center / cover no-repeat;

  /* Висоту можна змінити під контент, 
     якщо треба зафіксувати - залиште приблизно 412-600px */
  min-height: 412px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 33px;
  box-sizing: border-box;
  margin-bottom: 40px;
  
  color: #fff;
}

/* Контейнер для тексту і кнопки */
.banner-content {
  max-width: 100%;
  z-index: 2; /* Щоб текст гарантовано був над фоном */
}

/* Заголовок */
.banner-title {
  font-size: 100px;
  line-height: 1.2;
  margin: 0 0 20px;
  background: linear-gradient(95.1deg, #2ee86f, #0b8f43 49.76%, #2ee86f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Опис/підзаголовок */
.banner-subtitle {
  position: relative;
  font-size: 24px;
  line-height: 150%;
  font-weight: 100;
  
  color: #d9d9d9;
  text-align: left;
  
}

.banner-space {
  margin: 0 0 24px;
}

/* Кнопка */
.banner-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #121212;
  border: 1px solid #2ee86f;
  color: #FFF;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.banner-button:hover {
  background-color: #0c2517;
}

.button-text {
  position: relative;
  line-height: 150%;
  font-weight: 600;
  background: linear-gradient(95.1deg, #2ee86f, #0b8f43 49.76%, #2ee86f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}
/* Зображення персонажа, яке "випирає" */
.banner-image {
  position: absolute;
  bottom: 0;
  right: 33px;
  max-width: 500px;
  border-radius: 15px;
  object-fit: cover;
  opacity: 0.95;
  transition: transform 0.3s ease;

}

.banner-image:hover {
  transform: scale(1.03);
}

/* Адаптація під мобільні (до 768px) */
@media (max-width: 768px) {
  .banner-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    padding: 20px;
  }

  .banner-content {
    max-width: 100%;
  }

  .banner-title {
    font-size: 2.5rem; /* Зменшуємо для мобільних */
  }

  .banner-subtitle {
    font-size: 0.8rem;
    text-align: center;
  }

  /* Зображення тепер не фіксоване, щоб не обрізалося */
  .banner-image {
    position: static;
    max-width: 80%;
    margin-top: 20px;
  }
}

/* Контейнер з картками */
.mode-cards {
  display: flex;           /* Картки будуть в один ряд */
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

/* Одна картка */
.mode-card {
  flex: 1;                 /* Щоб картка займала доступний простір */
  display: flex;           /* Горизонтальне розташування: контент + картинка */
  align-items: center;     /* Вирівнювання по вертикалі */
  text-decoration: none;
  color: #fff;
  background: linear-gradient(270deg, #123d25, rgba(0, 0, 0, 0));
  
  border-radius: 15px;
  overflow: hidden;        /* Якщо зображення вилізає, сховаємо */
  transition: background 0.3s ease, transform 0.3s ease;
}

.mode-card:hover {
  background: linear-gradient(270deg, #1f5f36, rgba(0, 0, 0, 0));
  transform: translateY(-3px);
}

/* Текстова частина (ліворуч) */
.card-content {
  width: 60%;              /* 60% під текст і кнопку */
  padding: 20px;
  display: flex;
  flex-direction: column;  /* Текст над кнопкою */
  justify-content: center; /* Центруємо по вертикалі */
}

/* Заголовок */
.card-content h2 {
  font-size: 3.8rem;
  margin: 0 0 10px;
}


/* НЕАКТИВНА КАРТКА */
/* === ПІСЛЯ: більш виразна недоступність */  
.mode-card.disabled {
  /* сіра картка + трохи темніша */
  filter: grayscale(100%) brightness(70%);
  /* повністю відключаємо взаємодію */
  pointer-events: none;
  /* щоб псевдоелемент правильно позиціонувався */
  position: relative;
}

/* Текст “В розробці” поверх картки */
.mode-card.disabled::after {
  content: "В розробці";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 2;
}

/* Видаляємо будь-які hover-ефекти */
.mode-card.disabled:hover {
  transform: none;
  background: none !important;
}

/* Підкреслити, що кнопка недоступна */
.mode-card.disabled .btn-play {
  opacity: 0.5;
}



/* Кнопка "Грати" */
.btn-play {
  max-width: 30%;
  display: inline-block;
  padding: 10px 20px;
  
  background: linear-gradient(95.1deg, #2ee86f, #0b8f43 49.76%, #2ee86f); 
  color: #FFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-play:hover {
  background-color: #5cff8e;
}

/* Блок з картинкою (праворуч) */
.card-image {
  width: 40%;              /* 40% під картинку */
  height: 100%;            /* Автоматична висота відповідно до батька */
  display: flex;
  justify-content: center; /* Якщо треба вирівняти зображення */
  align-items: center;
}

/* Картинка */
.card-image img {
  width: 95%;             /* Зображення на всю ширину блоку */
  height: 95%;
  object-fit: cover;       /* Адаптується по висоті */
  display: block;
}

@media (max-width: 768px) {
  .mode-cards {
    flex-direction: column;
    }

  .mode-card {
    width: 100%;           /* Займає майже всю ширину екрану */
    padding: 15px 20px;   /* Зменшені відступи */
    border-radius: 15px;

  }

  /* Залишаємо горизонтальне розташування, але зменшуємо розміри */
  .card-content h2 {
    font-size: 1.8rem;    /* Трохи менший заголовок */
  }

  .btn-play {
    padding: 10px 0px;
    max-width: 50%;
  
  }

  .card-image {
    margin-left: 15px;
    width: 140px;         /* Зменшена ширина картинки */
    height: 140px; 
    border-radius: 50%;
  }

  .card-image img {
  width: 135%;             /* Зображення на всю ширину блоку */
  height: auto;
  object-fit: cover;       /* Адаптується по висоті */
  display: block;
}
}

/* Блоки "Останній переможець" та "Щасливчик за сьогодні" */
.content-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 480px) {
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }


}

.latest-games, .top-wins {
  display: flex;
  flex-direction: column; /* Елементи всередині йдуть вертикально */
  align-items: center; /* Центруємо всі внутрішні елементи по горизонталі */
  justify-content: center; /* Центруємо контент */
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  color: white;
  width: 100%; /* Щоб вони займали всю доступну ширину */
}

.latest-games h2, .top-wins h2 {
  margin-bottom: 15px;
}

.game-item, .win-item {
  display: flex;         /* Розташовуємо всі елементи в рядок */
  align-items: center;   /* Вертикальне вирівнювання по центру */
  gap: 15px;             /* Відступ між аватаркою, ніком і статистикою */
  padding: 15px 20px;
  border-radius: 10px;
  min-height: 70px;
}

@media (max-width: 480px) {
  .game-item, .win-item {
    padding: 8px 12px;  /* Менше відступи */
    gap: 8px;           /* Менше простору між елементами */
    min-height: 50px;   /* Зменшена мінімальна висота */
  }
}

/* Аватарка */
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;        /* Щоб зображення не стискалось */
  border: 1px solid #2ee86f;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Блок для імені та статистики, але теж у рядок */
.player-info {
  display: flex;
  align-items: center;
  gap: 15px;             /* Відступ між ніком і статистикою */
}

/* Нік */
.player-name {
position: relative;
font-size: 20px;
line-height: 150%;
font-weight: 600;

background: linear-gradient(136.91deg, #9cff1a, #2ee86f);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-align: left;
}

/* Контейнер зі статистикою */
.player-stats {
  background: rgba(221,191,106,0.1);
  
  color: #b3b3b3;
  border-radius: 10px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

/* Вертикальна смуга між "Бали" і "Шанс" */
.separator {
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, transparent, #2ee86f, transparent);
  display: inline-block;
}

@media (max-width: 480px) {
  /* Аватарка */
  .avatar {
    width: 40px;    /* Зменшено з 50px до 40px */
    height: 40px;
    border: 1px solid #2ee86f;
  }
  
  /* Блок для імені та статистики */
  .player-info {
    gap: 8px;       /* Зменшено відступ між ніком і статистикою */
  }
  
  /* Нік */
  .player-name {
    font-size: 16px; /* Зменшено з 20px до 16px */
  }
  
  /* Контейнер зі статистикою */
  .player-stats {
    padding: 4px 10px;  /* Зменшено padding */
    gap: 8px;           /* Зменшено відступ між елементами */
    font-size: 12px;    /* Зменшено розмір шрифту */
  }
}


.site-footer,
.footer-container p {
  
  font-size: 0.65em;
  color: rgba(128, 128, 128, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer {
    background-color: #0d0d0d;
    color: #f0f0f0;
    padding: 30px 15px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    pointer-events: none;
}

.footer-container p {
    margin: 0;
    line-height: 1.4;
    font-size: 0.85em;
}

.footer-container p:first-child {
    font-size: 0.9em;
    font-weight: 500;
}

.footer-container p:last-child {
    margin-top: 10px;
    font-size: 0.75em;
    font-style: italic;
    color: #bbbbbb;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    pointer-events: auto;
}

.footer-links li a {
    background: linear-gradient(270deg, #9cff1a, #0b8f43, #9cff1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links li a:hover {
    color: #9cff1a;
    text-decoration: underline;
    transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .top-bar {
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-container {
    margin-top: 40px;
  }
  .left-side-nav {
    display: none;
  }

  .mode-cards {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}




@media (max-width: 480px) {
  .logo-container {
    display: none;
  }
  .top-bar {
    background: none;
    backdrop-filter: none;
    top: 15px;
  }
}



/* Стилізація контейнерів для секцій "Останній переможець" та "Щасливчик за сьогодні" */
.latest-games, 
.top-wins {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.latest-games:hover, 
.top-wins:hover {
  transform: scale(1.01);
}

/* Заголовки секцій */
.latest-games h2, 
.top-wins h2 {
position: relative;
font-size: 26px;
line-height: 150%;
font-weight: 600;

color: #fff;
text-align: left;
}

/* Стилізація картки ставки, яка використовується для відображення даних */
.bet-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 15px; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Стилізація блоку аватарки */
.bet-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.bet-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Стилізація інформаційного блоку */
.bet-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bet-user {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
}
.bet-amount {
  font-size: 1em;
  color: #fff;
}
.bet-chance {
  font-size: 0.9em;
  color: #ffb2e6;
}


/* =========================== */
/* Стилі для нової панелі інвентаря (унікальні ID і класи) */
/* =========================== */



.inventory-panel-new {
  position: fixed;
  right: -100%; /* Початково прихована */
  top: 0;
  width: 650px; /* Ширина для десктопу */
  height: 100%;
  background: #222; /* Темний фон */
  color: #fff;
  z-index: 10000;
  transition: right 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

/* Для мобільної версії */
@media (max-width: 768px) {
  .inventory-panel-new {
    width: 350px; /* Ширина для мобільних пристроїв */
  }
}


.inventory-panel-new.active {
  right: 0;
}

.close-panel-button-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.inventory-tabs-new {
  display: flex;
  border-bottom: 1px solid #444;
  margin-bottom: 15px;
}

.tab-button-new {
  flex: 1;
  padding: 10px;
  background: #333;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tab-button-new.active {
  background: linear-gradient(95.1deg, #2ee86f, #0b8f43 49.76%, #2ee86f);
  color: #FFF;
}

.inventory-section-new {
  padding: 10px;
}

/* Депозитовані (ваші) предмети */
#deposited-items-container-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

/* Steam-інвентар */
#steam-inventory-container-new {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Відображення загальної вартості інвентаря */
#total-inventory-value-new {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #9fffc0;
}

/* Кошик нової панелі */
.inventory-cart-new {
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
}
.inventory-cart-new h4 {
  margin: 0 0 10px;
  text-align: center;
}
#inventory-cart-items-new {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-height: 200px;
  overflow-y: auto;
  padding: 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
#inventory-cart-total-new {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  color: #9fffc0;
}
#inventory-cart-submit-new {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: linear-gradient(95.1deg, #2ee86f, #0b8f43 49.76%, #2ee86f);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}
#inventory-cart-submit-new:hover {
  background: #2ee86f;
}

/* Приклад базових стилів для блоків предметів */
.item-block {
  position: relative;
  padding: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 25px;
  max-width: 140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.item-block:hover {
  transform: scale(1.03);
}

.item-block img {
  width: 100%;
  height: 100px;
  border-radius: 25px;
  object-fit: cover;
}

.item-block .item-name {
  text-align: center;
  margin-top: 8px;
  font-size: 0.95em;
}

/* Ціна (балів) */
.item-block .item-price {
  text-align: center;
  margin-top: 4px;
  font-size: 0.9em;
  color: #9fffc0;
}

/* Кнопка */
.item-block .convert-button {
  margin-top: 8px;
  padding: 6px 8px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(95.1deg, #2ee86f, #0b8f43 49.76%, #2ee86f);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.item-block .convert-button:hover {
  background-color: #9cff1a;
}

.add-to-cart-button{
  margin-top: 8px;
  padding: 6px 8px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(95.1deg, #2ee86f, #0b8f43 49.76%, #2ee86f);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Сповіщення */
#message-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 100000 !important;
  width: 240px;
}
.message {
  padding: 15px 25px;
  border-radius: 15px;
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.message.show {
  opacity: 1;
  transform: translateY(0);
}
.success { background-color: #28a745; }
.error { background-color: #dc3545; }

/* Оверлей модального вікна */
.modal {
  display: none; /* Приховано за замовчуванням */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Прозоріший чорний фон */
}



/* Анімація появи (ефект збільшення та прозорості) */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}


/* Стиль тексту всередині модального вікна */
.modal-content p {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(95.1deg, #2ee86f, #0b8f43 49.76%, #2ee86f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



