/* Modal Styles */
.pfp-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: pfpFadeIn 0.5s;
}

.pfp-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: pfpSlideIn 0.5s ease-out;
}

.pfp-modal-header {
    padding: 25px 30px 20px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px 12px 0 0;
}

.pfp-modal-header h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.pfp-close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.8;
}

.pfp-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.pfp-modal-body {
    padding: 30px;
}

/* Feature Content Styles */
.pfp-feature-content {
    margin-bottom: 30px;
}

.pfp-feature-content h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 15px;
}

.pfp-feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.feature-highlights li {
    padding: 8px 0;
    color: #555;
    font-size: 15px;
}

/* Waitlist Form Styles */
.pfp-waitlist-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.pfp-waitlist-section h3 {
    margin-top: 0;
    color: #333;
    font-size: 20px;
}

.pfp-waitlist-section p {
    color: #666;
    margin-bottom: 20px;
}

.pfp-form-group {
    margin-bottom: 15px;
}

.pfp-form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
}

.pfp-form-group input[type="email"]:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.pfp-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.pfp-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.pfp-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#pfp-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

#pfp-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#pfp-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Animations */
@keyframes pfpFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pfpSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pfp-modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .pfp-modal-header h2 {
        font-size: 20px;
    }
    
    .pfp-modal-body {
        padding: 20px;
    }
    
    .pfp-waitlist-section {
        padding: 20px;
    }
}