:root {
  --bg-deep: #06090f;
  --bg-card: #0c1220;
  --text-primary: #e8eaf0;
  --text-secondary: #94a3b8;
  --accent-blue: #4cc9f0;
  --accent-purple: #b388eb;
  --accent-teal: #38e8c8;
  --aurora-gradient: linear-gradient(135deg, #4cc9f0, #b388eb, #38e8c8);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; background: var(--bg-deep); color: var(--text-primary); line-height: 1.7; min-height: 100vh; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem; background: rgba(6,9,15,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(76,201,240,0.1); }
.nav-brand { display: flex; align-items: center; gap: 0.5rem; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.5rem; letter-spacing: 1px; color: #fff; text-decoration: none; }
.nav-brand img { height: 28px; width: 28px; border-radius: 50%; box-shadow: 0 0 8px rgba(0,229,255,0.4); }
.nav-links a { color: var(--text-secondary); text-decoration: none; margin-left: 1.5rem; font-size: 0.95rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent-blue); }
.legal-container { max-width: 920px; margin: 0 auto; padding: 8rem 2rem 4rem; }
.legal-container h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 0.5rem; background: var(--aurora-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.legal-container .subtitle { color: var(--text-secondary); font-size: 1rem; margin-bottom: 2.5rem; }
.legal-container h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--accent-blue); margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-container h3 { font-size: 1.1rem; color: var(--text-primary); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-container p, .legal-container li { color: var(--text-secondary); margin-bottom: 0.8rem; font-size: 0.95rem; }
.legal-container a { color: var(--accent-blue); text-decoration: none; }
.legal-container a:hover { text-decoration: underline; }
.legal-container ul, .legal-container ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.info-card, .summary-card { background: var(--bg-card); border: 1px solid rgba(76,201,240,0.15); border-radius: 12px; padding: 1.5rem 2rem; margin: 1.5rem 0; }
.info-card p { margin-bottom: 0.4rem; }
.info-card strong { color: var(--text-primary); }
.summary-card { background: rgba(56,232,200,0.05); border-color: rgba(56,232,200,0.2); }
.summary-card h3 { color: var(--accent-teal); font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 1rem; }
.summary-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(56,232,200,0.1); }
.summary-row:last-child { border-bottom: 0; }
.summary-row .label { color: var(--text-secondary); flex-shrink: 0; }
.summary-row .value { color: var(--accent-teal); font-weight: 600; text-align: right; }
.processor-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.processor-table th { text-align: left; padding: 0.75rem 1rem; background: var(--bg-card); color: var(--accent-blue); border-bottom: 1px solid rgba(76,201,240,0.2); font-weight: 600; vertical-align: top; }
.processor-table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(76,201,240,0.08); color: var(--text-secondary); vertical-align: top; }
.processor-table td strong { color: var(--text-primary); }
footer { text-align: center; padding: 3rem 2rem; border-top: 1px solid rgba(76,201,240,0.1); margin-top: 4rem; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin-bottom: 1rem; }
.footer-brand img { height: 24px; width: 24px; border-radius: 50%; box-shadow: 0 0 8px rgba(0,229,255,0.4); }
.footer-links { margin-bottom: 1rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; margin: 0 0.75rem; font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent-blue); }
.footer-copy { color: var(--text-secondary); font-size: 0.8rem; }
@media (max-width: 768px) {
  .legal-container { padding: 6rem 1.25rem 3rem; }
  .legal-container h1 { font-size: 1.8rem; }
  nav { padding: 0.75rem 1rem; }
  .nav-links a { margin-left: 0.75rem; font-size: 0.85rem; }
  .summary-row { flex-direction: column; gap: 0.25rem; }
  .summary-row .value { text-align: left; }
  .processor-table { font-size: 0.8rem; display: block; overflow-x: auto; white-space: nowrap; max-width: 100%; }
  .processor-table th, .processor-table td { padding: 0.5rem; }
  body { overflow-x: clip; max-width: 100vw; }
}
