@charset "ISO-8859-1";

body {
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #FFF;
    overflow: hidden;
}

#canvas_holder {
    position: relative;
    width: 600px; 
    height: 400px; 
    margin: 20px auto;
}

#canvas {
    display: block;
    background: #000;
    border: 2px solid #333;
}

#menuJeu, #finJeu {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#menuJeu { background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); }
#finJeu { background: rgba(0,0,0,0.5); display: none; }

#menuContenu, #finContenu {
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px 40px; /* Réduit */
    border-radius: 15px;
    border: 2px solid #e67e22;
}

.titreJeu {
    font-size: 30px; 
    margin: 0;
    color: #e67e22;
}

.realisePar {
    font-size: 14px; 
    color: #bdc3c7;
    margin-bottom: 20px;
}

#boiteDialogue {
    display: none;
    position: absolute; 
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 15px;
    border: 2px solid #fff;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    z-index: 1000;
}

#texteDialogue {
    font-size: 16px; 
    line-height: 1.2;
}

button {
    padding: 10px 25px; 
    font-size: 18px; 
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    background: #e67e22;
    color: white;
    border: none;
}
