body {
    background-color: #0f0e17;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #fffffe;
    font-family: 'Press Start 2P', cursive, Arial; /* Retro font vibes */
}

.game-container {
    text-align: center;
    padding: 20px;
    border: 4px solid #ff8906;
    border-radius: 15px;
    background: #16161a;
    box-shadow: 0 0 30px rgba(255, 137, 6, 0.2);
}

#gameCanvas {
    background-color: #000;
    border: 2px solid #3da9fc;
    display: block;
    margin: 20px auto;
}

.stats {
    display: flex;
    justify-content: space-around;
    font-size: 1.2rem;
    color: #e53170;
    margin-bottom: 10px;
}

.hidden { display: none !important; }

#game-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(22, 22, 26, 0.95);
    padding: 30px;
    border: 3px solid #e53170;
    border-radius: 10px;
    z-index: 10;
}

#game-overlay button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    background: #3da9fc;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
}

#game-overlay button:hover {
    background: #ff8906;
}