/* ========== 飞机大作战 - planewarGame.js ========== */

/* 飞机大作战游戏样式 */
#plane-game {
    max-width: 750px;
}

#plane-game .game-container {
    text-align: center;
}

#plane-canvas {
    display: block;
    margin: 20px auto;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
}

#plane-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.85);
    color: #00ff88;
    padding: 12px 30px;
    border-radius: 8px;
    position: relative;
    z-index: 10;
    border: 2px solid #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

#plane-message {
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
}

/* 飞机大作战游戏移动端样式 */
@media (max-width: 768px) {
    #plane-game {
        max-width: 100%;
    }
    
    #plane-canvas {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    #plane-stats {
        gap: 15px;
        font-size: 14px;
    }
}
