.radio-container {
    padding: 20px;
    background: linear-gradient(135deg, #f0f9f0 0%, #fff9e6 100%);
    min-height: 30vh;
}

.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.header-section h1 {
    color: #2c5282;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header-line {
    height: 4px;
    width: 100px;
    background-color: #ecc94b;
    margin: 0 auto;
}

.player-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.player-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.player-title i {
    color: #22c55e;
    font-size: 24px;
    margin-right: 10px;
}

.player-title h2 {
    color: #166534;
    font-size: 1.5rem;
    margin: 0;
}

.audio-player {
    background: #f0fdf4;
    padding: 15px;
    border-radius: 8px;
}

.audio-player audio {
    width: 100%;
    height: 50px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.info-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 15px;
    color: white;
}

.green-header {
    background-color: #22c55e;
}

.yellow-header {
    background-color: #eab308;
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.card-body {
    padding: 15px;
}

.card-body img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card-body img:hover {
    transform: scale(1.02);
}

/* Estilos para el reproductor de audio */
audio {
    transition: all 0.3s ease;
}

audio:hover, 
audio:focus, 
audio:active {
    transform: scale(1.02);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
