* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    background-color: #0a0a0a;
    line-height: 1.6;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px;
    background-color: #1a1a1a;
}

.logo img {
    height: 67px;
    width: 80px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #9a7445;
}

.btn-jouer {
    background-color: #c3a26f;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-jouer a {
    color: white;
    text-decoration: none;
}

.btn-jouer:hover {
    background-color: #9a7445;
}

.account-section {
    min-height: calc(100vh - 97px - 40px); /* Ajuste selon la taille exacte de ton header/footer */
    background-image: url('/New_IMG/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.account-container h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.account-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-telecharger {
    background-color: #c3a26f;
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-telecharger a {
    color: white;
    text-decoration: none;
}

.btn-telecharger:hover {
    background-color: #9a7445;
}

.features {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 50px 20px;
    background-color: #121212;
}

.feature {
    max-width: 300px;
    text-align: center;
    color: white;
}

.feature h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff4655;
}

.feature p {
    font-size: 1rem;
}

.account-section{
    text-items: center;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    text-align: center;
}

.form-container h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
}

input {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: white;
}

button {
    padding: 10px;
    font-size: 1rem;
    background-color: #c3a26f;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #9a7445;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    font-size: 0.9rem;
}