/* ShortNews Sitewide — minimal, scoped, safe on all pages */

/* Floating Watch in Shorts button */
#sn-watch-floating {
    position: fixed;
    bottom: 22px;
    right: 18px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    transition: opacity .2s, transform .2s;
}
#sn-watch-floating:hover { opacity: .85; transform: scale(1.05); }

.admin-bar #sn-watch-floating { bottom: 54px; }

@keyframes sn-float-pulse {
    0%,100% { box-shadow: 0 4px 18px rgba(0,0,0,.28); }
    50%      { box-shadow: 0 4px 24px rgba(232,34,42,.5); }
}

/* Refresh banner animation */
@keyframes sn-fadein { from { opacity:0; } to { opacity:1; } }
