.ypc-youtube-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

.ypc-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  background: #000;
}

.ypc-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.ypc-playlist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ypc-video-card {
  cursor: pointer;
  border: 1px solid #ddd;
  background: #fff;
  transition: transform 0.2s ease;
}

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

.ypc-video-card img {
  width: 100%;
  display: block;
}

.ypc-video-card h3 {
  font-size: 16px;
  padding: 10px;
  margin: 0;
  line-height: 1.3;
}

.ypc-error {
  padding: 15px;
  background: #f5f5f5;
  border-left: 4px solid #cc0000;
}

@media (max-width: 768px) {
  .ypc-playlist-grid {
    grid-template-columns: 1fr;
  }
}
