/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */
body{
    font-family:'Segoe UI',sans-serif;
    background:linear-gradient(135deg,#eef2f7,#dfe9f3);
    color:#333;
}

/* CONTAINER */
.container{
    max-width:1000px;
    margin:auto;
    padding:40px 20px;
}

/* SECTIONS */
section{
    position:relative;
    background:white;
    padding:30px;
    margin-bottom:30px;
    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    transition:0.4s;

    animation:fadeUp 0.6s ease;
}

/* BARRE COLORÉE */
section::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:6px;
    background:linear-gradient(#F422AB,#4CAF50);
    border-radius:20px 0 0 20px;
}

/* HOVER */
section:hover{
    transform:translateY(-8px) scale(1.01);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* TITRES */
h2{
    margin-bottom:15px;
    font-size:22px;

    background:linear-gradient(135deg,#F422AB,#4CAF50);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */
p{
    margin-bottom:15px;
    line-height:1.7;
    color:#555;
}

/* LISTES */
ul{
    margin-left:20px;
    margin-top:10px;
}

li{
    margin-bottom:10px;
}

/* LISTE CUSTOM */
.club-meaning li{
    list-style:none;
    position:relative;
    padding-left:22px;
}

.club-meaning li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#4CAF50;
    font-weight:bold;
}

/* TEXTE FINAL */
.club-info strong{
    display:block;
    margin-top:25px;
    padding:15px;

    background:linear-gradient(135deg,#ff5252,#ff1744);
    color:white;

    border-radius:12px;
    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,0.2);

    animation:pulse 2s infinite;
}

/* ANIMATIONS */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.03);}
    100%{transform:scale(1);}
}

/* RESPONSIVE */
@media(max-width:700px){

    .container{
        padding:20px 10px;
    }

    section{
        padding:20px;
    }

    h2{
        font-size:18px;
    }
}