.hn-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9999;
}

.hn-popup-box {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    margin: auto;
    padding: 30px 28px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: hnFadeIn 0.35s ease;
}

.hn-popup-logo img {
    max-height: 50px;
    margin-bottom: 15px;
}

.hn-popup-box h2 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hn-popup-box p {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 22px;
    line-height: 1.5;
}

.hn-popup-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #c59d5f;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.hn-popup-btn:hover {
    background: #b08a4e;
}

.hn-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

@keyframes hnFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hn-popup-box {
        margin: 20px;
        padding: 24px 20px;
    }
}