#game-screen {
    /* Override .screen centering for game view */
    align-items: stretch !important;
    justify-content: flex-start !important;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* HUD - Top Section */
#hud {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
}

#player-counter {
    font-size: 1.1em;
    font-weight: bold;
}

#alive-count {
    color: #ffd700;
    font-size: 1.3em;
}

#my-score {
    font-size: 1em;
}

#score-value {
    color: #ffd700;
    font-weight: bold;
}

/* Game Canvas - Middle Section */
#game-container {
    flex: 1 1 auto;
    position: relative;
    overflow: hidden;
    background: #0d0d1a;
    width: 100%;
    min-height: 0; /* Important for flex children */
}

#game-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Arena Visual Elements (drawn on canvas) */
/*
- Safe zone: Green circle with gradient
- Danger zone: Red/orange gradient outside safe zone
- Grid: Subtle background grid for movement reference
- Players: Colored circles with initials
- Leader crown: Golden crown emoji above leader
*/
