/* Radio Player Styles */
.radio-player-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.radio-player-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3131, #b30000);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.radio-player-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.radio-player-button i {
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    opacity: 0;
}

.radio-player-button.playing i {
    opacity: 1;
    transform: scale(0.8);
}

.beatzz-logo {
    background-image: url('../img/beatzz_logo.png');
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}

.radio-player-iframe {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    height: 160px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: scale(0);
    opacity: 0;
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.radio-player-iframe.active {
    transform: scale(1);
    opacity: 1;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .radio-player-container {
        bottom: 20px;
        right: 20px;
    }
    
    .radio-player-button {
        width: 50px;
        height: 50px;
    }
    
    .radio-player-button i {
        font-size: 20px;
    }
    
    .radio-player-iframe {
        width: 280px;
        height: 140px;
        right: 0;
        bottom: 60px;
    }
}
