        /* Estilo para el overlay del popup */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 90%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            visibility: hidden;
        }

        /* Estilo para el contenido del popup */
        .popup-content {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            z-index: 1001;
        }

        /* Estilo para el video */
        video {
            width: 90%;
            height: auto;
            margin-bottom: 20px;
        }

        /* Estilo para la imagen */
        img {
            width: 100%;
            height: auto;
            margin-bottom: 20px;
        }

        /* Estilo para el botón de cierre */
        .close-btn {
            background: #ff0000;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        /* Efecto blur para el contenido de fondo */
        .blurred {
            filter: blur(8px);
            transition: filter 0.3s ease;
        }