#sticky-radio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(227, 227, 227, 0.5);
}

.player-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.player-info {
    display: flex;
    align-items: center;
}

.player-artwork {
    width: 200px;
    height: 100px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 5px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-artwork img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.player-details {
    color: #333;
}

.station-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.track-title {
    font-size: 14px;
    color: #666;
}

.player-controls {
    display: flex;
    align-items: center;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 1;
}

@media (min-width: 769px) {
    .player-container {
        position: relative;
    }
    
    .player-details {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
}

@media (max-width: 768px) {
    #sticky-radio-player {
        padding: 5px 10px;
    }
    
    .player-details {
        max-width: 150px;
    }
    
    .player-container {
        justify-content: space-between;
    }
    
    .player-info {
        align-items: center;
    }
    
    .player-artwork {
        width: 150px;
        height: 75px;
        margin-right: 25px;
        margin-bottom: 0;
    }
    
    .station-name {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .track-title {
        font-size: 12px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
}

.player-embed {
    position: absolute;
    bottom: -9999px;
    visibility: hidden;
} 