/* ==========================================
   css/efectos.css - EFECTOS VISUALES PIXQUILANDIA
   ========================================== */

/* 1. CURSOR PRINCIPAL (Varita/Círculo) */
body {
    cursor: auto;
}

/* 2. PARTÍCULAS DEL CURSOR (Las bolitas que caen) */
.cursor-particle {
    position: fixed;
    pointer-events: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 9999;
    animation: particleFade 1s ease-out forwards;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes particleFade {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(0) translateY(-30px);
        opacity: 0;
    }
}

/* 3. ANIMACIONES DE INTERFAZ (Estaban en tu HTML) */

/* Header Flotante */
.header-title {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Hover en Display Areas (Zoom) */
.display-area:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Hover en Cajas de Info (Sombra) */
.info-box:hover {
    box-shadow: 12px 12px 0 var(--azul);
    transition: box-shadow 0.3s ease;
}

/* Pulsación (para comentarios nuevos o destacados) */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.comment-item:first-child, .pulse-animation {
    animation: pulse 2s ease-in-out;
}

/* Brillo en Botones */
.start-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.1s;
}

.start-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s;
    pointer-events: none;
}

.start-btn:hover::before {
    left: 100%;
}

/* 4. EXTRAS (Del archivo que tenías, por si los usas) */
.typing-effect {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3s steps(40, end);
}
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* Desactivar en móviles para ahorrar batería */
@media (max-width: 768px) {
    .cursor-particle { display: none; }
    body { cursor: auto; }
}

/* ==========================================
   FOOTER GLOBAL Y ANIMACIONES
   ========================================== */
.arcade-glow-text {
    color: #BAD9BA;
    font-size: 11px;
    letter-spacing: 2px;
    display: inline-block;
    animation: float 2s ease-in-out infinite, neonPulse 1.5s infinite alternate;
    text-shadow: 0 0 5px #BAD9BA;
}

.static-names {
    color: #A1D6DC;
    font-size: 10px;
    letter-spacing: 1px;
    font-style: normal; /* Asegura que la fuente Press Start 2P no esté en cursiva */
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.05); }
}

@keyframes neonPulse {
    0% { opacity: 1; text-shadow: 0 0 2px #BAD9BA, 0 0 8px #BAD9BA; }
    100% { opacity: 0.7; text-shadow: 0 0 5px #BAD9BA, 0 0 15px #BAD9BA, 0 0 20px #ffffff; }
}

/* En css/efectos.css - Reemplaza el bloque anterior de los logos */

/* En css/efectos.css */

.footer-logos img, .logo-static {
    height: 60px;
    width: auto;
    
    /* TU CÓDIGO: Queda en blanco/gris claro brillante y SIN la sombra encimada */
    filter: grayscale(100%) brightness(300%) !important;
    
    /* TU CÓDIGO: Mantiene el estilo pixelado */
    image-rendering: pixelated !important; 
    
    transition: transform 0.3s ease;
}

.footer-logos img:hover, .logo-static:hover {
    transform: scale(1.05); /* Pequeño efecto al pasar el mouse */
}