/* ============================================
   استایل سیستم پیام حرفه‌ای منتو
   ============================================ */

.mento-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mento-alert-overlay.open {
    opacity: 1;
}

.mento-alert-box {
    max-width: 420px;
    width: 100%;
    padding: 36px 32px;
    border-radius: 28px;
    background: rgba(16, 30, 55, 0.95);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(100, 210, 255, 0.15);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mento-alert-overlay.open .mento-alert-box {
    transform: scale(1) translateY(0);
}

.mento-alert-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 900;
}

.mento-alert-title {
    font-size: 20px;
    font-weight: 800;
    color: #edf5ff;
    margin-bottom: 10px;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

.mento-alert-message {
    font-size: 14px;
    color: rgba(180, 210, 240, 0.7);
    line-height: 2;
    margin-bottom: 24px;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

.mento-alert-btn {
    padding: 12px 36px;
    border-radius: 14px;
    border: none;
    color: #0a1a24;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    min-width: 140px;
}

.mento-alert-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 40px rgba(74, 240, 255, 0.25);
}

.mento-alert-btn:active {
    transform: scale(0.98);
}