/* ===================================================================
   ★ 登录奖励胶囊弹窗 UI (纯净独立版)
   =================================================================== */

#wv-login-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999999;
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

#wv-login-toast.show { opacity: 1; transform: translateY(0) scale(1); }

.wv-toast-card {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #f0f0f0; padding: 10px 20px;
    border-radius: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}

.wv-toast-icon { font-size: 22px; }
.wv-toast-title { font-weight: 700; font-size: 14px; color: #333; margin: 0; }
.wv-toast-desc { font-size: 12px; color: #35BAF3; margin: 0; font-weight: 500; }

@media (max-width: 768px) {
    #wv-login-toast { right: 50%; transform: translate(50%, -20px); top: 40px; }
    #wv-login-toast.show { transform: translate(50%, 0); }
}