body {
  background: linear-gradient(145deg, #f5f7fa, #c3cfe2);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
}

.container {
  padding: 2rem 1rem;
}

.ratio-16x9 {
  aspect-ratio: 16 / 9;
}

.ratio-9x16 {
  aspect-ratio: 9 / 16;
  max-height: 80vh;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .ratio-9x16,
  .ratio-16x9 {
    aspect-ratio: auto;
    height: auto;
  }

  .video-wrapper video {
    width: 100%;
    height: auto;
  }
}
/* стили по кнопке */
.btn-like {
  font-size: 1.2rem;
  transition: all 0.2s ease-in-out;
}
.btn-like.disabled {
  pointer-events: none;
  opacity: 0.6;
}

