/* Football Stars Chat — shared stylesheet
   Dark theme (#121212) with gold accent (#FFD700), matching the app. */

:root {
  --bg: #121212;
  --surface: #1a1a1a;
  --surface-2: #1e1e1e;
  --border: #2a2a2a;
  --text: #f5f5f5;
  --text-muted: #b3b3b3;
  --gold: #ffd700;
  --gold-dim: #d4b300;
  --max: 860px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: var(--max);
  margin: 0 auto;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}
.brand .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.brand-logo {
  width: 30px;
  height: 30px;
  display: block;
}
.brand:hover { text-decoration: none; }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a { color: var(--text-muted); font-size: 0.95rem; }
.nav-links a:hover { color: var(--gold); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 72px 20px 56px;
  background:
    radial-gradient(900px 380px at 50% -10%, rgba(255, 215, 0, 0.10), transparent 70%);
}
.hero-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 6px 24px rgba(255, 215, 0, 0.25));
}
.hero .badge {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 900;
}
.hero h1 .accent { color: var(--gold); }
.hero p.lead {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ---------- Store badges ---------- */
.stores {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  color: var(--text);
  min-width: 200px;
  transition: border-color .15s ease, transform .15s ease;
}
.store-badge:hover { text-decoration: none; border-color: var(--gold-dim); transform: translateY(-2px); }
.store-badge .icn { font-size: 1.6rem; line-height: 1; }
.store-badge .label { display: flex; flex-direction: column; text-align: left; }
.store-badge .label small { color: var(--text-muted); font-size: 0.72rem; }
.store-badge .label strong { font-size: 1rem; font-weight: 700; }
.store-badge .soon {
  margin-left: auto;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #121212;
  background: var(--gold);
  border-radius: 6px;
  padding: 2px 7px;
  font-weight: 800;
}

/* ---------- Features ---------- */
.section { padding: 56px 0; }
.section h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-align: center;
  margin: 0 0 36px;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.card .icn { font-size: 1.8rem; margin-bottom: 10px; }
.card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Legal / content pages ---------- */
.legal {
  padding: 48px 0 72px;
}
.legal h1 {
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  margin: 0 0 6px;
}
.legal .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 36px;
}
.legal h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
  color: var(--gold);
}
.legal h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal p, .legal li { color: #e0e0e0; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { word-break: break-word; }

.callout {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 22px 0;
}
.callout p { margin: 0; }

table.summary {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.93rem;
}
table.summary th, table.summary td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
table.summary th { background: var(--surface); color: var(--gold); }
.table-wrap { overflow-x: auto; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); text-decoration: none; }

/* ---------- Misc ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #121212;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,215,0,0.25); }
.back-home { display: inline-block; margin-bottom: 24px; color: var(--text-muted); }

@media (max-width: 520px) {
  .footer-inner { flex-direction: column; }
  .store-badge { min-width: 100%; }
}
