/* ==========================
   PAGE ANNEXE INFORMATIQUE
   STYLE HARMONISÉ (Identique Maths) - THÈME OR
========================== */

/* ==========================
   VARIABLES CSS
========================== */
:root {
    --primary: #d69656;       /* OR / AMBRE (Couleur principale) */
    --secondary: #ffbd7a;     /* OR PÂLE (Couleur secondaire) */
    --accent: #ffffff;        /* Blanc */
    --bg-dark: #0a0a0a;       /* Fond sombre */
    --bg-card: #1a1a1a;       /* Fond des cartes (identique Maths) */
    --text-primary: #ffffff;  
    --text-secondary: #b0b0b0; /* Gris clair standardisé */
}

/* ==========================
   RESET CSS
========================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Exo 2', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* ==========================
   GRILLE DE FOND SUBTILE
========================== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(214, 150, 86, 0.03) 2px,
        rgba(214, 150, 86, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* ==========================
   HEADER & NAVIGATION
========================== */
header {
    position: relative; /* Nécessaire pour le z-index */
    z-index: 100;       /* S'assure que le header passe DEVANT la pluie numérique */
    width: 100%;
}

header nav {
    padding: 15px 50px;
    /* C'est ici que se fait la bande noire */
    background: rgba(10,10,10,0.95); 
    /* La bordure dorée subtile en bas */
    border-bottom: 1px solid rgba(214, 150, 86, 0.2);
}

header nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

header nav a:hover::after { width: 100%; }
header nav a:hover { color: var(--primary); }

/* ==========================
   TITRES (STYLE EXACT MATHS ADAPTÉ EN OR)
========================== */
.page-title, main h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--primary); 
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.page-title {
    font-size: 2.5rem;
    margin: 30px 0;
    padding: 0 10px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(214, 150, 86, 0.8), 
                 0 0 20px rgba(214, 150, 86, 0.6),
                 0 0 30px rgba(214, 150, 86, 0.4);
}

main h2 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(214, 150, 86, 0.8), 
                 0 0 20px rgba(214, 150, 86, 0.6);
}

@keyframes titleGlow {
    from { text-shadow: 0 0 10px rgba(214, 150, 86, 0.6); }
    to { text-shadow: 0 0 20px rgba(214, 150, 86, 0.8), 0 0 35px rgba(214, 150, 86, 0.5); }
}

/* ==========================
   CONTENU PRINCIPAL
========================== */
main {
    flex: 1;
    padding: 100px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ==========================
   SECTIONS CPGE & UNIVERSITAIRES
========================== */
.cpge-section, .uni-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
}

.cpge-section { align-items: flex-start; }
.uni-section { align-items: center; }

