/* 统一的简约高级成功提示组件 */

/* 简约高级成功提示样式 */
.elegant-success-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 9999;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 0;
    min-width: 320px;
    max-width: 420px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.elegant-success-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.elegant-success-notification .notification-content {
    padding: 40px 30px;
    text-align: center;
}

.elegant-success-notification .success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successIconScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.elegant-success-notification .success-icon i {
    font-size: 36px;
    color: white;
}

.elegant-success-notification .success-message {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    line-height: 1.5;
}

.elegant-success-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.elegant-success-backdrop.show {
    opacity: 1;
}

@keyframes successIconScale {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes successCheckmark {
    0% {
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

