* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #f8f9fa;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}
h1 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 32px;
}
h2 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-top: 32px;
    margin-bottom: 12px;
}
h3 {
    font-size: 1.05rem;
    color: #1a1a1a;
    margin-top: 22px;
    margin-bottom: 8px;
}
code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.88em;
    background: #f1f5f9;
    padding: 1px 5px;
    border-radius: 4px;
}
p, li {
    margin-bottom: 12px;
    color: #444;
}
ul {
    padding-left: 24px;
}
a { color: #0066cc; text-decoration: none; }
a:hover { text-decoration: underline; }
.card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.footer {
    text-align: center;
    margin-top: 32px;
    color: #888;
    font-size: 0.85rem;
}

/* Site header — app icon must be visible at the top of every legal page
   (TikTok review requirement: same icon as the developer console) */
.site-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}
.site-header img {
    width: 48px;
    height: 48px;
    display: block;
}
.site-header .brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}
.site-header a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
