/* Réinitialisation basique */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fb;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.flemme {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

img {
    border-radius: 0%;
    margin-bottom: 20px;
}

select, button {
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: all 0.3s ease;
}

select:focus, button:focus {
    outline: none;
    border-color: #4a90e2;
}

select {
    width: 200px;
}

button {
    background-color: #4a90e2;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #357ab7;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Style du mode Speedrun */
.speedrun-btn {
    background-color: #e94e77;
    color: white;
    font-size: 1rem;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.speedrun-btn:hover {
    background-color: #c53d62;
}

.speedrun-btn:disabled {
    background-color: #d7d7d7;
    cursor: not-allowed;
}

/* Mise en page responsive */
@media (max-width: 600px) {
    .flemme {
        flex-direction: column;
        gap: 10px;
    }

    select {
        width: 100%;
    }
}
