h2 {
    margin-bottom: 10px;
}

.video-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
}

.video-card {
    background: #222;
    border-radius: 12px;
    flex: 0 0 280px;
    scroll-snap-align: start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: scale(1.05);
}

.video-thumbnail {
    width: 100%;
    height: 160px;
    background: #000;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 10px;
}

.video-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.video-channel {
    font-size: 14px;
    color: #aaa;
}

/* Hide scrollbar */
.video-container::-webkit-scrollbar {
    display: none;
}