/* Убираем стандартный фон у body — он будет "прозрачным" над видео */
body {
  background: transparent;
  color: #000;
}

/* Геро-секция поверх видео */
.hero-section {
  position: relative;
  z-index: 10;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Кнопка — контрастная и заметная */
.hero-section .btn {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Адаптив: на мобильных чуть уменьшаем отступы */
@media (max-width: 768px) {
  .hero-section .display-4 {
    font-size: 2.2rem;
  }
  .hero-section .lead {
    font-size: 1.1rem;
  }
}