body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1f1c2c, #928dab); /* Fondo moderno con degradado */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.radio-container {
    background: rgba(255, 255, 255, 0.1); /* Contenedor semitransparente */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Sombra para profundidad */
    max-width: 900px;
    width: 100%;
    backdrop-filter: blur(10px); /* Efecto de desenfoque moderno */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1, h2 {
    text-align: center;
    color: #f0f0f0;
    margin-bottom: 20px;
}

hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 30px 0;
}

/* Diseño de la Emisora Actual */
.current-station {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    gap: 25px;
}

.station-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff5722; /* Detalle de color */
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.6);
    transition: transform 0.3s ease;
}

.station-logo:hover {
    transform: scale(1.05);
}

.station-info {
    flex-grow: 1;
}

#currentName {
    margin: 0;
    font-size: 1.8em;
    color: #ffcc00; /* Color llamativo */
}

#currentSlogan {
    margin: 5px 0 15px;
    font-style: italic;
    color: #ccc;
}

.controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Botón de Reproducir/Pausa */
.control-btn {
    background: #ff5722;
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
}

.control-btn:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

/* Control de Volumen */
.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

#volumeSlider {
    width: 120px;
    cursor: pointer;
    accent-color: #ff5722;
}

/* Lista de Emisoras (Botones) */
.stations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsivo con columnas flexibles */
    gap: 15px;
    margin-top: 20px;
}

.station-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 15px 10px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.station-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff5722;
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.4);
}

.station-btn img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 8px;
    object-fit: cover;
}

.station-btn span {
    font-weight: bold;
    font-size: 0.9em;
}

/* Media query para dispositivos más pequeños */
@media (max-width: 600px) {
    .radio-container {
        padding: 20px;
    }
    .current-station {
        flex-direction: column;
        text-align: center;
    }
    .controls {
        justify-content: center;
    }
    .station-logo {
        margin-bottom: 10px;
    }
}