#game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#sketch-holder {
    width: 360px;
    height: 480px;
    z-index: 1; /* Above smoke */
    position: relative; /* Ensure consistent positioning */
    overflow: hidden; /* Prevent content overflow */
    flex: 0 0 360px; /* Ensures it doesn’t shrink or grow */
}

#score-display {
    margin-left: 20px;
    font-size: 1.5rem;
    width: 100px; /* Fixed width to prevent layout shifts */
    text-align: left; /* Keeps score text aligned consistently */
}