.ip-container {
    position: relative;
    display: inline-block;
}
.ip-trigger-img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.ip-trigger-img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}
.ip-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ip-popup-content-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.ip-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e60000;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    transition: background-color 0.2s;
}
.ip-close-btn:hover {
    background: #cc0000;
}
.ip-inner-content {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
