.update-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(20, 22, 38, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 195, 230, 0.18);
    border-radius: 12px;
    z-index: 50;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #e8e5f4;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.update-toast.visible {
    display: flex;
    animation: utSlideIn 0.5s cubic-bezier(0.22, 0.72, 0.14, 1);
}
.update-toast.dismissing {
    animation: utSlideOut 0.3s cubic-bezier(0.22, 0.72, 0.14, 1) forwards;
}
@keyframes utSlideIn {
    from { transform: translateY(24px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes utSlideOut {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(24px); opacity: 0; }
}
.ut-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 176, 218, 0.15);
    border: 1px solid rgba(184, 176, 218, 0.25);
    border-radius: 8px;
    color: #b8b0da;
    font-size: 14px;
    font-weight: 600;
}
.ut-body { flex: 1; min-width: 0; }
.ut-title {
    font-size: 13px;
    font-weight: 600;
    color: #e8e5f4;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}
.ut-desc {
    font-size: 12px;
    color: #a9a3c7;
    line-height: 1.4;
}
.ut-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: #706b8f;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
    padding: 0;
    font-family: inherit;
}
.ut-close:hover {
    background: rgba(200, 195, 230, 0.08);
    color: #e8e5f4;
}
@media (max-width: 600px) {
    .update-toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
    }
}
