/* Main modal styles */
.page-unlock-pro-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 99999;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.page-unlock-pro-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 99998;
}

.page-unlock-pro-close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* Inline styles */
.page-unlock-pro-inline {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
}

/* Overlay styles */
.page-unlock-pro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-unlock-pro-overlay-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.page-unlock-pro-close-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* Method styles */
.page-unlock-pro-method {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-unlock-pro-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-unlock-pro-method h3 {
    margin-top: 0;
    color: #333;
}

.page-unlock-pro-input {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.page-unlock-pro-button {
    background: #4285f4;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.page-unlock-pro-button:hover {
    background: #3367d6;
}

/* Social buttons */
.page-unlock-pro-social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-unlock-pro-social-button {
    padding: 8px 12px;
    border-radius: 4px;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.page-unlock-pro-facebook { background: #3b5998; }
.page-unlock-pro-twitter { background: #1da1f2; }
.page-unlock-pro-linkedin { background: #0077b5; }
.page-unlock-pro-pinterest { background: #bd081c; }
.page-unlock-pro-whatsapp { background: #25d366; }
.page-unlock-pro-telegram { background: #0088cc; }
.page-unlock-pro-reddit { background: #ff4500; }

/* Timer styles */
.page-unlock-pro-timer,
.page-unlock-pro-ad-timer {
    font-size: 24px;
    text-align: center;
    margin: 15px 0;
}

.page-unlock-pro-timer-count {
    font-weight: bold;
    color: #4285f4;
}

/* Payment methods */
.page-unlock-pro-payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

/* Locked content styles */
.page-unlock-pro-locked-content {
    position: relative;
}

.page-unlock-pro-locked-message {
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Responsive styles */
@media (max-width: 480px) {
    .page-unlock-pro-modal,
    .page-unlock-pro-overlay-content {
        padding: 20px;
    }
    
    .page-unlock-pro-social-buttons {
        flex-direction: column;
    }
}