         /* 1. Reset & Global */
        html, body {
            padding: 0;
            margin: 0;
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            background: radial-gradient(circle at center, #23272a 0%, #1a1c1e 100%);
            color: #ececed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* 2. Header (Midnight Glass) */
        header {
            background: rgba(35, 39, 42, 0.7);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }


        .navigation ul {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            display: flex;
            align-items: center;
            height: 75px;
            max-width: 1200px;
        }

        .navigation ul li { padding: 0 20px; }

        .navigation a {
            text-decoration: none;
            color: #96989d;
            font-weight: 500;
            transition: 0.3s;
        }

        .navigation a:hover { color: #ffffff; }

        /* 3. Bouton Connexion (Style Discord Intégré) */
        .btn-connect {
            margin-left: auto;
            margin-right: 20px;
            background: #5865F2;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .btn-connect a {
            color: white !important;
            font-weight: 600;
            padding: 10px 22px;
            display: block;
        }

        .btn-connect:hover {
            background: #4752C4;
            box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
            transform: translateY(-1px);
        }

        /* 4. Hero Section - Épurée et Impactante */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: calc(100vh - 75px); /* Prend toute la hauteur moins le header */
    padding: 0 20px;
    margin-top: 60px;
}

.hero-content {
    max-width: 900px;
}

.hero-content h3 {
    color: #5865F2;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content h2 {
    font-size: clamp(32px, 5vw, 64px);
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 20px;
    color: #b9bbbe;
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 500;
}

/* Bouton Hero - Correction du centrage et de la lueur */
.btn-hero {
    background: #5865F2;
    border: none;
    border-radius: 8px;
    padding: 0; /* Important : le padding va sur le lien <a> */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.25);
    display: inline-block; /* Permet au bouton de ne pas prendre toute la largeur */
}

.btn-hero a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 18px 48px; /* Zone de clic maximale et texte centré */
    font-size: 18px;
    font-weight: 700;
}

.btn-hero:hover {
    background-color: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.4);
}

.btn-hero:active {
    transform: translateY(0);
}
/* 5. Section Fonctionnalités Harmonisée */
.fonctionalite {
    padding: 120px 20px; /* Augmenté pour donner de l'air après le Hero */
    /* Utilisation du même fond que le Hero pour une continuité parfaite */
    background: radial-gradient(circle at center, #23272a 0%, #1a1c1e 100%); 
    position: relative;
}

/* Ajout d'une ligne de séparation subtile entre Hero et Fonctionnalités */
.fonctionalite::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}

.fonctionalite .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Grid adaptative : les cartes s'empilent proprement sur mobile */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Harmonisation des cartes avec le style Midnight Glass */
.feat-card {
    background: rgba(255, 255, 255, 0.02); /* Très translucide */
    padding: 40px;
    border-radius: 12px; /* Accordé aux boutons */
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.feat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(88, 101, 242, 0.4); /* Rappel du bleu Discord */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feat-card .icon {
    font-size: 32px;
    margin-bottom: 20px;
    /* Petit effet de lueur sur l'emoji */
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.2));
}

.feat-card h4 {
    color: #ffffff;
    font-size: 20px;
    margin: 0 0 15px 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feat-card p {
    color: #b9bbbe; /* Même gris que le paragraphe du Hero */
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* Harmonisation de la carte en développement */
.feat-card.beta {
    background: rgba(255, 255, 255, 0.01);
    border-style: dashed;
    opacity: 0.9;
}

.badge {
    background: #5865F2;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(88, 101, 242, 0.3);
}
/* 6. Section Appel à l'action (Updates) */
.cta-updates {
    padding: 100px 20px;
    text-align: center;
    /* On utilise un fond légèrement différent pour marquer la transition */
    background: linear-gradient(to bottom, #1a1c1e, #23272a);
}

.cta-content h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-content p {
    color: #b9bbbe;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* On réutilise la structure du bouton Hero mais on peut ajuster la lueur */
.btn-discord-cta {
    background: #5865F2;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.2);
}

.btn-discord-cta:hover {
    background: #4752C4;
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
    transform: translateY(-3px);
}
/* 7. Footer Styles */
.footer {
    background-color: #1a1c1e; /* Fond sombre cohérent */
    padding: 80px 20px 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Le logo prend plus de place */
    gap: 50px;
}

.footer-brand p {
    color: #96989d;
    line-height: 1.6;
    max-width: 300px;
    margin-top: 20px;
    font-size: 14px;
}

.footer-logo {
    width: 35px;
    filter: grayscale(0.5) opacity(0.8);
    transition: 0.3s;
}

.footer-logo:hover {
    filter: grayscale(0) opacity(1);
}

.footer h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #96989d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #5865F2; /* Rappel du bleu Discord */
}

/* Ligne finale des crédits */
.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.footer-bottom p {
    color: #4f545c;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Adaptabilité mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p {
        max-width: 100%;
    }
}
/* 8. Liens Légaux (Adaptation de la Navigation) */
.footer-legal-links {
    margin-top: 15px;
}

.footer-legal-links a {
    /* Reprise exacte de tes styles .navigation a */
    text-decoration: none;
    color: #96989d;
    font-weight: 500;
    transition: 0.3s;
    font-size: 13px; /* Légèrement plus petit pour le footer */
    margin: 0 10px;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* Séparateur visuel entre les liens si besoin */
.footer-legal-links span {
    color: #4f545c;
    user-select: none;
}
/* 6. Section Appel à l'action (Updates) - Harmonisée */
.cta-updates {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #1a1c1e, #23272a);
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

/* Le séparateur "ou" avec ses lignes */
.separator {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #4f545c;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.separator::before,
.separator::after {
    content: "";
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

/* Style spécifique pour le bouton Site (Journal de bord) */
.btn-site-cta {
    background: rgba(255, 255, 255, 0.03) !important; /* Fond presque invisible */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important; /* On retire la lueur bleue */
}

.btn-site-cta:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px);
}

/* Responsive pour mobile */
@media (max-width: 600px) {
    .cta-actions {
        flex-direction: column;
        gap: 20px;
    }
    .separator {
        width: 100%;
        justify-content: center;
    }
    .separator::before, .separator::after {
        flex: 1; /* Les lignes prennent toute la largeur disponible */
        max-width: 60px;
    }
}
