@font-face {
    font-family: 'Bender';
    src: url('/fonts/Bender.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bender Black';
    src: url('/fonts/Bender-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Bender Bold';
    src: url('/fonts/Bender-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'SportsWorld';
    src: url('../fonts/SportsWorld.woff2') format('woff2'),
         url('../fonts/SportsWorld.otf') format('opentype'); /* Резервный вариант */
    font-weight: normal;
    font-style: normal;
}

/* Пример использования */
.bender {
    font-family: 'Bender', sans-serif;
}

.bender-bold {
    font-family: 'Bender Bold', sans-serif;
}

.bender-black {
    font-family: 'Bender Black', sans-serif;
}

.sports {
    font-family: 'SportsWorld', sans-serif;
}

.yellow {
  font-size: 2rem;
  color: #ffd700;
}

.text-white {
  color: #FFF;
}


/* General Reset / Utility */
* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #001764; /* Main color */
    color: #fff;
    z-index: 999; /* Ensure it stays on top */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 60px;
}

/* Brand / Logo placeholder */
.brand {
    font-weight: bold;
    font-size: 1.25rem;
}

/* Desktop Nav */
.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-links li {
    cursor: pointer;
    transition: color 0.3s;
}

.nav-links li:hover {
    color: #ccc;
}

/* Burger Menu icon */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-nav {
    position: fixed;
    top: 60px; /* below header */
    left: 0;
    right: 0;
    background-color: #001764;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.mobile-nav a {
    color: #fff;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
}
.mobile-nav a:hover {
    background-color: #0025a1;
}

/* Responsive Media Query */
@media (max-width: 768px) {
    .nav-links {
    display: none; /* hide desktop nav */
    }
    .burger {
    display: flex; /* show burger on mobile */
    }
}

/* ============================================================== */

    /* --- ШАПКА --- */
    .main-header {
      width: 100%;
      background-color: #001764;
      color: #fff;
      position: fixed;
      top: 0;
      z-index: 999;           /* Чтобы меню было поверх контента */
    }
    .nav-container {
      max-width: 1200px;      /* Ширина контейнера */
      width: 100%;
      margin: 0;
      display: contents;
      align-items: center;
      justify-content: space-between;
      padding: 0.5rem 1rem;
    }

    /* ЛОГО (слева) */
    .logo-wrap img {
      height: 50px;
      width: auto;
    }

    /* ССЫЛКИ (по центру) - на десктопе, скрываем на мобильном */
    .nav-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      text-transform: uppercase;
      font-weight: 500;
      font-size: 0.9rem;
    }
    .nav-links li a {
      color: #fff;
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links li a:hover {
      color: #ffd700; /* Золотистый hover-эффект */
    }

    /* ТАЙМЕР (справа) */
    .timer-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      font-size: 0.9rem;
    }
    .timer-wrap .label {
      font-size: 0.7rem;
      color: #ccc;
      margin-top: 2px;
    }

    /* БУРГЕР (мобильная иконка) */
    .burger {
      display: none;  /* На десктопе скрываем */
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      cursor: pointer;
      gap: 5px;
    }
    .burger span {
      display: block;
      width: 24px;
      height: 3px;
      background: #fff;
      transition: transform 0.3s;
    }

    /* КЛАСС "active" для иконки-крестика */
    .burger.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
      opacity: 0;
    }
    .burger.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* --- МОБИЛЬНОЕ МЕНЮ --- */
    .mobile-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 0; /* Скрываем */
      background: rgba(0,0,0,0.9);
      overflow: hidden;
      transition: height 0.4s ease;
      z-index: 998;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .mobile-nav.open {
      height: 100vh; /* При открытии на полный экран */
    }
    .mobile-nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .mobile-nav ul li a {
      color: #fff;
      font-size: 1.2rem;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 600;
    }
    .mobile-nav ul li a:hover {
      color: #ffd700;
    }

    /* --- АДАПТИВНОСТЬ --- */
    @media (max-width: 1024px) {
      /* СКРЫТЬ десктоп-меню */
      .nav-links {
        display: none;
      }
      .timer-wrap {
        display: none;
      }
      /* ПОКАЗАТЬ бургер */
      .burger {
        display: flex;
      }
    }



