.radio-player-horizontal {
    background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
    border-radius: 12px;
    padding: 15px;
    margin: 0 0 20px 0;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid #404040;
}

.player-main-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.control-btn {
    background: #555;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: #666;
    transform: scale(1.05);
}

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

.station-info {
    flex: 1;
    min-width: 150px;
}

.current-station {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-status {
    font-size: 11px;
    color: #aaa;
    white-space: nowrap;
}

.station-select {
    background: #444;
    border: 1px solid #666;
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    min-width: 180px;
    height: 45px;
    cursor: pointer;
}

.station-select:focus {
    outline: none;
    border-color: #007cba;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #444;
    padding: 8px 12px;
    border-radius: 8px;
    height: 45px;
}

.volume-slider {
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: #666;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #007cba;
    cursor: pointer;
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    background: #009cda;
    transform: scale(1.1);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #007cba;
    cursor: pointer;
    border: none;
}

.station-image {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .player-main-controls {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .station-info {
        min-width: 120px;
        order: 3;
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .station-select {
        min-width: 140px;
        flex: 1;
    }
    
    .volume-control {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .radio-player-horizontal {
        padding: 12px;
    }
    
    .player-main-controls {
        gap: 8px;
    }
    
    .control-btn {
        padding: 8px 12px;
        min-width: 40px;
        height: 40px;
    }
    
    .station-select {
        min-width: 120px;
        font-size: 12px;
        padding: 8px 10px;
        height: 40px;
    }
    
    .volume-control {
        height: 40px;
        padding: 6px 10px;
    }
    
    .volume-slider {
        width: 60px;
    }
}