/* Optimisations de performance pour mobile et appareils moins puissants */

/* Optimisations pour mobile - réduction mais pas suppression */
@media (max-width: 768px) {
    .matrix-rain {
        opacity: 0.6; /* Réduction de l'opacité au lieu de masquer */
    }
    
    .binary-wanderer {
        opacity: 0.7; /* Réduction de l'opacité au lieu de masquer */
    }
    
    .cube {
        animation-duration: 10s; /* Animation 2x plus rapide sur mobile */
    }
    
    .matrix-column {
        animation-duration: 15s; /* Animation plus lente sur mobile */
    }
    
    .binary-face-content {
        animation-duration: 15s; /* Animation plus lente sur mobile */
    }
}

/* Désactivation complète seulement pour les très petits écrans */
@media (max-width: 320px) {
    .matrix-rain,
    .binary-wanderer {
        display: none !important;
    }
    
    .cube {
        animation: none !important;
        transform: rotateX(15deg) rotateY(15deg) !important;
    }
}

/* Optimisations GPU pour les animations restantes */
.cube {
    will-change: transform;
    transform: translateZ(0);
}

.cube-face {
    will-change: transform;
    transform: translateZ(0);
}

.matrix-column {
    will-change: transform, opacity;
    transform: translateZ(0);
}

.binary-wanderer {
    will-change: transform, opacity;
    transform: translateZ(0);
}

.binary-face-content {
    will-change: transform;
    transform: translateZ(0);
}

/* Optimisation des images avec lazy loading */
img {
    loading: lazy;
    decoding: async;
}

/* Optimisation des polices */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    font-display: swap;
}

@font-face {
    font-family: 'Rajdhani';
    font-display: swap;
}

/* Réduction des effets visuels sur mobile */
@media (max-width: 768px) {
    .hero-background {
        background-attachment: scroll !important;
    }
    
    .service-card:hover {
        transform: none !important;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-service:hover {
        transform: none !important;
    }
}

/* Optimisation des transitions */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
