/* Game-specific styles for Plane War */
.game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100dvh - 90px);
    padding: var(--space-md);
}

#gameCanvas {
    background: #0a0a18;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    touch-action: none;
}
