#fcp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

#fcp-popup {
    background-color: #fff;
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.fcp-popup-content {
    padding: 30px;
}

#fcp-overlay h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
}

#fcp-overlay h3 {
    color: #444;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.fcp-terms, .fcp-privacy {
    margin-bottom: 30px;
}

.fcp-content {
    max-height: 200px;
    overflow-y: auto;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    line-height: 1.6;
}

#fcp-confirm-btn {
    display: block;
    margin: 0 auto;
    padding: 12px 30px;
    background-color: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#fcp-confirm-btn:hover {
    background-color: #006ba1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .fcp-popup-content {
        padding: 20px 15px;
    }
    
    #fcp-overlay h2 {
        font-size: 20px;
    }
    
    .fcp-content {
        max-height: 150px;
    }
}
    