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

body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    overflow-x: hidden;
    background: #000;
    position: relative;
}

/* Arrière-plan dégradé */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72, #2a5298, #6a11cb);
    z-index: -2;
}

/* Effet cascade */
.cascade-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.cascade-effect div {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: cascade 5s infinite ease-in-out;
}

@keyframes cascade {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(200px, 100px);
    }
    50% {
        transform: translate(-100px, 200px);
    }
    75% {
        transform: translate(150px, -150px);
    }
}

/* Logo */
.logo {
    width: 50px;
    height: auto;
    margin-right: 15px;
    vertical-align: middle;
}

/* Bouton Discord */
.discord-button {
    display: inline-block;
    margin-top: 20px;
    margin-left: 20px;
    padding: 10px 20px;
    background: #7289DA;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.discord-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.discord-button:active {
    transform: scale(0.95);
}

/* En-tête */
header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff9f43, #ff6f61);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

/* Contenu principal */
main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #ff9f43;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

ol {
    padding-left: 20px;
}

ol li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Liens */
a {
    color: #7289DA;
    text-decoration: none;
}

a:hover {
    color: #99aaff;
    text-decoration: underline;
}

/* ✅ Responsive Design Mobile */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px 10px;
    }

    header h1 {
        font-size: 2rem;
        text-align: center;
    }

    .discord-button {
        margin: 15px 0 0 0;
        width: 90%;
        text-align: center;
        font-size: 1rem;
    }

    main {
        padding: 15px;
        width: 95%;
    }

    h2 {
        font-size: 1.5rem;
    }

    ol li {
        font-size: 1rem;
    }
}
