/* 茵曼风格中央提示框 */
.center-notice-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.5);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.center-notice-overlay.show {
    opacity: 1;
}

.center-notice-box {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 28px 36px;
    min-width: 280px;
    max-width: 400px;
    transform: translateY(16px) scale(0.96);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(28, 25, 23, 0.15);
    border: 1px solid #E7E5E4;
}

.center-notice-overlay.show .center-notice-box {
    transform: translateY(0) scale(1);
}

.center-notice-message {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1C1917;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.center-notice-progress {
    width: 100%;
    height: 3px;
    background: #E7E5E4;
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.center-notice-progress-bar {
    height: 100%;
    width: 100%;
    border-radius: 2px;
    background: #A16207;
}