.cpge-images, .uni-images {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.cpge-images img, .uni-images img {
    background: var(--bg-card);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(214, 150, 86, 0.1);
    box-shadow: 0 0 10px rgba(214, 150, 86, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.cpge-images img { width: 120px; object-fit: contain; }
.uni-images img { width: 360px; height: 165px; object-fit: cover; }

.cpge-images img:hover, .uni-images img:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px var(--primary);
    border-color: var(--primary);
}

.cpge-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 25%, #ffffff 50%, var(--secondary) 75%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================
   TEXTES & LISTES
========================== */
.cpge-text, .uni-text {
    flex: 1;
    max-width: 550px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

.cpge-text ul, .uni-text ul { list-style: none; margin: 0; padding: 0; }

.cpge-text strong, .uni-text strong {
    color: #00ffff; /* CYAN (Pour garder la cohérence visuelle des mots clés) */
    border-left: 3px solid #ff00ff; /* MAGENTA */
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 25px;
    margin-bottom: 10px;
    padding-left: 15px;
}

.cpge-text > ul > li:first-child strong,
.uni-text > ul > li:first-child strong { margin-top: 0; }

.cpge-text ul ul, .uni-text ul ul { padding-left: 20px; }

.cpge-text ul ul li, .uni-text ul ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.cpge-text ul ul li::before, .uni-text ul ul li::before {
    content: '›';
    color: #00ffff;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* ==========================
   DÉMO TECHNIQUE & CANVAS (Spécifique Info)
========================== */
#demo-technique { margin: 5rem 0; }

.demo-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.demo-text { flex: 1; min-width: 300px; max-width: 450px; }

.demo-text h3 {
    text-align: left;
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.demo-text p { color: var(--text-secondary); margin-bottom: 25px; font-size: 1.05rem; }

.tech-stack { display: flex; gap: 10px; list-style: none; padding: 0; }

.tech-stack li {
    background: rgba(214, 150, 86, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid var(--primary);
    font-size: 0.85rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

#canvas-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(214, 150, 86, 0.3);
    box-shadow: 0 0 20px rgba(214, 150, 86, 0.1);
    background: #000;
}

#canvas-container canvas {
    display: block;
    width: 100%;
    height: 100%;
    cursor: grab;
}
#canvas-container canvas:active { cursor: grabbing; }

/* ==========================
   NEURAL TRIGGER (BOUTON IA)
========================== */


/* ==========================
   NEURAL TRIGGER - STYLE PERMANENT
========================== */
.neural-trigger {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 400px;
    height: 250px;
    background: #000;
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    justify-content: center;
    align-items: center;
    /* Style permanent */
    border: 1px solid #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.neural-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, #1a051a 0%, #000 70%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.neural-core {
    width: 4px;
    height: 4px;
    background: #ff00ff;
    border-radius: 50%;
    transition: all 0.4s ease;
    /* Style permanent */
    transform: scale(2);
    box-shadow: 0 0 30px 5px #ff00ff;
}

.neural-wave {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #ff00ff;
    border-radius: 50%;
    opacity: 0;
    animation: wave-spread 4s infinite linear;
}

.neural-wave:nth-child(3) {
    animation-delay: 2s;
}

@keyframes wave-spread {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(15); opacity: 0; }
}

.trigger-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.orbitron-text {
    display: block;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
    /* Style permanent */
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.tech-line {
    height: 1px;
    margin: 15px auto;
    transition: width 0.4s ease, background 0.4s ease;
    /* Style permanent */
    width: 100px;
    background: #00ffff;
    box-shadow: 0 0 5px #00ffff;
}

.trigger-content small {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-secondary);
    letter-spacing: 1px;
    opacity: 0.7;
}

.neural-trigger:hover {
    transform: translateY(-5px);
}

/* ==========================
   TARIFS & BOUTONS
========================== */
#tarifs { margin-top: 4rem; text-align: center; }

.tarifs { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 2rem; padding: 0 10px; }

.tarifs-table {
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(214, 150, 86, 0.1);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    overflow-x: auto;
}

.table-tarifs { width: 100%; border-collapse: collapse; color: var(--text-primary); font-size: 16px; }

.table-tarifs th {
    color: var(--primary);
    font-family: 'Audiowide', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px;
    border-bottom: 2px solid rgba(214, 150, 86, 0.3);
}

.table-tarifs td { padding: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

.table-tarifs tr:hover { background: rgba(214, 150, 86, 0.08); }

.btn-container { display: flex; justify-content: center; margin-top: 20px; }

.btn-primary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(214, 150, 86, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary);
    color: #000;
    box-shadow: 0 0 25px rgba(214, 150, 86, 0.5);
}

/* ==========================
   FOOTER (Style harmonisé Maths - Thème Or)
========================== */
#neural-footer {
    background: linear-gradient(to bottom, #050505, #000);
    border-top: 1px solid rgba(214, 150, 86, 0.3);
    position: relative;
    padding: 80px 20px 30px;
    margin-top: 100px;
    z-index: 2;
}

/* Ligne néon supérieure pulsante (Version Or) */
#neural-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    box-shadow: 0 0 15px var(--primary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Titres H3 avec effet dégradé texte */
.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    
    /* Dégradé Or -> Or Pâle -> Blanc */
    background: linear-gradient(90deg, var(--primary), var(--secondary), #fff);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
    text-shadow: 0 0 8px var(--primary);
}

.contact-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* ==========================
   BOUTONS RÉSEAUX SOCIAUX (Multicolores comme Maths)
========================== */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: flex-start;
}

/* Style de base du bouton */
.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 5;
    overflow: visible; 
}

/* Style de l'icône */
.social-btn img {
    width: 22px !important;
    height: 22px !important;
    filter: grayscale(100%) brightness(200%);
    transition: filter 0.3s ease; 
    object-fit: contain;
    transform: scale(1);
}

/* Correction taille spécifique pour Insta/Youtube */
.social-btn.instagram img, 
.social-btn.youtube img {
    width: 35px !important; 
    height: 35px !important;
}

/* --- ANIMATION GÉNÉRALE --- */
.social-btn:hover {
    transform: translateY(-3px) scale(1.15); /* Zoom du bouton */
    z-index: 10;
}

.social-btn:hover img {
    filter: none; /* La couleur revient */
    transform: scale(0.87) !important; /* Anti-zoom de l'image */
}

/* --- COULEURS SPÉCIFIQUES (IDENTIQUES MATHS) --- */

/* GitHub -> Cyan */
.social-btn.github:hover { 
    border-color: #00ffff; 
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6); 
    background: rgba(0, 255, 255, 0.05);
}

/* LinkedIn -> Indigo */
.social-btn.linkedin:hover { 
    border-color: #6c69ff; 
    box-shadow: 0 0 20px rgba(108, 105, 255, 0.6); 
    background: rgba(108, 105, 255, 0.05);
}

/* Instagram -> Magenta */
.social-btn.instagram:hover { 
    border-color: #e45ae9; 
    box-shadow: 0 0 20px rgba(228, 90, 233, 0.6); 
    background: rgba(228, 90, 233, 0.05);
}

/* YouTube -> Or/Orange */
.social-btn.youtube:hover { 
    border-color: #d69656; 
    box-shadow: 0 0 20px rgba(214, 150, 86, 0.6); 
    background: rgba(214, 150, 86, 0.05);
}

/* --- BOUTON CONTACT (Footer) --- */
.neural-btn-small {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-family: 'Audiowide', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.neural-btn-small:hover {
    background: var(--secondary);
    color: #000;
    box-shadow: 0 0 15px var(--secondary);
    transform: translateY(-3px);
}

/* --- BAS DE PAGE --- */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    color: #555;
    font-size: 0.8rem;
}

.cyber-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-bottom: 20px;
}

