.lpzp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.lpzp-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.lpzp-popup-container {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: lpzp-fadeIn 0.3s ease-out;
}

@keyframes lpzp-fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lpzp-popup-content {
    position: relative;
    overflow-y: auto;
    padding: 30px;
}

.lpzp-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: color 0.2s;
}

.lpzp-close-button:hover {
    color: #333;
}

.lpzp-content {
    padding-top: 10px;
}

.lpzp-content h1,
.lpzp-content h2,
.lpzp-content h3,
.lpzp-content h4,
.lpzp-content h5,
.lpzp-content h6 {
    margin-top: 0;
    margin-bottom: 15px;
}

.lpzp-content p {
    margin-bottom: 15px;
}

.lpzp-content img {
    max-width: 100%;
    height: auto;
}

.lpzp-content a {
    color: #0073aa;
    text-decoration: none;
}

.lpzp-content a:hover {
    text-decoration: underline;
}