.video-carousel-section { padding: 40px 20px 60px; background: var(--bg-primary); }
.video-section-header { max-width: 600px; margin: 0 auto 32px; text-align: center; }
.video-section-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 40px; color: var(--text-primary); margin-bottom: 16px; }
.video-section-subtitle { font-size: 18px; color: var(--text-secondary); line-height: 1.5; }
.video-carousel-container { max-width: 1000px; margin: 0 auto; position: relative; }

@media (max-width: 480px) { .video-section-title { font-size: 32px; } .video-section-subtitle { font-size: 16px; } }
.video-carousel { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-behavior: smooth; padding: 0 20px; scroll-padding-left: 20px; }
.video-carousel::-webkit-scrollbar { display: none; }

.video-card { flex-shrink: 0; width: 240px; aspect-ratio: 9 / 16; background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden; position: relative; scroll-snap-align: start; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
@media (min-width: 768px) { .video-card { width: 280px; } }

.video-card iframe, .video-card .yt-player-div { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.video-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--bg-card-active), var(--bg-primary)); display: flex; align-items: center; justify-content: center; }
.play-icon { width: 48px; height: 48px; color: rgba(255, 255, 255, 0.2); }

.video-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 25%; padding: 32px 16px 16px 16px; background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.2) 100%); display: flex; flex-direction: column; justify-content: flex-start; z-index: 2; pointer-events: none; transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out; }
.video-overlay.is-hidden { transform: translateY(100%); opacity: 0; }
.video-title { font-family: 'Poppins', sans-serif; font-weight: 400; font-style: italic; font-size: 18px; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-primary); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: all 0.2s; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.carousel-btn svg { width: 24px; height: 24px; }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }
@media (max-width: 767px) { .carousel-btn { display: none; } }