:root {
  --accent: #7c3aed; /* wird pro Seite überschrieben */
  --bg: #0f172a;
  --panel-bg: rgba(17,24,39,.92);
  --panel-border: rgba(51,65,85,.6);
  --text-main: #e5e7eb;
  --text-dim: #94a3b8;
  --chip-bg: #0b1220;
  --chip-border: #1f2937;
  --chip-text: #cbd5e1;
  --btn-text-dark: #0b1220;
  --btn-text-alt: #e5e7eb;
  --shadow-1: rgba(124,58,237,.25); /* default violett */
  --shadow-2: rgba(124,58,237,.15);
}

/* Seite generell */
body {
  min-height: 100dvh;
  margin: 0;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--text-main);
  font-family: system-ui, Segoe UI, Roboto, sans-serif;
}

/* Card */
.wrap {
  max-width: 760px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow:
    0 0 25px var(--shadow-1),
    0 0 80px var(--shadow-2);
}

/* Bild */
.hero {
  display: block;
  width: 80%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 18px;
  border-radius: 14px;
  box-shadow:
    0 0 30px var(--shadow-1),
    0 0 60px var(--shadow-2);
  filter: brightness(1.12) contrast(1.06);
  transition: transform .3s ease, filter .3s ease;
}
.hero:hover {
  transform: scale(1.02);
  filter: brightness(1.22);
}

/* Headline + Sub */
h1 {
  font-size: clamp(28px,3vw,40px);
  margin: 8px 0 8px;
  font-weight: 700;
}
.lead {
  color: var(--text-dim);
  margin: 0 0 16px;
  line-height: 1.4;
  font-weight: 400;
}

/* Gag-/Sprechblasen-Bereich */
.char {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 16px 0 20px;
  text-align: left;
  flex-wrap: wrap;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.mug {
  width: 36px;
  height: 36px;
}

/* Buttons */
.row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn {
  background: var(--accent);
  color: var(--btn-text-dark);
  border: none;
  border-radius: 10px;
  padding: .6rem .9rem;
  text-decoration: none;
  font-weight: 700;
  transition: filter .2s, background .2s;
}
.btn:hover {
  filter: brightness(1.05);
}
.btn.ghost {
  background: transparent;
  color: var(--btn-text-alt);
  border: 1px solid #334155;
}
.char {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 16px auto 20px;
  text-align: center; /* <- wichtig für Zeilenumbruch mittig */
}

.char .lead {
  display: block;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dim);
  font-weight: 400;
}