.video-popup {
            position: fixed;
            bottom: 0;
            right: 0;
            width: 270px;
            height: 480px;
            background-color: transparent;
            border-radius: 12px 12px 0 0;
            overflow: hidden;
            box-shadow: none;
            z-index: 9999;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            border: 3px solid #E31837;
            border-bottom: none;
        }
        
        .video-popup.active {
            transform: translateX(0);
            right: 0 !important;
            bottom: 0 !important;
            left: auto !important;
            top: auto !important;
        }
        
        .video-popup-content {
            position: relative;
            width: 100%;
            height: 100%;
            background-color: transparent;
        }
        
                 .video-popup-header {
             position: absolute;
             top: 0;
             left: 0;
             right: 0;
             height: 35px;
             background: transparent;
             display: flex;
             align-items: center;
             justify-content: space-between;
             padding: 0 10px;
             z-index: 10;
             cursor: pointer;
             user-select: none;
             transition: background 0.2s ease;
         }
         
         .video-popup-header:hover {
             background: transparent;
         }
        
        .video-popup-title {
            color: white;
            font-size: 12px;
            font-weight: 500;
            opacity: 0.9;
        }
        
        .video-popup-controls {
            display: flex;
            gap: 5px;
        }
        
        .video-popup-nav,
        .video-popup-close {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 4px;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 12px;
            color: white;
        }
        
        .video-popup-nav:hover,
        .video-popup-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .video-popup-nav:hover {
            background: rgba(231, 24, 55, 0.6);
        }
        
        .video-popup-close {
            background: rgba(231, 24, 55, 0.9) !important;
            width: 32px !important;
            height: 32px !important;
            font-size: 16px !important;
            font-weight: bold;
            border: 2px solid rgba(255, 255, 255, 0.8) !important;
            border-radius: 6px !important;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
            position: relative;
        }
        
        .video-popup-close i {
            color: #fff !important;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
            font-weight: 900 !important;
        }
        
        .video-popup-close:hover {
            background: rgba(231, 24, 55, 1) !important;
            transform: scale(1.2);
            border-color: rgba(255, 255, 255, 1) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
        }
        
        .video-popup-close:hover i {
            color: #fff !important;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
        }
        
        .video-popup-nav:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .video-popup-nav:disabled:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .video-container {
            width: 100%;
            height: 100%;
            position: relative;
            background: transparent;
        }
        
        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-color: transparent;
            outline: none;
            filter: none;
            opacity: 1;
        }
        
        .video-container video::-webkit-media-controls {
            background-color: transparent;
        }
        
        .video-container video::-webkit-media-controls-panel {
            background-color: transparent;
        }
        
        .video-close-overlay {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
            background: rgba(231, 24, 55, 0.9);
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            color: white;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        .video-close-overlay:hover {
            background: rgba(231, 24, 55, 1);
            border-color: rgba(255, 255, 255, 1);
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
        }
        
        .video-close-overlay i {
            color: white;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }
        

        
        /* Mobile responsive */
        @media (max-width: 768px) {
            .video-popup {
                width: 200px;
                height: 356px;
                bottom: 0 !important;
                right: 0 !important;
                left: auto !important;
                top: auto !important;
            }
            

            
            .video-popup-header {
                height: 30px;
            }
            
            .video-popup-title {
                font-size: 11px;
            }
            
            .video-popup-nav {
                width: 20px;
                height: 20px;
                font-size: 10px;
            }
            
            .video-popup-close {
                width: 28px !important;
                height: 28px !important;
                font-size: 14px !important;
            }
            
            .video-close-overlay {
                width: 32px;
                height: 32px;
                font-size: 14px;
                top: 8px;
                right: 8px;
            }
        }