body {
    margin: 0;
    padding: 0;
    background-color: #050515; /* Fond sombre de base */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    overflow: hidden; /* Empêche les barres de défilement */
}

#game-container {
    position: relative; /* Pour positionner les overlays */
    border: 2px solid #333; /* Bordure autour du canvas */
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.3); /* Légère lueur */
}

canvas {
    display: block; /* Empêche l'espace blanc en dessous */
    background-color: #1a1a2a; /* Couleur de fond initiale du canvas si le dégradé ne charge pas */
}

#ui-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* Permet de cliquer "à travers" */
    font-size: 1.2em;
    text-shadow: 1px 1px 2px black;
}

#effect-status {
    text-align: center;
    font-weight: bold;
    min-width: 200px; /* Pour éviter les sauts de layout */
}

#game-over-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fond sombre semi-transparent */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

#game-over-screen h1 {
    color: #ff3333;
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px black;
}

#game-over-screen p {
    font-size: 1.2em;
    margin-top: 30px;
}

#final-score {
    font-size: 1.5em;
}