/* Popup Overlay */
#cpg-popup-overlay, #cpg-thanks-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Styles (match screenshot) */
#cpg-popup, #cpg-thanks {
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    max-width: 600px;
    text-align: center;
}

#cpg-close, #cpg-thanks-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

h1 {
    color: #fff;
    font-size: 48px;
}

h2 {
    color: #ccc;
    font-size: 18px;
}

form input {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 80%;
}

form button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

#cpg-download-btn {
    border: 2px solid #007bff;
    color: #007bff;
    padding: 10px;
    display: inline-block;
    text-decoration: none;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin: 0 5px;
}

/* Arrows and other styles from screenshot */
 /* Add red arrows if needed using ::after or images */