@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500&display=swap');

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

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.site-header {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #1d1d1f;
}

.site-header a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Main content */
.content {
    max-width: 680px;
    margin: 0 auto;
    padding: 64px 24px 80px;
}

/* Legal pages */
.content h1 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.content .updated {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 48px;
}

.content h2 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.content p {
    font-size: 16px;
    line-height: 1.65;
    color: #d1d1d6;
}

.content ul {
    font-size: 16px;
    line-height: 1.65;
    color: #d1d1d6;
    padding-left: 20px;
    margin-top: 12px;
}

.content ul li {
    margin-bottom: 8px;
}

.mobile-break {
    display: none;
}

@media (max-width: 480px) {
    .mobile-break {
        display: block;
    }
}

.colourful-text {
    display: inline;
}

.colourful-text span {
    display: inline-block;
    white-space: pre;
    will-change: transform, opacity, filter, color;
}

/* Footer */
.site-footer {
    border-top: 1px solid #1d1d1f;
    padding: 24px;
    text-align: center;
    font-size: 14px;
    color: #86868b;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.site-footer a {
    color: #86868b;
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: none;
}