/* --- BOUTON RETOUR HAUT --- */
.back-to-top {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    background: var(--bg-dark);
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
}

.back-to-top::after {
    content: '↑';
    transform: rotate(-45deg);
    display: inline-block;
}

.back-to-top:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px var(--primary);
}

/* ==========================
   ANIMATIONS GÉNÉRALES
========================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
   ANIMATION SOURIS (PARTICULES) & BACKGROUND
========================== */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Tout au fond */
    pointer-events: none;
    opacity: 1; 
}

#animation-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    font-size: 5px; /* Échelle */
    pointer-events: none;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: var(--primary); 
}

#circle {
    opacity: 0.1;
    position: absolute;
    top: 50%; left: 50%;
    width: 10em; height: 10em;
    margin: -5em 0 0 -5em;
    border-radius: 50%;
    will-change: transform, opacity;
}

#circle:before {
    z-index: 1;
    opacity: 1;
    content: "";
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    box-shadow: inset 0px 0px 5em 0px currentColor, 0px 0px 2em 1px currentColor;
}

.particle {
    opacity: 0.4;
    position: absolute;
    z-index: 2;
    top: 50%; left: 50%;
    width: 1em; height: 1em; 
    margin: -0.75em 0 0 -0.75em;
    border-radius: 50%;
    will-change: transform;
    mix-blend-mode: screen;
    background: currentColor;
    box-shadow: 0px 0px 4em 0px currentColor; 
}

/* ==========================
   RESPONSIVE DESIGN (MEDIA QUERIES)
========================== */
@media (max-width: 1024px) {
    #animation-wrapper { display: none !important; }
}

