body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #001f3f; /* Dark blue background */
    font-family: 'Arial', sans-serif;
}

#gameCanvas {
    width: 100vw;
    height: 100vh;
}

#gameOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1); /* Fully opaque black background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#gameOverText {
    font-size: 72px;
    color: #8B0000; /* Dark red */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 10px;
    text-shadow: 2px 2px 4px #000000;
}