* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radio-player-container {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0.5);
    text-align: center;
    width: 90%;
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.player-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.play-btn {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 20px auto;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37, 117, 252, 0.4);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 117, 252, 0.6);
}

.play-btn:active {
    transform: scale(0.98);
}

.controls-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
}

.volume-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
}

.volume-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.volume-slider-container {
    flex: 1;
    max-width: 200px;
}

.volume-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2575fc;
    cursor: pointer;
    box-shadow: 0 5px rgba(0, 0, 0, 0.3);
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2575fc;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0.3);
}

.status-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.status-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.playing .status-dot {
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
}

.muted .status-dot {
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
}

.status-text {
    font-size: 0.8rem;
    color: #aaa;
}

.hidden {
    display: none;
}

/* Адаптивный дизайн */
@media (max-width: 600px) {
    .radio-player-container {
        width: 95%;
        padding: 20px;
    }

    .player-title {
        font-size: 1.5rem;
    }

    .play-btn {
        width: 100px;
        height: 100px;
    }

    .controls-container {
        flex-direction: column;
        gap: 15px;
    }

    .volume-slider-container {
        max-width: 100%;
    }
}