@media (max-width: 900px) {
    /* 1. Header & Titres */
    .page-title { font-size: 1.5rem; margin-top: 20px; }
    main h2 { font-size: 1.1rem; }
    header nav { padding: 15px 20px; }

    /* 2. Colonne Unique */
    .cpge-section, .uni-section, .demo-content {
        flex-direction: column; 
        text-align: center;
        gap: 40px;
    }
    
    .cpge-text, .uni-text, .demo-text {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .demo-text h3 { text-align: center; }

    /* 3. Logos CPGE (3 par ligne) */
    .cpge-images {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .cpge-images img {
        width: 28%;              
        max-width: 100px;
        height: auto;
        margin-bottom: 5px;
    }

    /* 4. Logos Uni (Colonne) */
    .uni-images {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    
    .uni-images img {
        width: 100%; 
        max-width: 350px;
        height: auto; 
    }

    /* 5. Footer & Tableaux */
    .table-tarifs th, .table-tarifs td { font-size: 14px; padding: 10px; }
    .footer-section:last-child { text-align: center; }
    .social-links { justify-content: center; }
    footer { padding: 40px 20px 20px; }
}
/* ==========================
   SECTION PHILOSOPHIE (Thème OR)
========================== */
.philosophy-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 30px 40px;
    
    /* Fond sombre avec une teinte OR très légère */
    /* RGB de l'OR (#d69656) = 214, 150, 86 */
    background: linear-gradient(90deg, rgba(214, 150, 86, 0.05) 0%, rgba(26, 26, 26, 0.6) 100%);
    border-left: 4px solid #00ffff;
    border-radius: 0 12px 12px 0;
    
    /* Légère ombre dorée */
    box-shadow: 0 0 20px rgba(214, 150, 86, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Effet au survol */
.philosophy-section:hover {
    box-shadow: 0 0 30px rgba(214, 150, 86, 0.15);
    background: linear-gradient(90deg, rgba(214, 150, 86, 0.08) 0%, rgba(26, 26, 26, 0.8) 100%);
    transform: translateX(5px);
}

/* Titre */
/* Titre Philosophie en CYAN */
.philosophy-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    
    /* --- CHANGEMENT ICI --- */
    color: #00ffff; /* Texte Cyan */
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6); /* Lueur Cyan */
    /* ---------------------- */
    
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sous-titre */
.philosophy-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

/* --- MODIFICATION DEMANDÉE : MAGENTA SPÉCIFIQUE --- */
.philosophy-subtitle strong {
    color: #ff00ff; /* MAGENTA (Demandé spécifiquement) */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Texte principal */
.philosophy-content {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.philosophy-content strong {
    color: var(--primary); /* Mots clés en OR */
    font-weight: 700;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .philosophy-section {
        margin: 40px 20px;
        padding: 20px;
        border-left: 3px solid var(--primary);
    }
    .philosophy-title {
        font-size: 1.2rem;
    }
}

/* ==========================
   ENCART CESU (Thème OR)
========================== */
.cesu-container {
    max-width: 600px;
    margin: 25px auto 60px; /* Marge en bas augmentée pour espacer du tableau tarifs */
    padding: 20px;
    /* Fond teinte OR subtile */
    background: linear-gradient(90deg, rgba(214, 150, 86, 0.05) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid var(--primary); /* Bordure OR */
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 15px rgba(214, 150, 86, 0.1);
}

.cesu-container:hover {
    box-shadow: 0 0 25px rgba(214, 150, 86, 0.25);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.cesu-icon {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary); /* % en OR */
    min-width: 50px;
    text-align: center;
    text-shadow: 0 0 10px rgba(214, 150, 86, 0.4);
}

.cesu-content h4 {
    color: #00ffff; 
    
    /* Optionnel : ajoute une petite lueur cyan pour l'effet néon */
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);

    margin-bottom: 5px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.cesu-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.cesu-example {
    color: #ff00ff !important; /* Exemple en OR */
    font-weight: bold;
}

/* Mobile CESU */
@media (max-width: 600px) {
    .cesu-container { flex-direction: column; text-align: center; }
}