/* Overlay phủ toàn màn hình */
.brand-phishing-popup {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    background: rgba(0, 0, 0, 0.6);
    align-items: center; /* dọc */
    display: none;
    justify-content: center; /* ngang */
    z-index: 99999;
}


.show {
    display: flex; /* flex để căn giữa */
}

/* Khối popup bám sát image */
.brand-phishing-popup-content.brand-phishing-g8_only {
    position: relative;
    display: block; /* block để flex căn giữa tốt */
    background: transparent; /* image đã có nền */
    padding: 0;
    margin: 0;
    max-width: 90%; /* không quá màn hình */
    max-height: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Ảnh banner */
.brand-phishing-popup-content.brand-phishing-g8_only img {
    display: block;
    width: 100%;
    height: auto;
}

/* Nút close */
.brand-phishing-popup-close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    background: #000;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transition: transform 0.15s ease, background 0.15s ease;
}

.brand-phishing-popup-close:hover {
    background: #e00;
    transform: scale(1.1);
}

/* Animation */
@keyframes popupFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.brand-phishing-popup-content {
    animation: popupFadeIn 0.2s ease-out;
    position: relative;
    cursor: pointer;
}


/* Mobile */
@media (max-width: 480px) {
    .brand-phishing-popup-content {
        max-width: 95%;
    }

    .brand-phishing-popup-close {
        width: 24px;
        height: 24px;
        font-size: 18px;
        line-height: 24px;
    }
}
