h2 {
      text-align: center;
      margin: 2rem 0;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      padding: 0 1rem 2rem;
    }

    .video-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .video-card:hover {
      transform: translateY(-5px);
    }

    video {
      width: 100%;
      display: block;
      aspect-ratio: 16 / 9;
      background: #000;
    }

    .video-title {
      padding: 0.5rem 1rem 0;
      font-size: 1rem;
      font-weight: bold;
    }

    .video-description {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
                  height: auto; 
  z-index: 999;
}

iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
  max-width: 100%;
      overflow: hidden; 
}






