:root {
    /* Palette Treillis / Militaire */
    --army-dark: #1A1C14;      /* Fond très sombre vert-noir */
    --army-olive: #4B5320;     /* Vert Olive (Boutons, accents) */
    --army-kaki: #8B864E;      /* Kaki (Survol, texte important) */
    --army-sand: #C2B280;      /* Beige Sable (Détails, icônes) */
    --army-glow: rgba(75, 83, 32, 0.5);
}

/* --- Base du Site --- */
body {
    background-color: var(--army-dark) !important;
    color: #ffffff;
}

/* --- Effet Néon Treillis --- */
.text-treillis { color: var(--army-kaki); }
.bg-treillis { background-color: var(--army-olive); }
.border-treillis { border-color: var(--army-olive); }

/* --- Navigation Active --- */
.nav-active {
    color: var(--army-sand) !important;
    position: relative;
    text-shadow: 0 0 10px var(--army-glow);
}

.nav-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--army-sand);
    box-shadow: 0 0 8px var(--army-sand);
}

/* --- Scrollbar Tactique --- */
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--army-olive);
    border-radius: 0px; /* Carré pour le look militaire */
}

/* --- Grille de fond Radar --- */
.bg-grid-pattern { 
    background-image: radial-gradient(circle, rgba(75, 83, 32, 0.15) 1px, transparent 1px); 
    background-size: 35px 35px; 
}