* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body, html {
    height: 100%;
    font-family: 'Palui SP Demo', sans-serif;
    overflow: hidden;    
    background: rgba(0, 0, 0, 0.7);
  }
  
  .video-background {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
  }
  .video-background iframe {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
  
  .overlay {
    position: relative;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 40px 40px;
    z-index: 1002;
    background: transparent;
  }
  .pre-save {
    margin-top: 2.5%;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-weight: bold;
    font-size: 1rem;
  }
  .pre-save li {
    font-size: 3vw;
    margin: 0 10px;
  }
  .pre-save li a {
    color: #744C8C; /* Начальный цвет текста */
    text-decoration: none;
    transition: opacity 0.2s;
    animation: attention-animation 1s infinite alternate; /* Анимация для привлечения внимания */
  }
  
  .pre-save li a:hover {
    opacity: 0.7;
    animation: none; /* Отключаем анимацию при наведении */
  }
  
  .pre-save li a.active {
    text-decoration: none;
    text-shadow: 0px 0px 10px #fff;
    opacity: 1;
    animation: none; /* Отключаем анимацию для активного состояния */
  }
  
  /* Ключевые кадры для анимации переливания */
  @keyframes attention-animation {
    0% {
      color: #744c8c; /* Начальный цвет */
      text-shadow: 0 0 5px rgba(116, 76, 140, 0.5); /* Мягкое свечение */
    }
    100% {
      color: #e06bab; /* Цвет в конце анимации */
      text-shadow: 0 0 10px rgba(224, 107, 171, 0.8); /* Более яркое свечение */
    }
  }
  .menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-weight: bold;
    font-size: 1rem;
  }
  .menu li {
    font-size: 1.5vw;
    margin: 0 10px;
  }
  .menu li.social {
    display: flex;
    gap: 25px;
  }
  .menu li.social img {
    width: 25px;
    height: 25px;
  }

  .menu li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  
  .menu li a:hover {
    opacity: 0.7;
  }
  .menu li a.active {
    text-decoration: none;
    text-shadow: 0px 0px 10px #fff;
    opacity: 1;
  }

  .menu-mobile {
    list-style: none;
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-weight: bold;
    font-size: 1rem;
  }
  .menu-mobile li {
    font-size: 1.5vw;
    margin: 0 10px;
  }
  .menu-mobile li.social {
    display: flex;
    gap: 25px;
  }
  .menu-mobile li.social img {
    width: 25px;
    height: 25px;
  }

  .menu-mobile li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  
  .menu-mobile li a:hover {
    opacity: 0.7;
  }
  .menu-mobile li a.active {
    text-decoration: none;
    text-shadow: 0px 0px 10px #fff;
    opacity: 1;
  }
  
  .headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100vh;
}
  
  .headline h1 {
    font-size: 4vw;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0; /* Убираем отступы вокруг заголовка */
  }

  .headline h2 {
    font-size: 5vw;
    font-family: 'Chencau', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    margin: 0;
}

  .footer h3 {
    font-size: 1vw;
    color: #fff;
    font-family: 'Chencau', sans-serif;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 500;
  }
    
  .headline img {
    /* height: 50%; */
    border-radius: 10px;
    box-shadow: 0px 10px 100px rgb(255 255 255 / 60%);
  }

  .release-row {
    /* box-sizing: border-box; */
    display: flex;
    height: 50%;
    /* width: 70%; */
    width: -webkit-fill-available;
    gap: 50px;
}

  .release-row-mobile {
    display: none;
  }

  .reels-row {
    display: flex; /* Используем flexbox для размещения элементов */
    justify-content: space-between; /* Равномерно распределяем элементы по ширине */
    align-items: center; /* Выравниваем элементы по центру по вертикали */
    gap: 20px; /* Задаем фиксированное расстояние между элементами */
    width: 100%; /* Ширина контейнера */
    box-sizing: border-box; /* Учитываем padding и border в размерах */
    overflow: hidden; /* Скрываем содержимое, которое выходит за пределы контейнера */
  }
  
  .reels-row iframe {
    flex: 1; /* Каждый iframe занимает равное пространство */
    max-height: 540px; /* Максимальная ширина каждого iframe */
    width: auto; /* Автоматическая высота для сохранения пропорций */
    aspect-ratio: 325 / 646; /* Сохраняем соотношение сторон видео */
    background-color: rgba(0, 0, 0, 0); /* Цвет фона для iframe */
    border-radius: 10px;
  }

  .reels-row-mobile{
    display: none;
  }



  @font-face {
    font-family: 'Chencau'; /* Название шрифта для использования в CSS */
    src: url('fonts/chencau.otf') format('opentype'); /* Путь к файлу шрифта */
  }

  @font-face {
    font-family: 'Palui SP Demo';
    src: url('fonts/PaluiSPDemo-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }  

  /* Иконка меню (бургер) — по умолчанию скрыта */
.burger-icon {
  display: none;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  z-index: 1001;
  cursor: pointer;
}
.burger-icon img {
  width: 100%;
  height: auto;
}

/* Меню по умолчанию — flex для десктопа */
.menu {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-weight: bold;
  font-size: 1rem;
}

.footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 20px 40px;
    background: transparent;
    z-index: 1001;
  }
  
  .footer {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70%;
    padding: 0;
    margin: 0;
}

.footer-mobile {
  list-style: none;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}
.footer-mobile li {
  font-size: 1.2vw;
}

.footer-mobile img {
  height: 3vh;
}

.footer-mobile li a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer-mobile li a:hover {
  opacity: 0.6;
}
  
  .footer li {
    font-size: 1.2vw;
  }

  .footer img {
    height: 3vh;
  }
  
  .footer li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  .footer li a:hover {
    opacity: 0.6;
  }
.carousel-container {
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    width: 100vw;
    height: 100vh;
    scroll-behavior: smooth;
  }
.carousel-container {
    scrollbar-width: none; /* Firefox */
}
    
.carousel-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
  
  .carousel-slide {
    scroll-snap-align: start;
    flex: 0 0 100vw;
    height: 100vh;
    padding-top: 100px;
    padding-inline: 50px;
    box-sizing: border-box;
    color: white;
  }

  .photo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 100px;
    gap: 10px;
    width: 100%;
    /* height: 100%; */
    padding-inline: 30px;
    padding-bottom: 120px;
    box-sizing: border-box;
  }
  
  .grid-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }
  
  /* Примерные размеры "пазлин" */
