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

:root {
    --background-color: #121212;
    --surface-color: #1e1e1e;
    --text-color: #e0e0e0;
    --secondary-text-color: #a0a0a0;
    --primary-gradient: linear-gradient(90deg, #8e2de2, #4a00e0);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    padding: 2rem;
}

.legal-container {
    max-width: 800px;
    margin: 4rem auto;
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

p, li {
    color: var(--secondary-text-color);
    font-size: 1rem;
}

a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFEA00;
}

.back-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.back-button:hover {
    transform: translateY(-3px);
}
