.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.yt-grid img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

.yt-grid img:hover {
  transform: scale(1.08);
}

#video-player {
  margin-top: 20px;
}

#video-player iframe {
  border-radius: 12px;
}
