/* Блок стрима с адаптацией */
.stream-block {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
  text-align: center;
}
.stream-block h2 {
  font-size: 1.5rem;
  color: var(--accent, #28a745);
  margin-bottom: 16px;
}

/* Контейнер для iframe: соотношение 16:9 */
.stream-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

/* Стили для iframe */
.stream-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; /* вместо frameborder */
}

/* Мобильная оптимизация */
@media (max-width: 600px) {
  .stream-block h2 {
    font-size: 1.25rem;
  }
}
