        :root {
            --rojo-pulsar: #d32f2f;
            --negro-cine: #050505;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--negro-cine);
            /* Fondo con patrón de puntos sutil si se desea, o puro negro */
            background-image: radial-gradient(rgba(211, 47, 47, 0.05) 1px, transparent 1px);
            background-size: 20px 20px;
            font-family: 'Exo 2', sans-serif;
            overflow: hidden;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        /* EFECTO EN LOS COSTADOS: Video desenfoque */
.video-glow-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* Crea un resplandor rojo en el centro que se difumina hacia los bordes */
    background: radial-gradient(circle at center, rgba(211, 47, 47, 0.25) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

        /* LOGO SUPERIOR */
        .header-logo {
            z-index: 100;
            margin-bottom: 30px;
            animation: fadeIn 1s ease 0.3s forwards;
            opacity: 0;
        }

        .header-logo img {
            height: 35px; /* Tamaño similar al de la imagen */
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
        }

        /* CONTENEDOR CENTRAL DEL VIDEO ANIMADO */
        .televisor-central-container {
            position: relative;
            width: 90%;
            max-width: 960px;
            aspect-ratio: 16 / 9;
            z-index: 10;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(211, 47, 47, 0.4);
            /* Brillo rojo alrededor animado */
            animation: entradaEscala 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards, 
                       resplandorRojo 3s infinite alternate ease-in-out;
        }

        @keyframes resplandorRojo {
            0% { 
                box-shadow: 0 0 15px rgba(211, 47, 47, 0.3), inset 0 0 10px rgba(211, 47, 47, 0.1); 
                border-color: rgba(211, 47, 47, 0.3);
            }
            100% { 
                box-shadow: 0 0 40px rgba(211, 47, 47, 0.8), inset 0 0 20px rgba(211, 47, 47, 0.4); 
                border-color: rgba(211, 47, 47, 0.9);
            }
        }

        .video-render-player {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background-color: #000;
        }

        /* TEXTO INFERIOR (TODOMOTOS PRESENTA + MODELO) */
        .footer-text-container {
            z-index: 100;
            text-align: center;
            margin-top: 30px;
            animation: slideUp 0.8s ease 0.5s forwards;
            opacity: 0;
            transform: translateY(20px);
            width: 100%;
        }

        .presenta-texto {
            color: #aaa;
            font-size: 0.8rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 5px;
        }

        .presenta-texto::before, .presenta-texto::after {
            content: '';
            width: 20px;
            height: 1px;
            background: var(--rojo-pulsar);
        }

        .modelo-titulo {
            font-size: 3rem; /* Letras gigantes */
            font-weight: 900;
            font-style: italic;
            text-transform: uppercase;
            line-height: 1;
            letter-spacing: 2px;
            text-shadow: 0 5px 15px rgba(0,0,0,0.8);
        }

        .modelo-p1 {
            color: #fff;
            display: block;
        }

        .modelo-p2 {
            color: var(--rojo-pulsar);
            display: block;
            text-shadow: 0 0 20px rgba(211, 47, 47, 0.8);
        }

        /* BOTÓN DE CONTROL: SALTAR INTRODUCCIÓN */
        .btn-saltar-presentacion {
            position: relative;
            z-index: 100;
            margin-top: 40px;
            background: #000;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 15px 40px;
            font-family: 'Exo 2', sans-serif;
            font-size: 0.95rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            border-radius: 50px; /* Forma de píldora */
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5), 0 0 15px rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }

        .btn-saltar-presentacion i {
            color: var(--rojo-pulsar);
            font-size: 1.2rem;
            transition: 0.3s;
        }

        .btn-saltar-presentacion:hover {
            border-color: #fff;
            transform: scale(1.05);
            box-shadow: 0 5px 25px rgba(255,255,255,0.2);
        }

        .btn-saltar-presentacion:hover i {
            transform: translateX(5px);
        }

        /* Efecto brilloso cruzando el botón */
        .btn-saltar-presentacion::after {
            content: '';
            position: absolute;
            top: 0; 
            left: -100%;
            width: 50%; 
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
            transform: skewX(-25deg);
            animation: brilloBoton 3s infinite;
        }

        @keyframes brilloBoton {
            0% { left: -100%; }
            20% { left: 200%; }
            100% { left: 200%; }
        }

        /* ANIMACIÓN DE ENTRADA SUAVE CON ESCALA RAPIDA */
        @keyframes entradaEscala {
            from { 
                opacity: 0; 
                transform: scale(0.05);
                filter: blur(20px); 
            }
            to { 
                opacity: 1; 
                transform: scale(1); 
                filter: blur(0); 
            }
        }
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        @keyframes slideUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* ADAPTACIÓN PARA ESCRITORIO (Centrar y escalar mejor) */
        @media (min-width: 769px) {
            .header-logo {
                position: absolute;
                top: 40px;
                left: 40px;
                margin: 0;
            }
            .btn-saltar-presentacion {
                position: absolute;
                top: 30px;
                right: 40px;
                margin: 0;
            }
            .footer-text-container {
                position: absolute;
                bottom: 40px;
            }
            .modelo-titulo {
                font-size: 4rem;
                display: flex;
                gap: 20px;
                justify-content: center;
            }
            .televisor-central-container {
                width: 70%;
            }
        }

        /* ADAPTACIÓN PARA MÓVILES EXACTA COMO EN LA IMAGEN */
        @media (max-width: 768px) {
            body {
                padding: 20px;
                justify-content: center;
            }
            .televisor-central-container {
                width: 100%;
            }
            .modelo-titulo {
                font-size: 3.2rem;
            }
            /* Si la palabra es muy larga, bajarle el tamaño en móvil */
            .modelo-p1 {
                font-size: clamp(2rem, 12vw, 3.5rem);
            }
            .modelo-p2 {
                font-size: clamp(2.5rem, 15vw, 4rem);
                margin-top: -10px; /* Para que quede pegado como en el diseño */
            }
        }