/* Legal pages (Privacy Policy, Terms of Use) */

body {
    scroll-snap-type: none;
}

.legal-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    min-height: 100vh;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-decoration: none;
    margin-bottom: 48px;
    transition: color 0.2s ease;
}

.legal-back:hover {
    color: var(--accent);
}

.legal-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

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

.legal-content section {
    margin-bottom: 36px;
}

.legal-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.legal-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    margin-top: 16px;
}

.legal-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.legal-content li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

.legal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-tertiary);
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.legal-content a:hover {
    opacity: 0.8;
}

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

@media (max-width: 640px) {
    .legal-page {
        padding: 32px 16px 60px;
    }

    .legal-back {
        margin-bottom: 32px;
    }

    .legal-updated {
        margin-bottom: 32px;
    }
}