/* Sections for demonstration */
section {
    min-height: 100vh;
    padding: 80px 1rem 1rem; /* top padding to avoid header overlap */
}

/* .marquee-content {
    font-size: 32px;
} */

#home {
    background: #f9f9f9;
}
#about {
    background: #e9e9ff;
}
#social {
    background: #f0ffe9;
}
#gallery {
    background: #fff4e9;
}
#the-game {
    background: #fffdef;
}

.logo {
    display: flex;
}


/* ======= ВИДЕО + ГРАДИЕНТ (из вашего кода) ======= */
.hero-video {
  position: absolute;
  top: 60px;  
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
}
.gradient-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 23, 100, 0.9),
    rgba(0, 23, 100, 0.1)
  );
  z-index: -1;
}

/* ======= SVG-бэкграунд ======= */
.hero-content-bg {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero-content-bg.svg') center/contain no-repeat;
  z-index: 0; /* Между градиентом и контентом */
  opacity: 0.8;
}

/* ======= Основной контейнер с текстом ======= */
.hero-text-wrapper {
  position: relative;
  z-index: 10; 
  text-align: center;
  color: #fff;
  padding: 2rem;
  /* (у вас уже .text-center .text-white .p-10, оставляем) */
}

/* Верхняя часть (BOWL, subtitle, Powered by) */
.hero-top-content {
  margin-top: 2rem; 
}

/* $BOWL – крупный, жёлтый, обводка 2px #001764 */
.hero-bowl {
  font-size: 6rem;          /* Можно переопределить, чтобы было крупнее */
  color: #FFD700;           /* Жёлтый */
  /* stroke-эффект */
  -webkit-text-stroke: 2px #001764;
  text-stroke: 2px #001764;
  text-transform: uppercase;
  margin-bottom: -1rem;
}
.yellow {
  color: #ffd700; /* если хотите оставить класс .yellow */
}

/* Подзаголовок: белый, тоже .sports */
.hero-subtitle {
  font-size: 3.8rem;
  line-height: 3rem;
  width: 100%;
  color: #fff;
  -webkit-text-stroke: 1px #001764;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Powered by Solana (bender) */
.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #eee;
  margin-bottom: 0.5rem;
}

