/* Effet au survol des cartes */
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Amélioration visuelle des barres de progression système (CPU/RAM) */
progress {
    border-radius: 8px;
    height: 8px;
}

/* 🛠️ CONFIGURATION FINALE AUTO-ADAPTATIVE POUR FOND.JPG 🛠️ */
body, #__next, main, #grid-layout {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/37605910/pexels-photo-37605910.jpeg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    min-height: 100vh !important;
    background-color: transparent !important;
}