
/* Mini kumanda devre dışı - tüm cihazlarda gizli */
.mobile-kumanda-btn,
.mobile-kumanda-panel { display: none !important; }
.mobile-kumanda-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 2px solid rgba(255,200,50,0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4), 0 0 20px rgba(255,200,50,0.2);
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mobile-kumanda-btn:hover,
.mobile-kumanda-btn:active {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 30px rgba(255,200,50,0.4);
}
.mobile-kumanda-btn svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #ffc832;
    stroke-width: 2;
}
.mobile-kumanda-panel {
    position: fixed;
    bottom: 80px;
    left: 20px;
    width: 200px;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border: 1px solid rgba(255,200,50,0.3);
    border-radius: 16px;
    padding: 16px;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    display: none;
}
.mobile-kumanda-panel.show { display: block; }
.mobile-kumanda-panel .mk-title {
    color: #ffc832;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-kumanda-panel .mk-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.15s, background 0.2s;
}
.mobile-kumanda-panel .mk-btn:active { transform: scale(0.96); }
.mobile-kumanda-panel .mk-import { background: linear-gradient(145deg, #2196f3, #1976d2); color: #fff; }
.mobile-kumanda-panel .mk-export { background: linear-gradient(145deg, #4caf50, #388e3c); color: #fff; }
.mobile-kumanda-panel .mk-reset { background: linear-gradient(145deg, #f44336, #c62828); color: #fff; margin-top: 8px; font-size: 11px; }
