/* ==== Page Background ==== */
body {
    background: #f8f9fa; /* light background */
    color: #212529; /* dark text */
    font-family: 'Inter', sans-serif;
}

/* Video or image inside container */
video,
.video-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease; /* smooth zoom for hover */
}

/* ==== Zoom effect for images in video-card ==== */
.video-card img:hover {
    transform: scale(1.05);
}

/* ==== Links ==== */
a {
    text-decoration: none;
    color: #0d6efd; /* Bootstrap primary link color */
}

a:hover {
    text-decoration: underline;
}

/* ==== Responsive Enhancements ==== */
@media (max-width: 768px) {
    .title {
        font-size: 0.9rem;
    }
    .channel {
        font-size: 0.7rem;
    }
}
