/* 隐私政策页面样式 */
.privacy-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--bg-darker);
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 240, 255, 0.2);
}

.privacy-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.language-content {
    display: none;
}

.language-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro {
    background: rgba(0, 240, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
}

.policy-section:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateX(5px);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 240, 255, 0.2);
}

.policy-section h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section ul li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.policy-section ul li strong {
    color: var(--primary-color);
}

.note {
    background: rgba(255, 0, 110, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    border-radius: 6px;
    font-style: italic;
}

.contact-box {
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-box strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-box a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .privacy-section {
        padding: 100px 0 60px;
    }
    
    .privacy-header h1 {
        font-size: 2.5rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-section ul {
        margin-left: 1rem;
    }
}

