.mobile-controls {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    justify-content: space-between;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .mobile-controls {
        display: flex;
    }
}

.movement-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.middle-row {
    display: flex;
    gap: 60px;
}

.action-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #FFC107;
    border-radius: 50%;
    background: rgba(107, 63, 160, 0.8);
    color: #FFC107;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
}

.control-btn:active {
    background: rgba(255, 193, 7, 0.3);
    transform: scale(0.95);
}

.move-btn {
    font-size: 24px;
}

.action-btn {
    font-size: 18px;
}