/* Container for video rows */
.container {
    display: flex;
    flex-wrap: wrap; /* Ensures videos wrap to the next line on smaller screens */
    gap: 40px; /* Adds spacing between video items */
    justify-content: center; /* Centers the videos within the container */
}




/* Add hover effect for better interactivity */
.container div:hover {
    transform: scale(1.02); /* Slight zoom on hover */
    transition: transform 0.3s ease; /* Smooth transition effect */
}




