body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: transparent; /* Establece el fondo del contenedor como transparente */
    color: #333;
}

.radio-player {
    text-align: center;
    background-color: #f5f5f5; /* Color de fondo pastel */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 350px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.radio-player:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #555;
}

.metadata {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#albumCover {
    width: 100px; /* Tamaño reducido para un look más elegante */
    height: 100px;
    border-radius: 50%; /* Redondear las esquinas */
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#trackInfo {
    text-align: center;
}

#trackTitle, #trackArtist {
    margin: 0;
    font-size: 1.2em;
    color: #777;
}

.controls {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.control-button {
    background-color: #F02525; /* Color verde para los botones */
    color: white;
    border: none;
    padding: 10px 15px; /* Tamaño reducido para un look más elegante */
    border-radius: 50%; /* Redondear las esquinas */
    margin: 5px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s, transform 0.3s;
}

.control-button:hover {
    background-color: #258EF0; /* Color más oscuro en hover */
    transform: translateY(-3px);
}

.control-button:active {
    transform: translateY(0);
}

.control-button.live::after {
    content: 'En Vivo';
    color: red;
    font-size: 12px;
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #fff;
    padding: 2px 6px;
    border-radius: 5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.control-button i {
    font-size: 1.5em;
}
