.arr-player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #1a1a2e;
    color: #ffffff;
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    direction: rtl;
    transition: transform 0.3s ease;
    border-top: 2px solid #e94560;
}

.arr-player-container.arr-player-hidden {
    transform: translateY(100%);
}

.arr-player-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.arr-btn {
    background: #e94560;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.arr-btn:hover {
    background: #ff5c80;
    transform: scale(1.08);
}

.arr-btn:active {
    transform: scale(0.95);
}

.arr-btn-play {
    width: 52px;
    height: 52px;
    font-size: 20px;
    background: #e94560;
}

.arr-btn-stop {
    background: #533483;
}

.arr-btn-stop:hover {
    background: #6d3fa8;
}

.arr-btn-close {
    width: 32px;
    height: 32px;
    font-size: 13px;
    background: #333;
    border-radius: 50%;
}

.arr-btn-close:hover {
    background: #555;
}

.arr-icon {
    line-height: 1;
}

.arr-speed-control {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #16213e;
    border-radius: 30px;
    padding: 3px 8px;
}

.arr-btn-speed {
    width: 30px;
    height: 30px;
    font-size: 15px;
    background: #0f3460;
    border-radius: 50%;
}

.arr-btn-speed:hover {
    background: #1b4d8f;
}

.arr-speed-display {
    min-width: 36px;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    color: #e94560;
}

.arr-progress-container {
    flex: 1;
    min-width: 160px;
    height: 6px;
    background: #16213e;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.arr-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #e94560, #ff5c80);
    border-radius: 3px;
    transition: width 0.3s linear;
}

.arr-status {
    font-size: 12px;
    color: #a0a0c0;
    min-width: 70px;
    text-align: center;
    white-space: nowrap;
}

.arr-selected-text {
    background: #e94560;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.arr-selected-text:hover {
    background: #ff5c80;
}

@media (max-width: 768px) {
    .arr-player-inner {
        gap: 6px;
    }
    .arr-progress-container {
        min-width: 100px;
    }
    .arr-status {
        min-width: 50px;
        font-size: 11px;
    }
    .arr-btn-play {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .arr-player-container {
        padding: 10px 12px;
    }
    .arr-progress-container {
        display: none;
    }
    .arr-speed-control {
        padding: 2px 5px;
    }
    .arr-btn-speed {
        width: 26px;
        height: 26px;
    }
    .arr-speed-display {
        min-width: 28px;
        font-size: 12px;
    }
}