/* NM Ocean Voyage v4.1 */
.nm-ocean-wrapper {
    position: relative; 
    width: 100%;
    aspect-ratio: 16 / 9; /* Możesz to zmienić lub ustawić wysokość na sztywno */
    overflow: hidden; 
    background: #000;
}

.nm-ocean-wrapper.nm-ocean-has-boat {
    cursor: none;
}

/* Warstwa statyczna pod spodem */
.nm-ocean-static-bg,
.nm-ocean-effect-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.nm-ocean-static-bg {
    z-index: 1;
}

.nm-ocean-effect-layer {
    z-index: 2;
    /* Maska wycina TYLKO warstwę z falami */
    -webkit-mask-image: var(--nm-mask);
    mask-image: var(--nm-mask);
    -webkit-mask-size: cover;
    mask-size: cover;
}

.nm-ocean-boat {
    position: fixed; 
    top: 0;
    left: 0;
    width: 64px; 
    height: 64px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none; 
    z-index: 9999;
    transform: translate(-200px, -200px);
}