/* ======= ТЁМНАЯ ПАНЕЛЬ (технологичная) ======= */
.dark-lower-panel {
  width: 100%;
  max-width: 600px;
  background: rgba(0,0,0,0.7);
  border: 2px solid #333;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Красный заголовок sports */
.red-title {
  color: #ff0000;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* CA-wrapper */
.ca-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.ca-label {
  color: #fff;
  font-weight: bold;
}
.ca-input {
  background: #222;
  color: #0f0; /* "технологичный" */
  border: 1px solid #444;
  padding: 0.65rem 0.2rem;
  width: 23rem;
  width: 16rem;  
  text-align: center;
}
.copy-btn {
  background: #444;
  color: #fff;
  border: 2px solid #666;
  border-radius: 4px;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.copy-btn:hover {
  background: #666;
}

/* Красная квадратная кнопка .bender */
.buy-bowl-btn {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 0;  /* чтобы была «квадратной» */
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  transition: transform 0.1s ease-in-out;
}
.buy-bowl-btn a {
  text-decoration: none; 
  color: #fff; 
  font-family: inherit; 
}
.buy-bowl-btn:active {
  transform: scale(0.97); /* эффект нажатия */
}

/* ------ Адаптив ------ */
@media (max-width: 768px) {
  .hero-bowl {
    font-size: 2.8rem;
    line-height: 2rem;
    margin-bottom: 0.2rem;
  }

  .ca-input {
    font-size: 0.6rem;
  }

  .marquee-container {
    bottom: 1.8em;
  }

  .content-container {
    position: relative;
    z-index: 10;
    padding: 8px 20px;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
}


/* Общий класс "dex-btn" для ссылки-кнопки */
.dex-btn {
  background-color: #000000;  /* Тёмный фон */
  color: #fff;
  border-radius: 6px;      /* Скруглённые уголки */
  text-decoration: none;   /* Без подчёркивания */
  font-family: 'Bender', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  /* px-4, py-2 → в Tailwind, или вручную: */
  padding: 0.5rem 1rem;
  gap: 0.5rem;
}

/* Hover / Active */
.dex-btn:hover {
  background-color: #444;
  transform: scale(1.03);
  border: #ffffff 2px solid;
}
.dex-btn:active {
  transform: scale(0.98);
}

/* Круглый логотип слева */
.dex-logo {
  width: 24px;
  height: 24px;
  object-fit: cover; 
  border-radius: 50%;
}



/* Градиентная подложка поверх видео */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 23, 100, 0.9), rgba(0, 23, 100, 0.1));
  z-index: -1; /* Лежит поверх видео, но под текстом */
}

/* Контент поверх градиента и видео */
.hero-section .relative {
  z-index: 10; /* Контент выше видео и градиента */
}

/* Адаптивность */
@media (max-width: 768px) {
  .hero-video {
    object-position: center; /* Центрируем на мобильных */
  }
}

/* II Section Animation */
/* Ваша секция */
.my-second-section {
    position: relative;
    overflow: hidden; /* чтобы не было прокрутки по сторонам */
  }
  
  /* Левый и правый стикеры */
  .side-image {
    position: absolute;
    top: 48%;    
    transform: translateY(-50%);
    width: 200px; /* примерная ширина */
    opacity: 1;   
  }
  
  .side-image-left {
    width: 20rem;
    left: -24rem; /* чтобы "заезжали" с левой стороны при анимации */
  }
  
  .side-image-right {
    width: 20rem;
    right: -24rem; /* чтобы "заезжали" с правой стороны при анимации */
  }
  
  /* Основной контейнер по центру */
  .center-content {
    width: 90%;             /* на мобильных почти на всю ширину */
    max-width: 600px;       /* на десктопе будет уже и по центру */
    margin: 0 auto;         /* выравниваем по центру */
    display: flex;
    flex-direction: column;
    align-items: center;    /* центрируем содержимое */
    justify-content: center;
    padding: 20px;
  }
  
  /* Заголовок (SVG) на всю ширину контейнера */
  .crypto-title {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    margin-top: 0rem;
    display: block;
  }
  
  /* Обёртка для текстовых блоков также на 100% ширины родителя */
  .texts-wrapper {
    width: 100%;
  }
  
  /* Текстовые блоки */
  .text-block {
    font-family: 'Bender', sans-serif;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: justify; /* выравниваем текст по ширине */
    background: rgba(255, 255, 255, 0.1); /* для читабельности при тёмном фоне */
    border-radius: 10px;
    padding: 20px;
  }
  
  /* Адаптация под мобильные */
  @media (max-width: 768px) {
    .crypto-title {
      padding-top: 60px;
    }

    .nav-container {
      padding: 0;
  }

    .intro-section {
      max-width: 100%;
      width: 100%;
    }

    .center-content {
      margin: 0;
      max-width: 90%; /* можно чуть освободить ширину на мобильном, если нужно */
    }
  
    .text-block {
      font-size: 1.2rem;
      padding: 15px;
    }
  }
  

/* -------------------------------- */
/* -------- III SECTION -------------*/
/* -------------------------------- */
.why-section {
  position: relative;
  /* background: url('img/stars-bg.png') center/cover no-repeat; */
}

/* Контейнер для двух колонок */
.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

/* Текстовый блок */
.why-content {
  margin-top: 1.5rem;
}

.why-text {
  width: 100%;
  text-align: left;
}

.sports-header {
  font-size: 4.2rem;  
  color: #FF3131;
}

.y-subtitle {
  color: #FFF200;
}

.why-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bowl-image {
  position: relative;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.bowl-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solana-info {
  position: absolute;
  width: 24rem;
  height: 10rem;
  bottom: 8.5rem;  
  left: 10px;
  right: 10px;
  background: black;
  padding: 10px;
  border: 2px solid white;
  border-radius: 8px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 1em 2em;
}

.subtitle {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

/* Логотип Solana */
.solana-logo {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  width: 5rem;
  height: 5rem;
  background: black;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}

.solana-logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

/* Класс для белой обводки текста (stroke) */
.stroke-white {
  -webkit-text-stroke: 1px #fff; /* Chrome / Safari */
  text-stroke: 1px #fff;         /* Firefox (эксперим.), не во всех работает */
}

/* Тень для круглого изображения */
.shadow-bowl {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}



/* IV - HOW TO BUY? */



/* Высота блока, фон мобильный */
.how-to-buy-section {
  width: 100%;
  height: 100vh;
  background: url('../img/mobile-bg.png') center/cover no-repeat;
  position: relative;
  margin: 0;
  padding: 0;
}

/* Контейнер, разбиваем на 2 вертикальные части */
.htb-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* Верхняя и нижняя половина */
.htb-top-half,
.htb-bottom-half {
  perspective: 800px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

.bottom-cta {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Стили самого Swiper-контейнера (квадрат/прямоугольник) */
.htb-slider {
  transform-style: preserve-3d; /* Включаем 3D для потомков */
  transform: rotateX(20deg);
  top: 1rem;
  width: 80vw;
  max-width: 40rem;
  height: 80vw;
  max-height: 15.5rem;
  /* border: 2px solid #fff; */
  border-radius: 1rem;
  overflow: hidden;
  /* Должен содержать .swiper-wrapper, .swiper-slide и т.д. */
}

/* Дополнительно: стили слайдов */
.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.1); /* полупрозрачная подложка */
  padding: 2.2rem;
  box-sizing: border-box;
}

/* Заголовок и текст */
.slide-title {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.slide-text {
  color: #000;
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 1380px) {
  .htb-slider {
    transform-style: preserve-3d; /* Включаем 3D для потомков */
    transform: rotateX(20deg);
    top: 1rem;
    width: 80vw;
    max-width: 31rem;
    height: 80vw;
    max-height: 15.5rem;
    /* border: 2px solid #fff; */
    border-radius: 1rem;
    overflow: hidden;
    /* Должен содержать .swiper-wrapper, .swiper-slide и т.д. */
  }
}  

/* Адаптив (примерно) */
@media (min-width: 768px) {

  .htb-container {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .slide-title {
    font-size: 2rem;
  }
  .slide-text {
    font-size: 1.1rem;
  }
  .bottom-cta {
    font-size: 1.5rem;
  }
}

/* Можно стилизовать кнопки Swiper, пагинацию и т.д. */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  /* Расположение по вкусу */
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Кнопка PLAY NOW */
.play-now-btn {
  background-color: #dc2626; /* Красный (#dc2626 соответствует Tailwind's bg-red-600) */
  color: #ffffff;            /* Белый текст */
  font-weight: 600;          /* Жирный текст */
  padding: 12px 24px;        /* Внутренние отступы (px-6, py-3) */
  border: none;              /* Убираем границу */
  border-radius: 8px;        /* Закругленные углы (rounded-md) */
  display: inline-flex;      /* Для центрирования контента */
  align-items: center;       /* Центрирование по вертикали */
  justify-content: center;   /* Центрирование по горизонтали */
  cursor: pointer;           /* Курсор при наведении */
  transition: transform 0.2s ease, background-color 0.2s ease; /* Плавные переходы */
}

/* Эффект при наведении */
.play-now-btn:hover {
  background-color: #b91c1c; /* Более тёмный красный (соответствует bg-red-700) */
  transform: scale(1.05);    /* Увеличение на 5% */
}

/* Фокус для доступности */
.play-now-btn:focus {
  outline: 2px solid #fff;   /* Контур для доступности */
  outline-offset: 2px;       /* Расстояние от кнопки */
}

/* <!-- 6) PHOTO MEME GALLERY --> */

/* Галерея */
.photo-gallery-section {
  padding: 0 important!;
  display: flex;
  flex-direction: column;
  background: #001F54;
  color: white;
  overflow: hidden;
}

/* Заголовок */
.gallery-title {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FF0000;
  /* text-shadow: 2px 2px white; */
}

/* Описание */
.gallery-description {
  color: white;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Лента изображений */
.gallery-container {
  overflow: hidden;
  position: relative;
}

/* Трек изображений */
.gallery-track {
  display: flex;
  gap: 16px;
  animation: scroll 20s linear infinite;
}

/* Стили для картинок */
.gallery-item {
  height: 180px;
  width: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Hover эффект */
.gallery-item:hover {
  transform: scale(1.05);
  animation-play-state: paused; /* Останавливает прокрутку при наведении */
}

/* Анимация бесконечного скролла */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.my-gallery-section {
  background: #fbcff8; /* как пример */
  padding: 40px 20px;
  width: 100%;
  position: relative;
}

/* Заголовок (доп. отступ) */
.gallery-header {
  margin-bottom: 2rem;
  margin-top: 6rem;
}

/* Контейнер: просто держит 2 ряда */
.gallery-container {
  width: 100%;
  overflow: hidden; /* скрываем горизонтальную прокрутку */
  display: flex;
  flex-direction: column;
  gap: 2rem; /* расстояние между рядами */
  padding: 0;
}

/* Каждый ряд - горизонтальная лента */
.gallery-row {
  display: flex;
  gap: 1rem;
  position: relative;
}

/* Изображения */
.gallery-item {
  flex-shrink: 0;
  width: 300px; /* например */
  aspect-ratio: 16 / 9; 
  object-fit: cover;
  border-radius: 6px;
  /* Можно тень, бордер, и т.д. */
}

/* Адаптив - уменьшим на мобилке */
@media (max-width: 768px) {
  .gallery-item {
    width: 200px;
  }
}


/* Адаптивность
@media (max-width: 768px) {
  .gallery-item {
    height: 140px;
  }
} */


/* SECTION 7 */

/* Фоновое видео */
.hero-video-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* или top */
  z-index: -1;
}

/* Градиент поверх видео */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 23, 100, 0.9), rgba(0, 23, 100, 0.1));
  z-index: -1;
}

.gradient-overlay-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(88, 88, 88, 0.6), rgba(0, 23, 100, 0.2));
  z-index: -1;
}

.prize-amount {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  color: #FFD700; /* или text-yellow-300 */
  font-size: 3rem; /* например */
  font-family: 'Bender', sans-serif; /* или mono, по желанию */
  font-weight: bold;
  width: 300px;
  padding: 1rem 2rem;
  text-align: center;
}


.supply {
  -webkit-text-stroke: 1px #001764;
  font-weight: 800;
}

/* Контейнер для текста (cup-hero-content)
   можно слегка подогнать отступы */
.cup-hero-content {
  min-height: 80vh; /* или 100vh, если нужно на весь экран */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Промо-панель (тёмный полупрозрачный прямоугольник) */
.promo-panel {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 1rem 2rem;
  max-width: 600px; /* можно ограничить ширину */
  margin: 0 auto;
}

/* Пример ярко-красной кнопки, если не Tailwind */
.red-btn {
  background-color: #ff0000;
  color: #fff;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: transform 0.2s, background-color 0.2s;
}
.red-btn:hover {
  background-color: #e60000; /* немного темнее */
  transform: scale(1.05);
}




/* <!-- 8) FOOTER / CALL TO ACTION --> */

footer {
  display: flex;
  justify-content: space-between;
}

.footer-section {
  background: #fff;
  width: 100%;
  height: 100vh; /* Занимает всю высоту экрана */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Параллакс фон */
.parallax-bg {
  background: url('../img/parallax-bg.png') center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 33vh; /* Треть высоты экрана */
  z-index: 1;
  transform: translateY(0);
  transition: transform 0.5s ease-out;
}

.footer-content {
  margin-top: 26vh;
}

/* Кубок поверх всего */
.trophy-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  z-index: 20;
  transform: translateY(0);
}

/* Контейнер с контентом */
.content-container {
  position: relative;
  z-index: 10;
  padding: 8px 20px;  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

/* Заголовок */
.footer-title {
  font-weight: 100;
  text-transform: uppercase;
  line-height: 1em;
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: 3.8rem;
}

/* Подзаголовок */
.footer-subtitle {
  font-size: 1.8rem;
  color: #ffffff;
  opacity: 1;
  font-weight: 80;
  margin-bottom: 1.5rem;
  text-align: left;
  max-width: 400px;
}

/* Кнопки */
.footer-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* === Стили кнопок === */
.button-icon-1 {
  display: flex;
  border: 3px solid #000000;
  cursor: pointer;
  transition: border 0.3s;
}

.button-icon-2 {
  display: flex;
  border: 3px solid #00B0F2;
  cursor: pointer;
  transition: border 0.3s;
}

.button-icon-1:hover {
  border-color: #000000;
}

.button-icon-2:hover {
  border-color: #00B0F2;
}

.button-icon-1 .icon {
  background-color: #000000;
  /* border: 3px solid #000000; */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-icon-2 .icon {
  background-color: #00B0F2;
  /* border: 3px solid #00B0F2; */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 25px;
  height: 25px;
}

/* Кубический эффект */
.cube {
  transition: all 0.4s;
  transform-style: preserve-3d;
  width: 200px;
  height: 47px;
  position: relative;
}

.button-icon:hover .cube {
  transform: rotateX(90deg);
}

.side {
  position: absolute;
  height: 47px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  letter-spacing: 0.5px;
  font-weight: bold;
  backface-visibility: hidden;
}

.front {
  background: #ffffff;  
  transform: translateZ(1em);
}

.button-icon-1 .front {
  color: #000000;
}

.button-icon-2 .front {
  color: #00B0F2;
}

.button-icon-1 .top {
  background: #000000;
}

.button-icon-2 .top {
  background: #00B0F2;
}

.button-icon .top {
  color: #fff;
  transform: rotateX(-90deg) translate3d(0, 0px, 2em);
}

/* Копирайт */
.footer-copy {
  font-size: 0.9rem;
  color: #ffffff;
  /* padding-top: 10px; */
  z-index: 15;
}

/* === Адаптивность === */
@media (max-width: 768px) {
  .footer-title {
    font-size: 1.8rem;
  }

  .footer-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .trophy-img {
    width: 200px;
  }
}



.footer-copyright {
  display: flex;
  justify-content: center;
}
/* =========== КНОПКИ =========== */
.btn-s1 {
  font-family: 'Bender', sans-serif;   /* Шрифт Bender */
  font-weight: 700;                    /* Жирный */
  text-transform: uppercase;           /* Верхний регистр */
  background-color: #FFD700;           /* Ярко-жёлтый фон */
  color: #000;                         /* Чёрный текст */
  border: 2px solid #FFD700;          /* Обводка */
  border-radius: 6px;                 /* Небольшое скругление */
  padding: 0.75rem 1.5rem;            /* Отступы */
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s, transform 0.2s;
  display: inline-flex;                /* Для центрирования контента */
  align-items: center;
  justify-content: center;
}

/* Hover и актив */
.btn-s1:hover {
  background-color: #FFC300; /* Чуть более тёмный жёлтый */
  transform: scale(1.05);
}
.btn-s1:active {
  transform: scale(0.98);
}

/* Фокус */
.btn-s1:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* =========== СЕТКА КНОПОК =========== */
.action-buttons {
  /* Сетка: три колонки на десктопе => 3+2 = 2 ряда для 5 кнопок */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  place-items: center;
  width: 100%;
  max-width: 700px;     /* Ширина контейнера */
  margin: 0 auto;       /* Центрируем */
  margin-top: 1rem;     /* Доп. отступ сверху (по желанию) */
}

/* =========== АДАПТИВНОСТЬ (МОБИЛЬ) =========== */
@media (max-width: 768px) {
  /* Переходим на две колонки */
  .hero-text-wrapper {
    padding: 0;
  }

  .action-buttons {
    grid-template-columns: repeat(1, 1fr);
  }
  .btn-s1 {
    font-size: 1.2rem;       /* Крупнее на мобильном */
    padding: 1rem 2rem;      /* Увеличенные отступы */
  }
}


.why-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-text {
  flex: 1;
  text-align: left;
}

.why-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Мобильная адаптация: 
   При ширине меньше 768px → колонки станут столбцами:
   Текст вверху, круг снизу.
*/
@media (max-width: 768px) {

  .bowl-image {
    position: relative;
    width: 400px;
    height: 400px
    }

  .why-container {
    flex-direction: column; /* Сверху текст, снизу круг */
    align-items: center;    /* Центрируем */
  }
  .why-text {
    margin-bottom: 2rem; /* Отступ между текстом и кругом */
    text-align: center;  /* Текст можно центрировать на мобилке */
  }
  .why-image {
    order: 2; /* Порядок ниже текста (по умолчанию тоже 2) */
  }
  .sports-header {
    font-size: 2.8rem;
  }
  .center-content {
    padding: 0px;
  }

  .solana-info {
    position: fixed;
    width: 100%;
    height: 10rem;
    bottom: 8.5rem;
    left: 0px;
    right: 0px;
    background: black;
    padding: 10px;
    border: 2px solid white;
    border-radius: 8px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding: 1em 1em;
    z-index: 10000;
}
}
