/* Nanourismata player - keep poster visible during audio playback */

/* Ensure the poster image remains visible even when audio is playing.
   The FWDUVP plugin hides the poster via inline transforms/positioning.
   These rules force it to stay visible. */
.fwduvp-poster,
[class*="FWDUVPPoster"],
[class*="fwduvp"] [class*="poster"] {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translate(0, 0) !important;
}

/* Fallback: if poster image is hidden */
[id*="fwduvp"] img[src*="illustration-moon-stars-video-player"] {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Also hide any canvas visualizer if present */
[id*="fwduvp"] canvas {
    display: none !important;
}

/* Set moon image as background on the audio screen area as additional fallback */
[id*="fwduvp"] > div > div:first-child {
    background-image: url('https://frezyland.gr/wp-content/themes/frezyland/images/illustration-moon-stars-video-player.png') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #000 !important;
}
