/* Styles généraux */
body {
    font-family: 'Georgia', serif;
    --background: url('https://i.imgur.com/2XJcAvo.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    color: #f5e0c3;
}

.game-container {
    text-align: center;
    width: 80%;
    background: rgba(0, 0, 0, 0.8); /* Fond sombre avec opacité */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
    margin: 30px auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f9d371; /* Couleur dorée */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

#choices button {
    font-size: 1rem;
    padding: 10px 20px;
    margin: 10px;
    border: 2px solid #f9d371;
    background: #6b4226;
    color: #f5e0c3;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s, color 0.3s;
    font-family: 'Georgia', serif;
}

#choices button:hover {
    background: #f9d371;
    color: #6b4226;
    transform: scale(1.1);
}

#choices button:active {
    transform: scale(1.05);
    background: #d1b25b;
}

#mapCanvas {
visibility:hidden;
    display: block;
    margin: 20px auto;
    border: 3px solid #f9d371;
    --background: url('https://i.imgur.com/V9Vb8Zs.png') repeat; 
    background-size: cover;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

