/* SCOAR.de – App-CI (nicht das alte Wortmarken-Gelb).
   Logo = Blauverlauf-App-Icon. Accent = winnerHighlightGreen #b7ff01. CTA nie weiße Schrift auf Lime. */
:root {
  --bg: #000000;
  --bg-elevated: #141414;
  --text: #f5f5f7;
  --muted: #8e8e93;
  --accent: #b7ff01;
  --accent-ink: #111111;
  --line: rgba(255, 255, 255, 0.1);
  --radius: 18px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(183, 255, 1, 0.22);
  filter: brightness(1.04);
}

.cta svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* Legal / Impressum / AGB / Datenschutz */
body.legal {
  line-height: 1.65;
  padding: 2rem 1.5rem 3.5rem;
  max-width: 720px;
  margin: 0 auto;
}

body.legal h1 {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

body.legal h2 {
  font-size: 1.05rem;
  margin: 1.6rem 0 0.45rem;
  font-weight: 600;
}

body.legal p { margin-bottom: 0.75rem; color: #d2d2d7; }

body.legal ul {
  margin: 0 0 0.75rem 1.35rem;
  color: #d2d2d7;
}

body.legal li { margin-bottom: 0.35rem; }

body.legal .back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

body.legal .back:hover { color: var(--accent); }

body.legal .meta {
  color: var(--muted);
  font-size: 0.92rem;
}

body.legal .legal-nav {
  margin-top: 2.25rem;
  color: var(--muted);
}

/* FAQ */
.faq-item {
  margin: 1.1rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
  margin-left: 0.75rem;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item .faq-body {
  padding: 0 1.15rem 1.1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.faq-venue {
  margin-top: 2.4rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(183, 255, 1, 0.08), rgba(20, 20, 20, 0.6));
}

.faq-venue h2 {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.faq-venue .cta {
  margin-top: 0.85rem;
}
