/* Utilisation de la police Roboto */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #2a0845, #6441a5);
    color: #f0f0f0;
    transition: background 0.5s ease, color 0.5s ease;
}

/* Dark theme */
body.dark {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #f0f0f0;
}

/* Style du header */
header {
    background: linear-gradient(135deg, #4e1f5b, #2980b9);
    color: #f0f0f0;
    padding: 3em 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.5s ease;
    position: relative;
}

header h1 {
    margin: 0;
    font-size: 3em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header p {
    margin: 0.5em 0 0;
    font-size: 1.5em;
    color: #f0f0f0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header .bot-profile {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: 1em;
}

header .invite-link {
    display: inline-block;
    margin-top: 1em;
    padding: 0.5em 1em;
    font-size: 1.2em;
    color: #ffffff;
    background: #8e44ad;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

header .invite-link:hover {
    background: #5e3370;
}

/* Style de la navigation */
nav {
    background: #2c3e50;
    padding: 1em 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 1em;
}

nav a {
    text-decoration: none;
    color: #f0f0f0;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #1abc9c;
}

#theme-toggle {
    background: #8e44ad;
    color: #fff;
    border: none;
    padding: 0.5em 1em;
    margin-left: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

#theme-toggle:hover {
    background: #5e3370;
}

/* Style du contenu principal */
main {
    padding: 2em;
}

main h2 {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.commands-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.command {
    background: #34495e;
    border-radius: 8px;
    padding: 1em;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.command h3 {
    margin: 0;
    font-size: 1.5em;
    color: #1abc9c;
}

.command p {
    margin: 0.5em 0 0;
    font-size: 1em;
    color: #ecf0f1;
}

.command:hover {
    background: #2c3e50;
}

.doc-item {
    background: #34495e;
    border-radius: 8px;
    padding: 1em;
    margin-bottom: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.doc-item h3 {
    margin: 0;
    font-size: 1.5em;
    color: #1abc9c;
}

.doc-item p {
    margin: 0.5em 0 0;
    font-size: 1em;
    color: #ecf0f1;
}

.doc-item:hover {
    background: #2c3e50;
}

/* Style du footer */
footer {
    background: #2c3e50;
    color: #f0f0f0;
    padding: 2em 0;
    text-align: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
}

footer h2 {
    margin: 0 0 1em;
    font-size: 2em;
    color: #1abc9c;
}

footer p {
    margin: 0.5em 0;
    font-size: 1em;
    color: #ecf0f1;
}

footer a {
    color: #1abc9c;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #16a085;
}

.social-icons {
    margin-top: 1em;
}

.social-icon {
    margin: 0 0.5em;
    font-size: 1.5em;
    color: #1abc9c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #16a085;
}

/* Support Chat */
.chat-container {
    display: flex;
    justify-content: center;
    margin-top: 2em;
    padding: 2em;
    background: #34495e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px #1abc9c, 0 0 10px #1abc9c, 0 0 15px #1abc9c, 0 0 20px #1abc9c, 0 0 25px #1abc9c;
    }
    50% {
        box-shadow: 0 0 20px #1abc9c, 0 0 30px #1abc9c, 0 0 40px #1abc9c, 0 0 50px #1abc9c, 0 0 60px #1abc9c;
    }
    100% {
        box-shadow: 0 0 5px #1abc9c, 0 0 10px #1abc9c, 0 0 15px #1abc9c, 0 0 20px #1abc9c, 0 0 25px #1abc9c;
    }
}

.invite-link {
    animation: glow 2s infinite alternate;
}

.chat {
    background: #8e44ad;
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 5px;
    margin-top: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}