/* Base container */
.player-container {
    display: none;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Bottom player mode */
.player-bottom {
    bottom: 0;
    height: 100px;
    background: transparent;
}

/* Popup ad mode */
.player-popup {
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    bottom: auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#music-player-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}
