/**
 * AiDrumScore - AI驱动的鼓谱转录工具
 * Copyright (c) 2026 苏州市常熟市制谱修修信息技术服务有限责任公司. All rights reserved.
 */
/* 法律页面公共样式（隐私政策/免责声明/用户协议） */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg: #121216;
    --bg-card: #1e1e24;
    --white: #f8f8f6;
    --gray: #78787d;
    --accent: #00c8b4;
    --border: #28282f;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
    background: var(--bg);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.8;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: #0c0c10;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}
.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}
h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}
.update-time {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 48px;
}
.section {
    margin-bottom: 36px;
}
.section h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.section h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    margin-top: 20px;
}
.section p, .section li {
    color: #c8c8cc;
    font-size: 15px;
    line-height: 1.9;
}
.section ul {
    padding-left: 20px;
}
.section li {
    margin-bottom: 8px;
}
.section li strong {
    color: var(--white);
}
.highlight-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
}
.highlight-box p {
    color: #c8c8cc;
    font-size: 14px;
}
.highlight-box.warning {
    border-left-color: #f59e0b;
}
.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 32px;
}
.contact-box p {
    color: #c8c8cc;
    font-size: 14px;
    line-height: 1.8;
}
.contact-box a {
    color: var(--accent);
}
.footer {
    text-align: center;
    padding: 40px;
    color: #3c3c44;
    font-size: 13px;
    border-top: 1px solid var(--border);
    margin: 0 60px;
}
.footer a {
    color: #3c3c44;
    text-decoration: underline;
}
@media (max-width: 640px) {
    .container { padding: 40px 16px 60px; }
    h1 { font-size: 24px; }
    .nav { padding: 12px 16px; }
    .footer { margin: 0 16px; }
}
