/* RESET GLOBAL pour éviter tout espace parasite */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
}
body {
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    background: #0a0026;
}

.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    opacity: 0.7;
    pointer-events: none;
}

header {
    background: rgba(10, 0, 38, 0.85);
    box-shadow: 0 2px 8px #0008;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1002;
    margin-top: 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    width: 100%;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffe066;
    text-shadow: 0 0 8px #ffb347, 0 0 16px #fff;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
nav a:hover {
    color: #ffe066;
}
nav a.active {
    color: #ff5e62 !important;
    text-shadow: 0 0 8px #ffb347, 0 0 16px #fff;
}

.hero {
    background: linear-gradient(120deg, rgba(127,83,172,0.7) 0%, rgba(255,94,98,0.5) 100%);
    box-shadow: 0 8px 32px #7f53ac44;
    margin-top: 2rem;
    padding: 4rem 2rem 3rem 2rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffe066;
    text-shadow: 0 0 16px #ffb347, 0 0 32px #fff;
}
.hero h1 span {
    color: #ff5e62;
    text-shadow: 0 0 16px #7f53ac, 0 0 32px #fff;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #fff;
}
.invite-btn, .discord-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(90deg, #ffb347, #ff5e62, #7f53ac);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    box-shadow: 0 0 16px #ffb34788, 0 0 32px #7f53ac44;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.invite-btn:hover, .discord-link:hover {
    transform: scale(1.07);
    box-shadow: 0 0 32px #ffb347cc, 0 0 64px #7f53ac88;
}

.section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
    background: rgba(20, 0, 50, 0.7);
    border-radius: 18px;
    box-shadow: 0 4px 32px #0006;
    text-align: center;
    margin-top: 5.5rem;
}
.features-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.feature-card {
    background: linear-gradient(120deg, #1a0033 60%, #7f53ac44 100%);
    border-radius: 16px;
    box-shadow: 0 2px 16px #7f53ac44;
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 260px;
    flex: 1 1 220px;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1rem;
}
.feature-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px #ff5e6288, 0 0 32px #7f53ac88;
}
.feature-card i {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    color: #ffe066;
    text-shadow: 0 0 8px #ffb347, 0 0 16px #fff;
}
.feature-card h3 {
    margin: 0.5rem 0 0.7rem 0;
    color: #ffb347;
}

.commands-list {
    margin-top: 2rem;
    overflow-x: auto;
}
.commands-list table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(10,0,38,0.7);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px #7f53ac44;
}
.commands-list th, .commands-list td {
    padding: 1rem 0.7rem;
    border-bottom: 1px solid #7f53ac44;
    color: #fff;
}
.commands-list th {
    background: #7f53ac;
    color: #ffe066;
    font-size: 1.1rem;
}
.commands-list tr:last-child td {
    border-bottom: none;
}
.commands-list tr:hover td {
    background: #ff5e6222;
}

.about-content {
    margin-top: 2rem;
}
.team-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.team-member {
    background: linear-gradient(120deg, #1a0033 60%, #7f53ac44 100%);
    border-radius: 14px;
    box-shadow: 0 2px 16px #7f53ac44;
    padding: 1.2rem 1rem;
    min-width: 160px;
    max-width: 200px;
    color: #fff;
    text-align: center;
}
.team-member .avatar {
    width: 60px;
    height: 60px;
    background: #7f53ac;
    border-radius: 50%;
    margin: 0 auto 0.7rem auto;
    box-shadow: 0 0 16px #ffb34788;
}
.team-member h4 {
    margin: 0.5rem 0 0.2rem 0;
    color: #ffe066;
}

footer {
    background: rgba(10, 0, 38, 0.95);
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
    box-shadow: 0 -2px 16px #7f53ac44;
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #ffe066;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ff5e62;
}
.footer-socials {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
}
.footer-socials a {
    color: #fff;
    font-size: 1.6rem;
    transition: color 0.2s;
}
.footer-socials a:hover {
    color: #ff5e62;
}
.footer-copyright {
    color: #fff;
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Footer 3 colonnes moderne */
.footer-columns {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    background: #444;
    color: #fff;
    padding: 2.5rem 1rem 1.2rem 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.footer-col {
    min-width: 180px;
    text-align: center;
}
.footer-col h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 0.7rem;
}
.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: #ffe066;
}

@media (max-width: 900px) {
    .features-list {
        flex-direction: column;
        align-items: center;
    }
    .team-list {
        flex-direction: column;
        align-items: center;
    }
    .footer-columns {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .footer-col {
        min-width: 0;
    }
    .burger {
        display: flex !important;
    }
    nav ul {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 70vw;
        max-width: 320px;
        height: 100vh;
        background: rgba(10,0,38,0.97);
        box-shadow: -2px 0 16px #0008;
        flex-direction: column;
        align-items: flex-start;
        padding: 4.5rem 2rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s cubic-bezier(.77,0,.18,1);
        z-index: 1001;
    }
    nav ul.open {
        right: 0;
    }
    nav ul li {
        width: 100%;
    }
    nav ul li a {
        font-size: 1.3rem;
        width: 100%;
        display: block;
        padding: 0.7rem 0;
    }
}
@media (max-width: 700px) {
    .stars-bg {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
    }
    nav {
        flex-direction: column;
        padding: 1rem 0.5rem;
    }
    .logo {
        font-size: 1.3rem;
    }
    nav ul {
        gap: 1rem;
    }
    .hero {
        padding: 2.5rem 1rem 2rem 1rem;
    }
    .top-banner {
        font-size: 0.95rem;
        padding: 0.5rem 0.2rem;
    }
    header {
        margin-top: 2.1rem;
    }
}

.top-banner {
    width: 100%;
    background: linear-gradient(90deg, #7f53ac 0%, #ff5e62 100%);
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.7rem 0.5rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 16px #7f53ac88;
    text-shadow: 0 0 8px #fff, 0 0 16px #ffb347;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.premium-badge {
    background: linear-gradient(90deg, #ffb347, #7f53ac);
    color: #fff;
    border-radius: 8px;
    padding: 2px 8px;
    font-size: 0.85em;
    font-weight: bold;
    margin-left: 6px;
    vertical-align: middle;
    box-shadow: 0 0 8px #ffb34788;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    position: absolute;
    right: 2rem;
    top: 1rem;
    padding: 0;
}
.burger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #ffe066;
    border-radius: 2px;
    transition: 0.3s;
} 