    .video-preview-button {
        width: 150px !important;
        height: 150px !important;
        background: linear-gradient(135deg, #E89383, #000E91) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        position: relative !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
        animation: pulse-animation 2s infinite !important;
    }

    .video-preview-button .play-icon {
        width: 80px !important;
        height: 80px !important;
        background: linear-gradient(135deg, #E89383, #000E91) !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;
        animation: icon-pulse 2s infinite !important;
    }

.video-preview-button .play-icon svg {
    fill: white !important; /* Changes the SVG color to white */
    width: 50%; /* Ensures the SVG scales proportionally within the 70px play-icon */
    height: 50%; /* Same as above */
}

    /* Original colored expanding circles */
    .video-preview-button::before,
    .video-preview-button::after,
    .video-preview-button .pulse-circle {
        content: '' !important;
        position: absolute !important;
        border-radius: 50% !important;
        inset: -25px !important;
        animation: circle-expand 2.5s infinite !important;
        pointer-events: none !important;
    }

    .video-preview-button::before {
        background: rgba(78, 205, 196, 0.3) !important;
        animation-delay: 0s !important;
        z-index: 1 !important;
    }

    .video-preview-button::after {
        background: rgba(255, 107, 107, 0.3) !important;
        animation-delay: 0.8s !important;
        z-index: 2 !important;
    }

    .video-preview-button .pulse-circle {
        background: rgba(0, 14, 145, 0.2) !important;
        animation-delay: 1.6s !important;
        z-index: 3 !important;
    }

    /* Additional white pulses */
    .video-preview-button .white-pulse-1,
    .video-preview-button .white-pulse-2 {
        content: '' !important;
        position: absolute !important;
        inset: -20px !important;
        border-radius: 50% !important;
        z-index: 0 !important;
        background: rgba(255, 255, 255, 0.5) !important;
        animation: circle-grow 2s infinite !important;
    }

    .video-preview-button .white-pulse-2 {
        animation-delay: 1s !important;
    }

    @keyframes pulse-animation {
        0% {
            transform: scale(1);
            opacity: 1 !important;
        }
        50% {
            transform: scale(1.1);
            opacity: 1 !important;
        }
        100% {
            transform: scale(1);
            opacity: 1 !important;
        }
    }

    @keyframes icon-pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
        100% {
            transform: scale(1);
        }
    }

    @keyframes circle-expand {
        0% {
            transform: scale(0.95) !important;
            opacity: 1 !important;
        }
        50% {
            opacity: 0.5 !important;
        }
        100% {
            transform: scale(1.8) !important;
            opacity: 0 !important;
        }
    }

    @keyframes circle-grow {
        0% {
            transform: scale(0.8);
            opacity: 0.8 !important;
        }
        100% {
            transform: scale(2);
            opacity: 0 !important;
        }
    }

    .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);
    }
    