

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
           
        }
/* 
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
            repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0px, rgba(255,255,255,0.1) 2px, transparent 2px, transparent 10px),
            repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 10px);
            pointer-events: none;
            z-index: -1;
        } */

        .container {
            /* max-width: 1400px; */
            margin: 0 auto;
            
        }

        /* Header */
        .header {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 20px 30px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #8B6B3D;
            text-decoration: none;
        }

        .nav {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .nav a {
            color: #8B6B3D;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav a:hover, .nav a.active {
            color: #D4B896;
        }

        /* Page Title */
        .page-title {
            text-align: center;
            color: #8B6B3D;
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        /* Controls Section */
        .controls-section {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .search-bar {
            display: flex;
            align-items: center;
            background: rgba(212, 184, 150, 0.1);
            border-radius: 25px;
            padding: 12px 20px;
            min-width: 300px;
            border: 2px solid rgba(212, 184, 150, 0.3);
        }

        .search-bar input {
            border: none;
            background: transparent;
            outline: none;
            flex: 1;
            font-size: 16px;
            color: #8B6B3D;
        }

        .search-bar input::placeholder {
            color: #B89960;
        }

        .filters {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: rgba(212, 184, 150, 0.2);
            border: 2px solid rgba(212, 184, 150, 0.3);
            padding: 10px 20px;
            border-radius: 25px;
            color: #8B6B3D;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .filter-btn:hover, .filter-btn.active {
            background: linear-gradient(135deg, #D4B896, #B89960);
            color: white;
            border-color: #B89960;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(212, 184, 150, 0.4);
        }
        .thumbnail{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Videos Grid */
        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .video-card {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #D4B896, #B89960);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
            overflow: hidden;
        }

        .video-thumbnail::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.1);
            transition: background 0.3s ease;
        }

        .video-card:hover .video-thumbnail::before {
            background: rgba(0,0,0,0.3);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #8B6B3D;
            transition: all 0.3s ease;
        }

        .video-card:hover .play-button {
            background: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 4px 8px;
            border-radius: 5px;
            font-size: 12px;
        }

        .category-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(212, 184, 150, 0.9);
            color: white;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
        }

        .video-info {
            padding: 20px;
        }

        .video-title {
            font-size: 18px;
            font-weight: bold;
            color: #8B6B3D;
            margin-bottom: 10px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-description {
            color: #666;
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #B89960;
        }

        .video-stats {
            display: flex;
            gap: 15px;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .page-btn {
            background: rgba(255,255,255,0.9);
            border: 2px solid rgba(212, 184, 150, 0.3);
            padding: 10px 15px;
            border-radius: 10px;
            color: #8B6B3D;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 40px;
            text-align: center;
            text-decoration: none;
        }

        .page-btn:hover, .page-btn.active {
            background: linear-gradient(135deg, #D4B896, #B89960);
            color: white;
            border-color: #B89960;
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .nav {
                justify-content: center;
            }

            .controls-section {
                flex-direction: column;
                align-items: stretch;
            }

            .search-bar {
                min-width: unset;
            }

            .filters {
                justify-content: center;
            }

            .videos-grid {
                grid-template-columns: 1fr;
            }

            .page-title {
                font-size: 28px;
            }
        }

        /* Animation keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .video-card {
            animation: fadeInUp 0.6s ease-out;
        }

        .video-card:nth-child(1) { animation-delay: 0.1s; }
        .video-card:nth-child(2) { animation-delay: 0.2s; }
        .video-card:nth-child(3) { animation-delay: 0.3s; }
        .video-card:nth-child(4) { animation-delay: 0.4s; }
        .video-card:nth-child(5) { animation-delay: 0.5s; }
        .video-card:nth-child(6) { animation-delay: 0.6s; }
        .video-card:nth-child(7) { animation-delay: 0.7s; }
        .video-card:nth-child(8) { animation-delay: 0.8s; }