/* Source: battle-effects-animations.css — split from consolidated CSS */

/* Bro Rogue - Battle: Visual Effects */

/* Split from battle.css */

/* Contains: sex video overlays, victory/defeat, shake, hit flash, particles, needs panel */

/* ╔════════════════════════════════════════════════════════════════════════════╗
   ║  SECTIONS: Sex Move Video Overlays (1) + Victory/Defeat (2)                ║
   ╚════════════════════════════════════════════════════════════════════════════╝ */

/* ── SEX MOVE VIDEO (Behind Characters) ──────────────────── */

/* The overlay sits inside .battleField, behind the character sprites.
   The video plays at its native resolution — no scaling, no cropping.
   Characters (fully opaque) render on top. The battle background is
   visible through the faint overlay around the edges of the video. */

.sexMoveVideoOverlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    cursor: pointer;
    pointer-events: auto;
    background-color: rgb(0 0 0 / 8%);
}

.sexMoveVideoOverlay.hidden {
    display: none;
}

.sexMoveVideoContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Video at native size — no constraints */
.sexMoveVideo {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    border-radius: 8px;
    box-shadow: 0 0 40px rgb(0 0 0 / 25%);
    border: 1px solid rgb(255 255 255 / 8%);
}

.sexMoveVideoHint {
    margin-top: 0.75rem;
    color: rgb(255 255 255 / 35%);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgb(0 0 0 / 60%);
    pointer-events: none;
}

/* ── VICTORY / DEFEAT ────────────────────────────────────── */
