/* radio.css */
.radio-container {
    font-family: Ubuntu, sans-serif;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.radio-image-container {
    position: relative;
    width: 400px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
}

.radio-player {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
    display: flex;
    gap: 15px;
}

.radio-title { margin: 0 0 20px 0; }

.radio-button {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5em;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: inherit;
    line-height: 1;
}

.radio-button:hover { 
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
