/* SPIELO24 — ORIA Studio Design-System
   Dark + Gold, seriös, ruhig. Kein Casino-Glitzer. */
:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #181818;
  --gold: #D4AF37;
  --gold-soft: #E8C96A;
  --text: #EDEDED;
  --muted: #9A9A9A;
  --line: #262626;
  --danger: #C0392B;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.muted { color: var(--muted); font-size: .92em; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: baseline; gap: 10px; color: var(--text); }
.brand-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; display: inline-block; }
.brand-name { font-weight: 700; letter-spacing: .08em; font-size: 1.05rem; }
.brand-sub { color: var(--muted); font-size: .82rem; }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a { color: var(--muted); font-size: .9rem; }
.nav a:hover { color: var(--gold); }
.nav-contact { color: var(--gold) !important; font-weight: 600; }

/* Hero */
.hero { padding: 110px 0 80px; background: radial-gradient(ellipse 80% 60% at 50% -10%, #1a1a1a 0%, var(--bg) 70%); border-bottom: 1px solid var(--line); }
.eyebrow { color: var(--gold); letter-spacing: .22em; text-transform: uppercase; font-size: .78rem; margin-bottom: 18px; font-weight: 600; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.08; margin-bottom: 20px; }
.hero .lead { color: var(--muted); font-size: 1.12rem; max-width: 620px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 8px;
  font-weight: 600; font-size: .95rem; border: 1px solid transparent; cursor: pointer;
  transition: all .18s ease;
}
.btn-gold { background: var(--gold); color: #0A0A0A; }
.btn-gold:hover { background: var(--gold-soft); color: #0A0A0A; transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Sektionen */
section.wrap { padding-top: 70px; padding-bottom: 40px; }
.section-title { font-size: 1.6rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 30px; }

/* Karten */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 24px; transition: border-color .18s ease;
}
.card:hover { border-color: #3a3a3a; }
.card h3 { font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.card p { color: var(--text); }
.card.dark { background: var(--bg-3); }

/* Standort-Grid (Dach) */
.standort-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.standort-card {
  display: block; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 26px; color: var(--text); transition: all .18s ease; position: relative;
}
.standort-card:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--text); }
.card-tag {
  display: inline-block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(212,175,55,.4); border-radius: 999px; padding: 3px 10px; margin-bottom: 14px;
}
.standort-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.card-link { color: var(--gold); font-size: .9rem; font-weight: 600; display: inline-block; margin-top: 14px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 780px; }
.faq-item {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 17px 22px; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; transition: transform .18s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 18px; color: var(--muted); }

/* Spielerschutz */
.schutz { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 70px 0; margin-top: 40px; }
.schutz .section-title { margin-bottom: 30px; }
.schutz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }

/* Review CTA */
.review-cta { text-align: center; padding: 60px 24px; }
.review-cta h2 { margin-bottom: 8px; }
.review-cta .btn { margin-top: 20px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding-top: 50px; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--muted); font-size: .9rem; }
.footer-links a:hover { color: var(--gold); }
.schutzbar {
  border-top: 1px solid var(--line); padding: 18px 24px; text-align: center;
  color: var(--muted); font-size: .88rem;
}

/* Legal */
.legal { padding: 80px 0; max-width: 760px; }
.legal h1 { margin-bottom: 30px; }
.legal h3 { color: var(--gold); margin: 26px 0 8px; font-size: 1rem; }
.legal p { color: var(--muted); margin-bottom: 12px; }

/* Chat-Widget */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 100; }
.chat-fab {
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--gold); color: #0A0A0A; font-size: 1.4rem; box-shadow: 0 8px 30px rgba(212,175,55,.35);
  transition: transform .18s;
}
.chat-fab:hover { transform: scale(1.06); }
.chat-panel {
  position: absolute; bottom: 72px; right: 0; width: 340px; max-width: calc(100vw - 40px);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  display: none; box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.chat-widget.open .chat-panel { display: block; }
.chat-head {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-3); padding: 14px 18px; font-weight: 600; font-size: .92rem;
  border-bottom: 1px solid var(--line);
}
.chat-close { background: none; border: none; color: var(--muted); font-size: 1rem; cursor: pointer; }
.chat-body { padding: 16px 18px; min-height: 140px; max-height: 280px; overflow-y: auto; }
.chat-intro { color: var(--muted); font-size: .88rem; margin-bottom: 10px; }
.chat-msgs .msg { margin-bottom: 10px; font-size: .9rem; padding: 9px 12px; border-radius: 10px; max-width: 90%; }
.chat-msgs .msg.user { background: var(--gold); color: #0A0A0A; margin-left: auto; }
.chat-msgs .msg.bot { background: var(--bg-3); color: var(--text); }
.chat-form { display: flex; border-top: 1px solid var(--line); }
.chat-form input {
  flex: 1; background: var(--bg-3); border: none; color: var(--text); padding: 14px 16px; outline: none; font-size: .92rem;
}
.chat-form button { background: var(--gold); color: #0A0A0A; border: none; padding: 0 18px; font-weight: 700; cursor: pointer; }

@media (max-width: 640px) {
  .hero { padding: 70px 0 50px; }
  .nav { gap: 14px; }
  .nav a { font-size: .82rem; }
}

/* ---------------------------------------------------------------- Bundesliste */
.hero-small { padding: 80px 0 50px; }
.statbar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; margin-bottom: 70px;
}
.stat { background: var(--bg-2); padding: 26px 20px; text-align: center; }
.stat-zahl { display: block; font-size: 2.1rem; font-weight: 800; color: var(--gold); line-height: 1.1; }
.stat-label { display: block; color: var(--muted); font-size: .8rem; margin-top: 6px; letter-spacing: .04em; }

.listen-toolbar { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.listen-suche {
  flex: 1; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  color: var(--text); padding: 14px 18px; font-size: 1rem; outline: none;
}
.listen-suche:focus { border-color: var(--gold); }
.listen-count {
  background: var(--gold); color: #0A0A0A; font-weight: 800; font-size: .95rem;
  padding: 10px 16px; border-radius: 10px; min-width: 60px; text-align: center;
}
.quellen-stat { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.stat-pill {
  background: var(--bg-3); border: 1px solid var(--line); color: var(--muted);
  font-size: .78rem; padding: 6px 12px; border-radius: 999px; letter-spacing: .03em;
}
.listen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.listen-eintrag {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; transition: border-color .2s;
}
.listen-eintrag:hover { border-color: var(--gold); }
.listen-kopf { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.listen-kopf h3 { font-size: .98rem; margin: 0 0 6px; }
.q-badge {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 999px; padding: 2px 8px; white-space: nowrap;
}
.listen-hinweis { margin-top: 26px; font-size: .82rem; }
.listen-mehr { margin-top: 14px; text-align: center; }

@media (max-width: 640px) {
  .statbar { grid-template-columns: repeat(2, 1fr); }
  .listen-toolbar { flex-direction: column; align-items: stretch; }
}
