/* ==================== ГЕНИУМ-УВЕДОМЛЕНИЯ (Custom Modals) ==================== */
.genium-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
}

.genium-alert-overlay.active {
    opacity: 1;
    visibility: visible;
}

.genium-alert {
    background: #1c1c1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    width: 90%;
    max-width: 400px;
    padding: 32px;
    text-align: center;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.genium-alert-overlay.active .genium-alert {
    transform: scale(1);
}

.genium-alert-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.genium-alert-icon.error {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
}

.genium-alert-icon.success {
    background: rgba(52, 199, 89, 0.1);
    color: #34c759;
}

.genium-alert-icon.info {
    background: rgba(10, 132, 255, 0.1);
    color: #0a84ff;
}

.genium-alert-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.genium-alert-message {
    font-size: 15px;
    color: #86868b;
    line-height: 1.5;
    margin-bottom: 30px;
}

.genium-alert-btn-group {
    display: flex;
    gap: 12px;
}

.genium-alert-btn {
    flex: 1;
    padding: 14px;
    background: #0a84ff;
    border: none;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.genium-alert-btn.secondary {
    background: #2c2c2e;
    color: #f5f5f7;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.genium-alert-btn:hover {
    background: #409cff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.4);
}

.genium-alert-btn.secondary:hover {
    background: #3c3c3e;
    box-shadow: none;
}

.genium-alert-btn:active {
    transform: translateY(0);
}
