
#cpc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

#cpc-overlay.cpc-overlay-hidden {
    display: none;
}

#cpc-modal {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#cpc-modal h2 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

#cpc-modal p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.cpc-channel-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cpc-channel-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.cpc-channel-button:hover {
    transform: scale(1.05);
}

.cpc-channel-button.telegram {
    background-color: #2AABEE;
}

.cpc-channel-button.whatsapp {
    background-color: #25D366;
}

.cpc-password-wrapper {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

#cpc-password-input {
    width: 100%;
    padding: 12px;
    padding-right: 45px; /* Make space for icon */
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

#cpc-toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

#cpc-toggle-password svg {
    width: 20px;
    height: 20px;
}


#cpc-unlock-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 12px 25px;
    margin-top: 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

#cpc-unlock-button:hover {
    background-color: #005a87;
}
