/* Legal Pages Styles (Privacy Policy & Terms of Service) */

.legal-page {
    padding: 80px 24px 60px;
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: slideUp 0.8s ease-out;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.legal-section {
    margin-bottom: 40px;
}

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

.legal-section h3 {
    font-size: 1.15rem;
    margin: 20px 0 12px;
    color: var(--text-primary);
    opacity: 0.9;
}

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

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

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

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.7;
}

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

.legal-section a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

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

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}
