/* Shared styling for the static, crawlable twins of About/Contact/Privacy/
   Terms (see web/about.html etc.) — matches lib/theme/app_theme.dart's
   colors so these pages look like part of the app, not a generic fallback.
   Netlify serves these files directly (taking precedence over the SPA
   catch-all in _redirects) for crawlers and for anyone landing on these
   URLs directly; the "Open the App" link sends real visitors into the
   actual interactive Flutter app for anything beyond reading. */

:root {
  --background: #0d0221;
  --surface: #1b0e33;
  --surface-bright: #2a1650;
  --neon-pink: #ff2e9a;
  --neon-cyan: #00f0ff;
  --neon-gold: #ffe94a;
  --text-primary: #f5f0ff;
  --text-muted: #b6a8d9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text-primary);
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
}

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  margin-bottom: 24px;
}

header.site-header a.brand {
  color: var(--neon-cyan);
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  background: var(--neon-pink);
  color: var(--background);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255, 46, 154, 0.5);
}

h1 {
  color: var(--neon-cyan);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

h2 {
  color: var(--neon-cyan);
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 8px;
}

h3 {
  color: var(--neon-gold);
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 4px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

p {
  color: var(--text-primary);
  margin: 0 0 12px;
}

.muted {
  color: var(--text-muted);
}

a {
  color: var(--neon-cyan);
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 46, 154, 0.35);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.email-link {
  color: var(--neon-gold);
  font-weight: 700;
  text-decoration: none;
}

footer.site-footer {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 240, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

footer.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

footer.site-footer a:hover {
  color: var(--neon-cyan);
}
