  /* TUS ESTILOS ACTUALES (conservando todo lo que tienes) */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #fc0101, #080910);
            display: flex;
            flex-direction: column;
            /* Cambiado a columna */
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        #preloader.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        /* NUEVOS ESTILOS PARA EL TÍTULO */
        .preloader-header {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 30px;

            /* Efecto de texto con gradiente animado */
            background: linear-gradient(90deg, #f9d423, #ffffff, #f9d423);
            background-size: 200% auto;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;

            /* Animación para el brillo y aparición */
            animation:
                shine 4s linear infinite,
                fadeIn 1.5s ease;
        }

        .loading-logo {
            width: 150px;
            height: 150px;
            animation: roll-and-move 3s ease-in-out infinite;
            margin-bottom: 20px;
            /* Espacio adicional si quieres agregar texto debajo */
        }

        @keyframes roll-and-move {
            0%, 100% {
                transform: translateX(-30px) rotate(-45deg); /* Inicia a la izquierda y girado */
            }
            50% {
                /* En el punto medio, se mueve hacia la derecha y gira en la otra dirección */
                transform: translateX(30px) rotate(45deg);
            }
        }

        @keyframes shine {
            to {
                background-position: -200% center;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* TUS ESTILOS ORIGINALES PARA EL CONTENIDO */
        body.preload {
            overflow: hidden;
        }

        body.loaded {
            overflow: auto;
        }

        .content {
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        body.loaded .content {
            opacity: 1;
        }
    
        /* Responsive adjustments for mobile */
        @media (max-width: 576px) {
            .preloader-header {
                font-size: 1.8rem; /* Tamaño de fuente más pequeño para móviles */
                text-align: center; /* Centrar el texto que tiene salto de línea */
            }
        
            .loading-logo {
                width: 120px; /* Reducir también el logo un poco */
                height: 120px;
            }
        }
    