
        .hmk-video-container {
            width: 900px;
            max-width: 100%;
            margin: 2rem auto;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: #000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .video-wrapper {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
        }
        
        .video-wrapper > * {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .video-thumbnail {
            cursor: pointer;
            z-index: 10;
            transition: opacity 0.3s ease;
        }
        
        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
            transition: filter 0.3s ease;
        }
        
        .video-thumbnail:hover img {
            filter: brightness(0.7);
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 15;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .play-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .play-button i {
            color: white;
            font-size: 32px;
            margin-left: 5px;
        }
        
        .video-loader {
            background: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 20;
        }
        
        .loader-spinner {
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top: 4px solid #ffffff;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .video-error {
            display: none;
            background: rgba(0, 0, 0, 0.9);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
            z-index: 25;
        }
        
        .video-error h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #ff6b6b;
        }
        
        .video-error p {
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .video-error a {
            color: #4ecdc4;
            text-decoration: none;
            font-weight: 600;
            border: 1px solid #4ecdc4;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.2s ease;
        }
        
        .video-error a:hover {
            background: rgba(78, 205, 196, 0.1);
        }
        
        .video-element {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
            z-index: 5;
        }
        
        .duration-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 14px;
            z-index: 9;
        }
        
        /* CONTROLES EN BAS - STYLES CORRIGÉS */
        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            display: flex;
            align-items: end;
            justify-content: space-between;
            z-index: 8;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        }
        
        .video-wrapper:hover .video-controls {
            opacity: 1;
            pointer-events: all;
        }
        
        .control-group {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
        }
        
        .control-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 16px;
            opacity: 0.9;
            transition: all 0.2s ease;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .control-btn:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        
        .progress-container {
            flex-grow: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
        }
        
        .progress-bar {
            height: 100%;
            background: #4ecdc4;
            width: 0%;
            transition: width 0.2s ease;
            border-radius: 3px;
        }
        
        .time-display {
            color: white;
            font-size: 14px;
            opacity: 0.9;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
            min-width: 100px;
            text-align: center;
            font-variant-numeric: tabular-nums;
        }
        
        .volume-control {
            display: flex;
            align-items: center;
            margin-left: 5px;
        }
        
        .volume-slider {
            width: 70px;
            margin-left: 5px;
            -webkit-appearance: none;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            outline: none;
        }
        
        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #4ecdc4;
            cursor: pointer;
        }
        
        .volume-slider::-moz-range-thumb {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #4ecdc4;
            cursor: pointer;
            border: none;
        }





         .section-title {
            text-align: center;
            margin-bottom: 40px;
            width: 100%;
        }
        
        .section-title h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #00c6ff, #0072ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-title p {
            font-size: 1.1rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* CONTENEUR PRINCIPAL */
        .custom-video-container {
            width: 100%;
            max-width: 1200px;
            position: relative;
            z-index: 0;
            margin: 40px auto;
        }

        /* GRID LAYOUT */
        .custom-video-grid-main {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .custom-video-grid-left {
            flex: 0 0 60%;
        }

        .custom-video-grid-right {
            flex: 0 0 40%;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* VIDEO WRAPPER */
        .custom-video-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
            background: #000;
            transform: translateZ(0);
            cursor: pointer;
        }

        .custom-video-large {
            transform: scale(0.9) rotate(-3deg);
            opacity: 0;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
            height: 500px;
        }

        .custom-video-large.is-visible {
            opacity: 1;
            transform: scale(1) rotate(0);
        }

        .custom-video-small {
            transform: scale(0.9) rotate(3deg);
            opacity: 0;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
            height: 235px;
        }

        .custom-video-small.is-visible {
            opacity: 1;
            transform: scale(1) rotate(0);
        }

        /* THUMBNAIL ET VIDEO */
        .custom-video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(0.8);
            transition: transform 0.8s ease;
        }

        /* Loader */
        .custom-video-loader {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 40;
            backdrop-filter: blur(10px);
        }

        .custom-loader-spinner {
            border: 5px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            border-top: 5px solid #00E0FF;
            width: 60px;
            height: 60px;
            animation: spin 1.2s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* BOUTON PLAY STYLISÉ */
        .custom-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            z-index: 30;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            background: linear-gradient(135deg, #00c6ff, #0072ff);
            box-shadow: 0 0 0 15px rgba(0, 114, 255, 0.3),
                0 0 40px rgba(0, 198, 255, 0.6);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: pulse 2s infinite;
        }

        .custom-play-button i {
            color: white;
            font-size: 40px;
            margin-left: 8px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .custom-play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 0 0 10px rgba(0, 114, 255, 0.4),
                0 0 60px rgba(0, 198, 255, 0.8);
        }

        .custom-play-button:hover i {
            transform: scale(1.1);
        }

        /* ANIMATION PULSATION */
        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 0 0 15px rgba(0, 114, 255, 0.3),
                    0 0 40px rgba(0, 198, 255, 0.6);
            }

            50% {
                transform: translate(-50%, -50%) scale(1.1);
                box-shadow: 0 0 0 5px rgba(0, 114, 255, 0.5),
                    0 0 60px rgba(0, 198, 255, 0.9);
            }

            100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 0 0 15px rgba(0, 114, 255, 0.3),
                    0 0 40px rgba(0, 198, 255, 0.6);
            }
        }

        /* EFFETS VISUELS */
        .custom-orbital-light {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 224, 255, 0.25) 0%, rgba(0, 82, 212, 0.15) 70%, transparent 100%);
            animation: rotateOrbit 25s linear infinite;
            z-index: 5;
            pointer-events: none;
        }

        .custom-video-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-shadow: inset 0 0 60px rgba(0, 224, 255, 0.4),
                0 0 100px rgba(0, 82, 212, 0.5);
            z-index: 6;
            pointer-events: none;
            border-radius: 16px;
        }

        @keyframes rotateOrbit {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* SHINE EFFECT */
        .custom-video-shine {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
            animation: shine 3s infinite;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* TEXT OVERLAY */
        .custom-video-text {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            z-index: 25;
        }

        .custom-video-text::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 70%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            z-index: -1;
        }

        .custom-video-text h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: white;
            pointer-events: none;
        }

        .custom-video-text p {
            font-size: 0.95rem;
            color: #B8B8B8;
            pointer-events: none;
        }

        /* Élément vidéo */
        .hmk-video-element {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
            z-index: 5;
        }

        /* CONTROLES EN BAS - STYLES CORRIGÉS */
        .hmk-video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 8;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        }

        .custom-video-wrapper:hover .hmk-video-controls {
            opacity: 1;
            pointer-events: all;
        }

        .hmk-control-group {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
        }

        .hmk-control-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 16px;
            opacity: 0.9;
            transition: all 0.2s ease;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hmk-control-btn:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .hmk-progress-container {
            flex-grow: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
        }

        .hmk-progress-bar {
            height: 100%;
            background: #4ecdc4;
            width: 0%;
            transition: width 0.2s ease;
            border-radius: 3px;
        }

        .hmk-time-display {
            color: white;
            font-size: 14px;
            opacity: 0.9;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
            min-width: 100px;
            text-align: center;
            font-variant-numeric: tabular-nums;
        }

        .hmk-volume-control {
            display: flex;
            align-items: center;
            margin-left: 5px;
        }

        .hmk-volume-slider {
            width: 70px;
            margin-left: 5px;
            -webkit-appearance: none;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            outline: none;
        }

        .hmk-volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #4ecdc4;
            cursor: pointer;
        }

        .hmk-volume-slider::-moz-range-thumb {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #4ecdc4;
            cursor: pointer;
            border: none;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 1200px) {
            .custom-video-grid-main {
                flex-direction: column;
            }

            .custom-video-grid-left,
            .custom-video-grid-right {
                flex: 0 0 100%;
            }

            .custom-video-large {
                height: 500px;
            }

            .custom-video-small {
                height: 300px;
            }

            .custom-video-grid-right {
                flex-direction: row;
            }

            .custom-video-grid-right > div {
                flex: 1;
            }
        }

        @media (max-width: 768px) {
            .custom-video-grid-right {
                flex-direction: column;
            }

            .custom-video-large {
                height: 400px;
            }

            .custom-video-small {
                height: 250px;
            }

            .custom-video-text {
                padding: 1.5rem;
            }

            .custom-video-text h3 {
                font-size: 1.2rem;
            }

            .custom-video-text p {
                font-size: 0.85rem;
            }
            
            .hmk-control-group {
                gap: 8px;
            }
            
            .hmk-time-display {
                min-width: 80px;
                font-size: 12px;
            }
            
            .hmk-volume-slider {
                width: 50px;
            }
        }

        @media (max-width: 576px) {
            .custom-video-large {
                height: 300px;
                }

            .custom-video-small {
                height: 200px;
            }

            .custom-play-button {
                width: 70px;
                height: 70px;
            }

            .custom-play-button i {
                font-size: 30px;
            }

            .custom-video-text {
                padding: 1rem;
            }

            .custom-video-text h3 {
                font-size: 1rem;
            }
            
            .hmk-control-group {
                gap: 5px;
            }
            
            .hmk-time-display {
                display: none;
            }
            
            .hmk-volume-control {
                display: none;
            }
        }