/* ── Site-Wide Ambient Effects ── */
/* Glowing perimeter frame */
#ow-ambient-frame{position:fixed;inset:24px;border:1px solid rgba(196,162,101,0.06);pointer-events:none;z-index:9990;}
#ow-ambient-glow-top,#ow-ambient-glow-bottom,#ow-ambient-glow-left,#ow-ambient-glow-right{position:fixed;pointer-events:none;z-index:9990;}
#ow-ambient-glow-top{top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(196,162,101,0.12),transparent);animation:owGlowPulse 3s ease-in-out infinite alternate;}
#ow-ambient-glow-bottom{bottom:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(196,162,101,0.12),transparent);animation:owGlowPulse 3s ease-in-out infinite alternate;}
#ow-ambient-glow-left{top:0;bottom:0;left:0;width:1px;background:linear-gradient(180deg,transparent,rgba(196,162,101,0.12),transparent);animation:owGlowPulse 3.5s ease-in-out infinite alternate;}
#ow-ambient-glow-right{top:0;bottom:0;right:0;width:1px;background:linear-gradient(180deg,transparent,rgba(196,162,101,0.12),transparent);animation:owGlowPulse 3.5s ease-in-out infinite alternate;}
@keyframes owGlowPulse{0%{opacity:0.3}100%{opacity:0.8}}
/* Gold dust particles */
.ow-dust{position:fixed;width:2px;height:2px;background:#c4a265;border-radius:50%;opacity:0.3;pointer-events:none;z-index:9989;will-change:transform,opacity;animation:owFloat 10s ease-in-out infinite alternate;}
.ow-dust-lg{width:3px;height:3px;}
@keyframes owFloat{0%{transform:translate(0,0);opacity:0.3}25%{transform:translate(15px,-20px);opacity:0.5}50%{transform:translate(-10px,15px);opacity:0.2}75%{transform:translate(20px,10px);opacity:0.6}100%{transform:translate(-15px,-10px);opacity:0.3}}
/* Ambient orbs */
.ow-amb-orb{position:fixed;border-radius:50%;filter:blur(80px);pointer-events:none;z-index:9988;opacity:0.5;}
