/* ═══════════════════════════════════════════════════════════
   Free Bounce — Floating Watermark
   Non-obstructive brand motif for tool pages.

   Usage:
     <link rel="stylesheet" href="../css/watermark.css">
     <div class="fb-watermark" aria-hidden="true">FREE BOUNCE</div>
   ═══════════════════════════════════════════════════════════ */

.fb-watermark {
    position: fixed;
    bottom: 16px;
    right: 20px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    line-height: 1;
}

/* Subtle glow variant for pages with darker panels over the watermark */
.fb-watermark::after {
    content: '';
    position: absolute;
    inset: -8px -12px;
    border-radius: 6px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.02) 0%, transparent 70%);
    pointer-events: none;
}
