/* =========================================================
   AquaShadow72 v2.0 – Stylesheet
   ========================================================= */

/* ---------- Widget wrap ---------- */
.aq72-canvas-wrap {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    cursor: none;
    border-radius: 4px;
    -webkit-user-select: none;
    user-select: none;
    background: #041424;
}

.aq72-canvas,
.aq72-canvas-next {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.aq72-canvas-next {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0ms linear; /* controlled by JS */
}

.aq72-canvas-wrap.aq72-no-oar {
    cursor: pointer;
}

/* ---------- Oar cursor ---------- */
.aq72-cursor-oar {
    position: fixed;
    pointer-events: none;
    font-size: 28px;
    transform: translate(-50%, -50%) rotate(-30deg);
    z-index: 9999;
    transition: transform .08s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.45));
    display: none;
}

/* ---------- Bubbles ---------- */
.aq72-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.aq72-bubble {
    position: absolute;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
        rgba(255,255,255,.55) 0%,
        rgba(100,200,255,.18) 60%,
        transparent 100%);
    border: 1px solid rgba(255,255,255,.25);
    animation: aq72-rise linear infinite;
    will-change: transform, opacity;
}

@keyframes aq72-rise {
    0%   { transform: translateY(0)   translateX(0)   scale(1);   opacity: .7; }
    50%  { transform: translateY(-45%) translateX(6px) scale(1.04); opacity: .5; }
    100% { transform: translateY(-110vh) translateX(-4px) scale(.9); opacity: 0; }
}

/* ---------- Widget dot nav ---------- */
.aq72-gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}

.aq72-gallery-dots .aq72-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: 1px solid rgba(255,255,255,.5);
    cursor: pointer;
    transition: background .25s, transform .2s;
}

.aq72-gallery-dots .aq72-dot.active {
    background: rgba(80,200,255,.9);
    transform: scale(1.3);
}

/* ---------- Lightbox ---------- */
.aq72-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.aq72-lightbox.is-open {
    display: flex;
}

.aq72-lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 24, .88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.aq72-lb-inner {
    position: relative;
    z-index: 1;
    width: min(90vw, 960px);
    max-height: 90vh;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(0,180,255,.2), 0 0 0 1px rgba(0,180,255,.15);
    animation: aq72-lb-in .38s cubic-bezier(.22,.68,0,1.2) both;
}

@keyframes aq72-lb-in {
    from { opacity: 0; transform: scale(.86) translateY(16px); }
    to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.aq72-lb-canvas {
    display: block;
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    transition: filter .55s ease;
}

/* Shared nav btn base */
.aq72-lb-prev,
.aq72-lb-next,
.aq72-lb-close {
    position: absolute;
    background: rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: background .2s, transform .15s;
    line-height: 1;
    z-index: 5;
}

.aq72-lb-close {
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 17px;
}

.aq72-lb-prev,
.aq72-lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    font-size: 20px;
}

.aq72-lb-prev { left: 10px; }
.aq72-lb-next { right: 10px; }

.aq72-lb-prev:hover,
.aq72-lb-next:hover,
.aq72-lb-close:hover {
    background: rgba(0,150,220,.7);
    transform: translateY(-50%) scale(1.08);
}
.aq72-lb-close:hover { transform: scale(1.08); }

/* Hide arrows if only 1 image */
.aq72-lb-inner.single-image .aq72-lb-prev,
.aq72-lb-inner.single-image .aq72-lb-next {
    display: none;
}

/* Lightbox dots */
.aq72-lb-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
}

.aq72-lb-dots .aq72-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: 1px solid rgba(255,255,255,.5);
    cursor: pointer;
    transition: background .25s, transform .2s;
}

.aq72-lb-dots .aq72-dot.active {
    background: rgba(80,200,255,.95);
    transform: scale(1.35);
}

/* Counter */
.aq72-lb-counter {
    position: absolute;
    top: 14px;
    left: 16px;
    color: rgba(255,255,255,.6);
    font-size: 12px;
    font-family: sans-serif;
    letter-spacing: .04em;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .aq72-cursor-oar { display: none !important; }
    .aq72-lb-inner   { width: 96vw; }
    .aq72-lb-prev    { left:  4px; }
    .aq72-lb-next    { right: 4px; }
}
