.ntf-overlay {
    position: fixed;
    inset: 0;
    background: #00000073;
    opacity: 1;
    transition: opacity .18s ease;
}

.ntf-overlay-hidden {
    background: transparent;
    pointer-events: none;
}

.ntf-box {
    position: fixed;
    width: calc(100% - 24px);
    border-radius: 16px;
    box-shadow: 0 20px 55px #0000003d;
    padding: 18px;
    background: #ffffff;
    color: #1c1c1c;
    transition: transform .18s ease, opacity .18s ease;
    opacity: 1;
    font-family: Arial, sans-serif;
}

.ntf-box.is-closing,
.ntf-overlay.is-closing {
    opacity: 0;
}

.pos-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 50%;
    overflow: auto;
}

.pos-top-center {
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}

.pos-bottom-center {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}

.pos-top-left { left: 20px; top: 20px; }
.pos-top-right { right: 20px; top: 20px; }
.pos-bottom-left { left: 20px; bottom: 20px; }
.pos-bottom-right { right: 20px; bottom: 20px; }

.ntf-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-right: 28px;
}

.ntf-message {
    font-size: 14px;
    line-height: 1.55;
}

.ntf-image-wrap {
    margin-bottom: 12px;
}

.ntf-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.ntf-image-wrap img,
.ntf-image-wrap img:hover,
.ntf-box .ntf-image-wrap img,
.ntf-box .ntf-image-wrap img:hover {
    transform: none !important;
    scale: 1 !important;
    transition: none !important;
    animation: none !important;
    filter: none !important;
}

.ntf-close {
    position: absolute;
    right: 10px;
    top: 8px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    z-index: 999;
}

.ntf-actions {
    margin-top: 14px;
}

.ntf-button {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    background: #111827;
    color: #fff;
    font-weight: 600;
}

.ntf-dont-show {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-top: 12px;
}

.ntf-toast.pos-bottom-right,
.ntf-toast.pos-bottom-left,
.ntf-toast.pos-top-right,
.ntf-toast.pos-top-left {
    max-width: 380px;
}

.ntf-banner.pos-top-center,
.ntf-banner.pos-bottom-center {
    max-width: 760px;
}

@media (max-width: 768px) {
    .ntf-box {
        width: calc(100% - 20px);
        left: 10px !important;
        right: 10px !important;
        transform: none !important;
        max-width: none !important;
    }

    .pos-center { top: 50%; transform: translateY(-50%) !important; height: 50%; overflow: auto; }
    .pos-top-center, .pos-top-left, .pos-top-right { top: 10px; }
    .pos-bottom-center, .pos-bottom-left, .pos-bottom-right { bottom: 10px; }
}