.gid-alert {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(2px);
    z-index: 100000;
}

.gid-alert__card {
    width: min(380px, 100%);
    padding: 24px;
    text-align: center;
    background: #fff;
    border: 1px solid #dce3ec;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
    animation: gid-alert-in 0.18s ease-out;
}

.gid-alert__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    color: #fff;
    background: #f98935;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
}

.gid-alert__card h3 {
    margin: 0 0 8px;
    color: #1e293b;
    font-size: 18px;
}

.gid-alert__card p {
    margin: 0 0 20px;
    color: #536174;
    font-size: 14px;
    line-height: 1.5;
}

.gid-alert__card button {
    min-width: 110px;
    padding: 9px 18px;
    color: #fff;
    background: #2465e5;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 3px 9px rgba(36, 101, 229, 0.25);
    cursor: pointer;
}

.gid-alert__card button:hover {
    background: #1956c2;
}

@keyframes gid-alert-in {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
