/* (Existing CSS from previous response remains here...) */

body {
    display: flex;
    /* ... (rest of body styles) */
    font-family: 'Press Start 2P', cursive, monospace; 
    color: white;
}

#game-container {
    /* ... (rest of container styles) */
}

#game-screen {
    /* ... (rest of screen styles) */
}

/* Example styling for game elements */
.player {
    position: absolute;
    width: 32px;
    height: 32px;
    background-color: red; 
}

.platform {
    position: absolute;
    background-color: #555;
    border-top: 2px solid #999;
}

/* --- NEW STYLE FOR DISAPPEARING PLATFORM --- */
.disappearing-platform {
    position: absolute;
    background-color: rgba(255, 0, 0, 0.5); /* Semi-transparent red/fire to warn the player */
    border: 2px dashed yellow;
    transition: opacity 0.2s; /* Smooth disappearance */
}

.goal {
    position: absolute;
    width: 32px;
    height: 32px;
    background-color: green;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}