#pmh-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pmh-popup {
    display: flex;
    flex-direction: row;
    background: #8B2FE0;
    max-width: 680px;
    width: 90%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

#pmh-close {
    position: absolute;
    top: 10px; right: 14px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

#pmh-left {
    width: 45%;
    flex-shrink: 0;
}

#pmh-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

#pmh-right {
    width: 55%;
    padding: 30px 24px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

#pmh-right h2 {
    color: #7FE800;
    font-size: 20px;
    margin: 0;
}

#pmh-right p {
    color: #fff;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

#pmh-email {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    box-sizing: border-box;
}

#pmh-right label {
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

#pmh-right label a {
    color: #7FE800;
}

#pmh-submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
}

#pmh-submit:hover {
    background: #222;
}

#pmh-message {
    color: #7FE800;
    font-size: 14px;
    font-weight: 700;
}

#pmh-dismiss {
    color: #fff;
    font-size: 12px;
    opacity: 0.6;
    text-decoration: none;
}

@media (max-width: 600px) {
    #pmh-popup { flex-direction: column; }
    #pmh-left { width: 100%; height: 200px; }
    #pmh-right { width: 100%; }
}
