body {
            background-color: #111;
            color: #eee;
            font-family: 'Segoe UI', sans-serif;
            margin: 0;
            padding: 20px;
        }
        ::selection {
    background-color: #6c00bd; /* Custom background color */
    color: #fff; /* Custom text color */
}

/* For Firefox */
::-moz-selection {
    background-color: #6c00bd; /* Custom background color */
    color: #000000; /* Custom text color */
}
        .video-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding-top: 20px;
            justify-content: center;
        }
        .content{
            padding-top:30px;
        }
        .video-card-link {
            text-decoration: none;
            color: inherit;
        }

        .video-card {
            border-radius: 16px;
            overflow: hidden;
            width: 500px;
            transition: transform 0.2s ease-in-out;
        }

        .video-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
        }

        .thumbnail-wrapper {
            position: relative;
            width: 100%;
            height: 270px;
            overflow: hidden;
        }

        .thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity 0.3s ease-in-out;
        }

        .hover-thumb {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
        }

        

        /* Language label styling */
        .language-label {
            position: absolute;
            top: 10px;
            left: 10px;
            backdrop-filter: blur(10px);
            color: white;
            padding: 5px 10px;
            font-size: 14px;
            font-weight: 700;
            border-radius: 5px;
        }

        .video-info {
            padding: 15px;
        }

        .video-title {
            font-size: 16px;
            font-weight: 500;
            color: #fff;
            margin-bottom: 6px;
        }

        .profile {
            display: flex;
            align-items: center;
            margin-top: 0.5rem;
            gap: 5px;
        }

        .profile img {
            width: 32px;
            height: 32px;
            margin-right: 0.6rem;
            border-radius: 50%;
            object-fit: cover;
        }

        .profile a {
            color: #fff;
            text-decoration: none;
            font-size: 0.95rem;
        }

        .meta {
            font-size: 13px;
            color: #aaa;
            margin-left: auto;
        }

        .banner {
            backdrop-filter: blur(10px);
            padding: 15px;
            text-align: center;
            font-family: sans-serif;
            font-size: 16px;
            background: linear-gradient(to right, #3a0086, transparent);
            margin-bottom: 20px;
        }

        .banner a {
            color: wheat;
            text-decoration: underline;
            margin-left: 5px;
        }

        .filter-dropdown {
            margin: 10px auto 0;
            text-align: center;
        }

        select {
            padding: 6px 10px;
            font-size: 15px;
            background-color: #222;
            color: #eee;
            border: 1px solid #555;
            border-radius: 6px;
        }

        @media (max-width: 600px) {
            .video-card {
                width: 100%;
            }

            .banner {
                font-size: 14px;
                padding: 10px;
                background: linear-gradient(to right, #3a0086, #2d004f);
            }
        }