/* Секция трейлера */
.trailer-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px; /* Увеличиваем высоту для размещения заголовка и кнопки */
  background-color: #54296d; /* Темный фон */
  margin: 50px 0;
  padding: 20px;
  text-align: center;
}

/* Секция видео */
.video-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px; /* Увеличиваем высоту для размещения заголовка и кнопки */
  background-color: #1a1a1a; /* Темный фон */
  margin: 50px 0;
  padding: 20px;
  text-align: center;
}

/* Заголовок 2 */
.video-header {
  margin-bottom: 10px;
}

/* Заголовок */
.trailer-header {
  margin-bottom: 20px;
}

.trailer-title {
  font-size: 2rem; /* Размер заголовка */
  color: #fbd784; /* Цвет заголовка в акцентном стиле сайта */
  font-weight: bold;
  margin: 0;
}

/* Видео */
.trailer-video {
  width: 80%; /* Ширина видео */
  max-width: 960px;
  height: auto;
  border: 3px solid #fbd784; /* Обводка */
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Тень */
  margin-bottom: 20px;
}

/* Кнопка */
.trailer-footer {
  margin-top: 20px;
}

.trailer-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #1a1a1a; /* Цвет текста кнопки */
  background-color: #fbd784; /* Фон кнопки */
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Легкая тень */
}

.trailer-button:hover {
  background-color: #ffd966; /* Более светлый цвет при наведении */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px); /* Легкий подъем */
}

.trailer-button:active {
  background-color: #f5c667;
  transform: translateY(1px); /* "Утапливание" кнопки */
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
  .trailer-section {
    height: auto; /* Автоматическая высота */
  }

  .trailer-title {
    font-size: 1.5rem; /* Уменьшаем размер заголовка */
  }

  .trailer-video {
    width: 95%; /* Занимает почти всю ширину экрана */
  }

  .trailer-button {
    font-size: 0.9rem; /* Уменьшаем размер кнопки */
    padding: 8px 16px;
  }
}