/* Privacy & Terms Theme */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Orbitron'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/orbitron-v35-latin-700.woff2') format('woff2'); }

body {
    background-color: #1a202c;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.legal-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

h1 {
    color: #00C9FF;
    font-family: 'Orbitron', sans-serif;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 2.5rem;
}

.last-updated {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

h2 {
    color: #fff;
    margin-top: 30px;
    font-size: 1.5rem;
}

p, li {
    color: #cbd5e1;
    font-size: 1rem;
}

a {
    color: #00C9FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* High Contrast Back Button */
.back-btn {
    display: inline-block;
    margin-top: 40px;
    background-color: #00C9FF;
    color: #1a202c; /* Dark text on bright bg */
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.back-btn:hover {
    background-color: #009bc4;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 201, 255, 0.4);
}

@media (max-width: 600px) {
    .legal-container {
        margin: 20px;
        padding: 20px;
    }
    h1 { font-size: 2rem; }
}