/* Estilos específicos para el reproductor de radio */

.radio-player-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.radio-player-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.radio-player-container {
    width: 100%;
    max-width: 600px;
    background: rgb(0 0 0 / 15%);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 30px 10px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

/* Header */
.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.back-button:hover {
    opacity: 1;
}

.menu-button {
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.menu-button:hover {
    opacity: 1;
}

/* Logo de la radio */
.radio-logo-large {
    margin-bottom: 25px;
}

.radio-logo-large img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

/* Información de la radio */
.radio-info {
    margin-bottom: 30px;
}

.radio-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    text-transform: uppercase;
}

.radio-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 8px;
    line-height: 1.4;
}

.radio-status {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #4ade80;
}

.radio-location {
    font-size: 0.8rem;
    opacity: 0.6;
    font-weight: 400;
}

.radio-website {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 15px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.radio-website:hover {
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.radio-website svg {
    flex-shrink: 0;
}

/* Controles del reproductor */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.play-pause-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Indicadores de estado */
.status-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.indicator.active {
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

/* Control de volumen */
.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 80%;
    height: 10px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.volume-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 480px) {
    .radio-player-container {
        margin: 20px;
        padding: 25px 20px;
    }

    .radio-title {
        font-size: 1.3rem;
    }

    .radio-logo-large img {
        width: 100px;
        height: 100px;
    }

    .play-pause-btn {
        width: 70px;
        height: 70px;
    }

    .control-btn {
        width: 45px;
        height: 45px;
    }

    .volume-slider {
        width: 100px;
    }
}

/* Animaciones */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.indicator.active {
    animation: pulse 2s infinite;
}

/* Efectos adicionales */
.radio-player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 20px;
    pointer-events: none;
}