/* Основные стили липкого плеера */
.sticky-audio-player {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.sticky-audio-player input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.sticky-audio-player input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Анимация появления */
.sticky-audio-active {
    padding-bottom: 80px; /* Отступ для фиксированного плеера */
    transition: padding-bottom 0.3s ease;
}

/* Стили для кнопок запуска аудио */
.sticky-audio-trigger:hover {
    background: #667eea !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Адаптивность */
@media (max-width: 768px) {
    .sticky-audio-player {
        flex-wrap: wrap;
        padding: 10px !important;
    }
    
    .sticky-audio-player > div:nth-child(2) {
        order: 3;
        flex: 1 0 100%;
        margin: 10px 0 0 0 !important;
    }
    
    .sticky-audio-volume {
        display: none !important;
    }
    
    .sticky-audio-title {
        font-size: 12px !important;
    }
    
    .sticky-audio-time {
        font-size: 11px !important;
    }
}

/* Темная тема */
@media (prefers-color-scheme: dark) {
    .sticky-audio-trigger {
        background: #2d3748 !important;
        border-color: #667eea !important;
        color: #e2e8f0 !important;
    }
}
