/* ============================================= */
/* 隐私政策和网站地图页面特定样式 */
/* ============================================= */

/* 隐私政策和网站地图内容容器 */
.privacy-content,
.sitemap-content {
    padding: 2rem 0;
    line-height: 1.7;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2,
.sitemap-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
    font-weight: 700;
    border-bottom: 2px solid var(--correct-color);
    padding-bottom: 0.5rem;
}

.privacy-content h3,
.sitemap-content h3 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem 0;
    color: var(--text-color);
    font-weight: 600;
    padding-left: 0.5rem;
    border-left: 4px solid var(--present-color);
}

.privacy-content p,
.sitemap-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 1.05rem;
}

.privacy-content ul,
.sitemap-content ul {
    margin-left: 1.8rem;
    margin-bottom: 1.5rem;
}

.privacy-content li,
.sitemap-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    padding-left: 0.5rem;
}

.privacy-content li strong,
.sitemap-content li strong {
    color: var(--correct-color);
    font-weight: 600;
}

.privacy-content ul ul,
.sitemap-content ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin-left: 1.5rem;
}

/* 最后更新日期样式 */
.privacy-content p strong {
    color: var(--present-color);
    font-weight: 600;
}

/* 返回游戏按钮 */
.back-to-game {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.back-to-game .btn {
    width: auto;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--correct-color);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-to-game .btn:hover {
    background: #4a7c46;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(83, 141, 78, 0.3);
}

/* ============================================= */
/* 响应式设计 - 隐私政策页面 */
/* ============================================= */

@media (max-width: 768px) {
    .privacy-content,
    .sitemap-content {
        padding: 1rem 0;
    }

    .privacy-content h2,
    .sitemap-content h2 {
        font-size: 1.6rem;
    }

    .privacy-content h3,
    .sitemap-content h3 {
        font-size: 1.2rem;
    }

    .privacy-content ul,
    .sitemap-content ul {
        margin-left: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-content h2,
    .sitemap-content h2 {
        font-size: 1.4rem;
    }

    .privacy-content h3,
    .sitemap-content h3 {
        font-size: 1.1rem;
    }

    .back-to-game .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* 亮色模式适配 */
body.light-mode .privacy-content h3,
body.light-mode .sitemap-content h3 {
    color: var(--text-color);
}