/* Shared styles for legal pages (Privacy Policy, Terms of Use) */

:root {
    --color-bg: #000000;
    --color-bg-elevated: #1c1c1e;
    --color-bg-glass: rgba(255, 255, 255, 0.05);
    --color-border-glass: rgba(255, 255, 255, 0.1);
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-tertiary: rgba(255, 255, 255, 0.5);
    --color-accent: #30d158;
    --gradient-hero: linear-gradient(135deg, #ff9500 0%, #ff6b00 50%, #30d158 100%);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --max-width: 800px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.7;
}

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

a:hover {
    text-decoration: underline;
}

a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-glass);
}

.nav-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text-primary);
    text-decoration: none;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-hero);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-updated {
    color: var(--color-text-tertiary);
    font-size: 0.875rem;
    margin-bottom: 48px;
}

.section {
    margin-bottom: 48px;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.section p, .section li {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.section ul {
    list-style: none;
    padding-left: 0;
}

.section li {
    padding-left: 24px;
    position: relative;
}

.section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.highlight-box {
    background: var(--color-bg-glass);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 24px 0;
}

.highlight-box p {
    margin-bottom: 0;
}

.footer {
    border-top: 1px solid var(--color-border-glass);
    padding: 40px 24px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-link {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.footer-copyright {
    color: var(--color-text-tertiary);
    font-size: 0.875rem;
}
