body {
    font-family: 'Manrope', sans-serif;
    background: #252525;
    color: #7e7e7e;
    margin: 0;
    padding: 0;
    
  }
  
  .about {
    margin-top: 180px;
    padding: 0 30px;
    font-family: 'Manrope';
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    /* height: 100vh; ← УДАЛИ ЭТО */
  }
  
  h1 {
    font-size: 1.7rem;
    
  }
  
  h2 {
    margin-top: 25px;
    font-size: 1.5rem;
  }
  
  p {
    line-height: 1;
    
  }
  
  ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  a {
    color: #888888;
    text-decoration: none;
  }
  
  
  a:hover {
    text-decoration: underline;
    color: #ff9100;
  }

  @media (max-width: 480px) {
    .about {
      margin-top: 120px;
    }
  }
  /*------------рил-------------------*/

  .video-reel {
    margin-top: 140px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Соотношение 16:9 */
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* Стили для картинки-превью */
  .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Покрытие контейнера картинкой */
    cursor: pointer; /* Курсор на картинке будет указывать, что можно кликнуть */
    z-index: 1; /* Картинка будет на переднем плане */
    transition: transform 0.5s ease;
  }
  
  /* Лайтбокс (модальное окно) */
  .lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1024px;
  aspect-ratio: 16 / 9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.lightbox-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 36px;
  color: white;
  cursor: pointer;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.356);
  padding: 4px 12px;
  border-radius: 4px;
  border: none;
  line-height: 1;
  transition: background-color 0.3s;
}

.close:hover {
  background-color:#ff9100;
  color: white;
}
.video-thumbnail:hover{
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .lightbox-content {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .close {
    font-size: 28px;
  }
}

  
  
  /*--------------------ru\en-------------------*/
  
  .lang-switcher {
    margin-top: 100px;
    position:absolute;
    top: 8px;
    right: 4%;
    z-index: 999;
  }
  
  .lang-btn {
    display: inline-block;
    font-size: 14px;
    margin-left: 5px;
    padding: 2px 4px;
    background: #f0f0f087;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Manrope', sans-serif;
    transition: background 0.3s;
  }
  
  .lang-btn:hover {
    background: #dddddd75;
  }
  