
.update-card {
    background: rgba(114,137,218,0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border: 2px solid rgba(114,137,218,0.2);
}

.update-card.latest {
    background: linear-gradient(135deg, rgba(114,137,218,0.2), rgba(72,87,153,0.3));
    border-color: var(--primary);
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.update-tag {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.update-content ul {
    list-style: none;
    padding-left: 1rem;
}

.update-content li {
    margin: 0.5rem 0;
    position: relative;
}

.update-content li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

:root {
    --primary: #7289da;
    --secondary: #2c2f33;
    --accent: #99aab5;
    --background: #23272a;
    --success: #43b581;
    --danger: #f04747;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: var(--background);
    overflow-x: hidden;
}

nav {
    background: linear-gradient(45deg, #7289da, #4e5d94);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    transform: scale(1);
    transition: transform 0.3s ease;
}

nav h1:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

nav ul li a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: linear-gradient(45deg, #7289da, #4e5d94);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a:hover {
    background: rgba(255,255,255,0.2);
}

.dropbtn {
    cursor: pointer;
}

section {
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#accueil {
    background: linear-gradient(135deg, var(--background), var(--secondary));
    position: relative;
    overflow: hidden;
}

#accueil::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('https://cdn.discordapp.com/attachments/874694285663023214/1297666145322537050/L_anneau.jpg') center/cover;
    opacity: 0.1;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    animation: pulse 2s infinite;
    cursor: pointer;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: var(--primary);
    background: rgba(114,137,218,0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: rotate(360deg);
    color: #fff;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(114,137,218,0.5); }
    50% { text-shadow: 0 0 40px rgba(114,137,218,0.8); }
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight-command {
    background: rgba(114,137,218,0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid var(--primary);
    margin-top: 1rem;
    animation: glow 2s infinite;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px var(--primary); }
    50% { box-shadow: 0 0 20px var(--primary); }
    100% { box-shadow: 0 0 5px var(--primary); }
}

.hero-description ul {
    text-align: left;
    margin: 1.5rem 0;
    list-style-position: inside;
}

.hero-description li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button, .donate-button {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button {
    background: var(--primary);
    color: white;
}

.donate-button {
    background: var(--success);
    color: white;
}

.cta-button:hover, .donate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.command-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.command-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: var(--primary);
}

.command-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    margin: 0.5rem 0;
}

.command-name {
    color: var(--primary);
    font-size: 1.1rem;
}

.command-description {
    color: var(--accent);
}

footer {
    background: var(--secondary);
    color: var(--accent);
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    nav {
        padding: 0.5rem 0;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    nav h1 {
        font-size: 1.5rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    nav ul li a {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        padding: 0.5rem 0;
    }

    .feature-card {
        margin: 0.5rem;
        padding: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .cta-button, .donate-button {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    section {
        padding: 4rem 1rem;
    }

    .stat-card {
        width: 100%;
        margin: 0.5rem;
    }

    .hero h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero-description {
        padding: 0 1rem;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 1rem;
    }

    .feature-card {
        margin: 0.5rem;
        padding: 1rem;
    }

    .stat-card {
        min-width: 280px;
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    section {
        padding: 4rem 1rem;
    }

    .command-card {
        margin: 0.5rem;
        padding: 1rem;
    }
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 2rem auto;
}

.stat-card {
    background: linear-gradient(135deg, rgba(114,137,218,0.1), rgba(72,87,153,0.2));
    border-radius: 20px;
    padding: 2rem;
    min-width: 300px;
    text-align: center;
    border: 2px solid rgba(114,137,218,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.stat-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stat-card p, .stat-card li {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin: 0.5rem 0;
}

.stat-card ul {
    list-style: none;
    padding: 0;
}

.stat-card li {
    font-size: 1rem;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #7289da, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: numberPulse 2s infinite;
}

@keyframes numberPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}