:root {
    --bg: #000;
    --surface: #111;
    --border: #222;
    --text: #f5f5f7;
    --text-secondary: rgba(245, 245, 247, 0.6);
    --accent: #6eaaff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

nav {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
}

.site-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
}

.nav-links a:hover { color: var(--text); }

footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    text-align: center;
}

footer p {
    font-size: 13px;
    color: var(--text-secondary);
}

.legal-page {
    padding: 60px 0 80px;
}

.legal-page h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.effective-date {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 8px;
}

.legal-page p,
.legal-page li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal-page a {
    color: var(--accent);
    text-decoration: none;
}

.legal-page a:hover { text-decoration: underline; }

.contact-email {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: 15px;
}

.contact-email:hover { text-decoration: underline; }
