/* ── VAST Ad Banner ────────────────────────────────────────────────────────── */
#vast-ad-banner {
    position: fixed;
    bottom: 90px;          /* above the player bar */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0;
    pointer-events: none;
    z-index: 99999;
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

#vast-ad-banner.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.vast-ad-icon  { font-size: 15px; }
.vast-ad-label { text-transform: uppercase; font-size: 11px; letter-spacing: 0.1em; }
