/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Background général */
body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    min-height: 100vh;
    padding: 40px;
}

/* Titres */
h1, h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Container central */
.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

/* Formulaire */
form {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    margin: auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

button {
    width: 100%;
    padding: 10px;
    background: #00c896;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #00a37a;
}





.carte:hover {
    transform: scale(1.05);
}

.carte h3 {
    margin-bottom: 10px;
}

.prix {
    font-weight: bold;
    color: #00ffae;
    margin: 10px 0;
}

.acheter-btn {
    display: inline-block;
    padding: 8px 12px;
    background: #ff9800;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.acheter-btn:hover {
    background: #e68900;
}

/* Liens */
a {
    color: #00ffae;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 20px;
}

a:hover {
    text-decoration: underline;
}

/* Budget */
.budget {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}


.info_joueur{
    display:flex;
    flex-direction:column;
    margin:50px auto;
    text-align:center;
    justify-content:center;
    align-items:center;
    border-radius:10px;
    background:#222;
    margin-bottom:50px;
    padding :10px;
    width:500px;
    font-weight:bold;
    font-size:20px;
    font-family:sans-serif;

}