    /* GDPR弹窗基础样式 */
    #gdpr-modal {
        display: none;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 600px;
        background: #fff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        z-index: 9999;
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
    }
    
    #gdpr-modal h2 {
        margin-top: 0;
        color: #222;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    #gdpr-modal p {
        color: #555;
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .gdpr-buttons {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .gdpr-btn {
        padding: 12px 18px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        font-weight: 600;
        flex: 1;
        min-width: 120px;
        transition: all 0.3s;
        font-size: 14px;
    }
    
    .gdpr-accept {
        background-color: #2e7d32;
        color: white;
    }
    
    .gdpr-accept:hover {
        background-color: #1b5e20;
    }
    
    .gdpr-settings {
        background-color: #f5f5f5;
        color: #333;
    }
    
    .gdpr-settings:hover {
        background-color: #e0e0e0;
    }
    
    .gdpr-reject {
        background-color: #c62828;
        color: white;
    }
    
    .gdpr-reject:hover {
        background-color: #b71c1c;
    }
    
    .gdpr-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.6);
        z-index: 9998;
        display: none;
    }
    
    /* 设置弹窗样式 */
    #gdpr-settings-modal {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        z-index: 10000;
        max-width: 700px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    }
    
    .cookie-category {
        margin-bottom: 20px;
        padding: 15px;
        background: #f9f9f9;
        border-radius: 6px;
    }
    
    .cookie-toggle {
        display: flex;
        align-items: flex-start;
    }
    
    .cookie-toggle label {
        display: flex;
        align-items: center;
        cursor: pointer;
        width: 100%;
    }
    
    .cookie-toggle input[type="checkbox"] {
        margin-right: 12px;
        width: 18px;
        height: 18px;
    }
    
    .cookie-desc {
        margin-left: 30px;
        color: #666;
        font-size: 14px;
        margin-top: 5px;
    }
    
    .cookie-expiry {
        font-size: 13px;
        color: #888;
        margin-top: 5px;
        display: block;
    }
    
    /* 响应式调整 */
    @media (max-width: 768px) {
        #gdpr-modal {
            bottom: 10px;
            padding: 20px 15px;
        }
        
        .gdpr-buttons {
            flex-direction: column;
        }
        
        .gdpr-btn {
            width: 100%;
        }
    }
    
    /* 隐私政策链接样式 */
    .privacy-link {
        color: #2e7d32;
        text-decoration: underline;
        font-weight: 600;
    }
    
    .privacy-link:hover {
        text-decoration: none;
    }
