body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #1e1e2f;
    color: #f0f0f0;
    text-align: center;
    padding: 2rem;
}

h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #2e2e3e;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    background-color: #3a3a4f;
}

.card i {
    font-size: 2rem;
    width: 2.5rem;
    text-align: center;
    color: #888;
}

.card-content h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.card-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #bbb;
}

/* Lien désactivé */
.card.disabled {
    background-color: #444;
    color: #888;
    pointer-events: none;
    cursor: not-allowed;
    position: relative;
}

.card.disabled::after {
    content: "Bientôt dispo";
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.75rem;
    color: #aaa;
}
.wiki-link {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 3rem auto 0 auto;
    background-color: #3a3255;
    border: 2px solid #a86ff2;
    box-shadow: 0 0 12px rgba(168, 111, 242, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.wiki-link:hover {
    transform: scale(1.03);
    background-color: #4c3b6f;
    box-shadow: 0 0 18px rgba(168, 111, 242, 0.6);
}

.wiki-link i {
    font-size: 2.2rem;
    color: #d4b3ff;
}

.wiki-link .card-content h2 {
    font-size: 1.6rem;
    color: #fff;
}

.wiki-link .card-content p {
    color: #d5c6f9;
}
details.config-section {
    max-width: 1200px;
    margin: 3rem auto;
    text-align: left;
    background-color: #262636;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

details.config-section summary {
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    color: #a4c0ff;
    margin-bottom: 1rem;
    text-align: center; /* Centrage horizontal */
}

details.config-section[open] summary {
    margin-bottom: 1.5rem;
}

.config-grid {
    padding-top: 0.5rem;
    border-top: 1px solid #444;
}
.discord-link {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 3rem auto;
    background-color: #5865F2;
    border: 2px solid #7885f8;
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.discord-link:hover {
    transform: scale(1.03);
    box-shadow: 0 0 16px rgba(88, 101, 242, 0.8);
}

.discord-link i {
    font-size: 2.2rem;
    color: #ffffff;
}

.discord-link .card-content h2 {
    font-size: 1.5rem;
    color: #ffffff;
}

.discord-link .card-content p {
    color: #dbe0ff;
}
