/* ===== Legal Page Styles ===== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Legal Page */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 24px 60px;
}

.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.update-date {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 32px;
}

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

.legal-content section:last-child {
    margin-bottom: 0;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

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

.legal-content li {
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.legal-content li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent);
}

.legal-content strong {
    color: var(--text-primary);
}

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

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 24px;
    }

    .legal-content h1 {
        font-size: 1.5rem;
    }
}