        .video-preview-button .play-icon {
            width: 80px !important;
            height: 80px !important;
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6)) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            position: relative !important;
            z-index: 4 !important;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
        }

        .video-preview-button .play-icon svg {
            fill: #000E91 !important;
            width: 50%;
            height: 50%;
        }

        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .video-modal.active {
            display: flex;
        }

        .video-container {
            position: relative;
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            height: 90vh;
            padding: 0 20px;
        }

        .video-container iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            max-height: 90vh;
            max-width: calc(90vh * 16 / 9);
            border: none;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            z-index: 10000;
            transition: transform 0.3s ease;
        }

        .close-modal:hover {
            transform: scale(1.1);
        }
        