/* Main Popup Styles */
#peip-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.peip-popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: peipFadeIn 0.3s ease-in-out;
}

.peip-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.peip-popup-logo img {
    max-height: 80px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.peip-popup h3 {
    margin: 0 0 15px;
    color: #333;
    font-size: 1.5em;
    text-align: center;
}

.peip-popup p {
    margin: 0 0 20px;
    color: #666;
    font-size: 1.1em;
    text-align: center;
}

.peip-popup-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin: 0 auto;
}

.peip-popup-button:hover {
    background-color: #1a252f;
}

@keyframes peipFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .peip-popup-content {
        width: 95%;
        padding: 20px;
    }
    
    .peip-popup h3 {
        font-size: 1.3em;
    }
    
    .peip-popup p {
        font-size: 1em;
    }
}