/* Радио-плеер в верхней панели */
.radio-player-top {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 40px;
}

.radio-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.radio-btn {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    color: #333;
}

.radio-btn:hover {
    background: #e74c3c;
    color: #fff;
    transform: scale(1.05);
}

.radio-station-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: #e74c3c;
    min-width: 70px;
}

#radio-volume {
    width: 70px;
    height: 3px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .radio-player-top {
        justify-content: center;
    }
}

/* Тёмная тема */
body.dark-theme .radio-player-top {
    background: #1a1a2e;
}

body.dark-theme .radio-btn {
    color: #fff;
}

body.dark-theme .radio-station-name {
    color: #e74c3c;
}
