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

:root {
    --lz-line-strong: rgba(255, 255, 255, 0.14);
}

body {
    min-height: 100vh;
    background: var(--bg-void);
    color: var(--text-primary);
    font-family: 'Instrument Sans', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-bottom: 1px solid var(--lz-line-strong);
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(245, 245, 245, 0.54);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.logo img {
    width: 66px;
    height: auto;
    max-height: 20px;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--text-primary);
}

.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.page-title {
    margin-bottom: 8px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-updated {
    margin-bottom: 48px;
    color: var(--text-muted);
    font-size: 13px;
}

.legal-body p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.legal-body h2 {
    margin: 36px 0 12px;
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 600;
}

.legal-body ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-body ul li {
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.legal-body a {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 600px) {
    .topbar {
        padding: 16px 20px;
    }

    .page-title {
        font-size: 24px;
    }
}