.item1 {
    grid-column: span 2;
    grid-row: span 6;
}
.item2 {
    grid-column: span 2;
    grid-row: span 6;
}
.item3 {
    grid-column: span 2;
    grid-row: span 5;
}
.item4 {
    grid-column: span 2;
    grid-row: span 6;
}
.item5 {
    grid-column: span 1;
    grid-row: span 5;
}
.item6 {
    grid-column: span 3;
    grid-row: span 5;
}

.photo-slide {
    display: flex;
    flex-direction: column;
    overflow: hidden; /* отключаем лишнее */
    padding: 0;
  }
  
  .photo-scroll {
    flex: 1;
    overflow-y: auto;
    /* padding: 80px 30px; */
    padding-top: 80px;
    /* padding-bottom: 100px; */
    /* padding-inline: 30px; */
    box-sizing: border-box;
    height: 100%;
    scrollbar-width: none; /* Firefox */
  }
  
  .photo-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  
  
/* Медиа-запрос для мобилки */
@media screen and (max-width: 768px) {
  .burger-icon {
    display: block;
  }

  .menu {
    display: none;
  }
  .menu-mobile {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 20px;
    z-index: 1000;
    width: auto;
    align-items: anchor-center;
    gap: 20px;
  }

  .menu-mobile.menu-open {
    display: flex;
  }

  .menu-mobile h3{
    display: none;
  }

  .menu-mobile li {
    font-size: 5vw;
    margin: 0;
  }

  .pre-save li {
    font-size: 11vw;
    margin-top: 20px;
  }

  .menu-mobile li.social {
    flex-direction: row;
    gap: 10px;
  }

  .menu-mobile li.social img {
    width: 20px;
    height: 20px;
  }

  .headline img {
    width: 100%;
    height: auto;
  }
  .headline h1 {
    font-size: 7vw;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: bold;
  }
  .headline h2 {
    font-size: 10vw;
  }

  .release-row {
    display: none;
}

  .release-row-mobile{
    display: flex;
  }

  .reels-row-mobile{
    display: flex;    
    justify-content: center;
  }

  .reels-row{
    display: none;
  }
.item1 {
    grid-column: span 3;
    grid-row: span 2;
}
.item2 {
  grid-column: span 3;
  grid-row: span 4;
}
.item3 {
  grid-column: span 3;
  grid-row: span 2;
}
.item4 {
    grid-column: span 3;
    grid-row: span 2;
}
.item5 {
  grid-column: span 3;
  grid-row: span 2;
}
.item6 {
  grid-column: span 6;
  grid-row: span 2;
}


.footer {
  display: none; /* Изменим на flex для лучшего контроля */
}

.footer-mobile {
  display: flex; /* Изменим на flex для лучшего контроля */
}

.menu-mobile h3{
  font-family: 'Chencau', sans-serif;
  font-size: 3vw;
  font-weight: 700;
  display: flex;
}

}
