.notification {
    backdrop-filter: blur(2px) brightness(0.9);
    box-shadow: var(--shadow-w-l),var(--lggc-shadow);
    font-family: 'fillet';
    position: fixed;
    top: 20px;
    left: 50%;
    padding: 8px 30px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 100px;
    font-size: 16px;
    z-index: 10000;
    max-width: 180%;
    text-align: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.32, 0.72, 0, 1.2);
    transform: translate(-50%, -60px) scaleX(0.75) scaleY(0.25);
}

.notification span {
    z-index: 999;
    transition: all 0.2s ease;
}

/* ==================== 深色模式 - 通知 ==================== */
[data-theme="dark"] .notification {
    background: rgba(30, 41, 59, 0.95);
    color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4),var(--lggc-shadow);
    border: 1px solid rgba(255, 255, 255, 0.06);
}