:root {
  --hintergrund: #06101f;
  --hintergrund-2: #0b1830;
  --karte: rgba(10, 22, 45, 0.88);
  --karte-2: rgba(12, 28, 57, 0.96);
  --gold: #ffc84f;
  --gold-dunkel: #d89514;
  --text: #eef3ff;
  --muted: #b8c6ea;
  --linie: rgba(255, 255, 255, 0.12);
  --schatten: 0 22px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --breite: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 79, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(89, 138, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #05101d 0%, #08162f 46%, #07111f 100%);
  line-height: 1.7;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.innenbreite {
  width: min(var(--breite), calc(100% - 32px));
  margin: 0 auto;
}

.sprunglink {
  position: absolute;
  left: -9999px;
  top: 0;
}

.sprunglink:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
}

.kopfbereich {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 13, 27, 0.82);
  border-bottom: 1px solid var(--linie);
}

.kopfzeile {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.marke {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.logozeichen {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: #08162f;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffe9a0, var(--gold), var(--gold-dunkel));
  box-shadow: 0 10px 25px rgba(255, 200, 79, 0.28);
}

.logotext {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logotext strong {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.logotext span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hauptnavigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

.hauptnavigation a,
.fussblock a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.hauptnavigation a:hover,
.fussblock a:hover {
  color: var(--text);
}

.kopfaktionen,
.heldenaktionen {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.knopf,
.tabellenknopf,
.schwebender-knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.knopf:hover,
.tabellenknopf:hover,
.schwebender-knopf:hover {
  transform: translateY(-2px);
}

.knopf-primaer,
.tabellenknopf,
.schwebender-knopf {
  color: #07111f;
  background: linear-gradient(135deg, #ffe9a0, var(--gold), var(--gold-dunkel));
  box-shadow: 0 14px 30px rgba(255, 200, 79, 0.28);
}

.knopf-sekundaer {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.knopf {
  min-height: 48px;
  padding: 0 20px;
}

.knopf.gross {
  min-height: 56px;
  padding: 0 26px;
  font-size: 1rem;
}

.heldenbereich {
  padding: 72px 0 36px;
}

.heldengitter {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: center;
}

.heldentext,
.heldenbildkasten,
.abschnittskarte {
  border: 1px solid var(--linie);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(12, 28, 57, 0.88), rgba(8, 20, 41, 0.96));
  box-shadow: var(--schatten);
}

.heldentext {
  padding: 38px;
}

.heldenbildkasten {
  padding: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.18;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.6rem, 2.2vw, 2.45rem);
}

h3 {
  font-size: 1.16rem;
}

.vorspann,
.einleitung p,
.abschnittskarte p,
.abschnittskarte li,
.abschnittskarte td,
.abschnittskarte th {
  color: var(--muted);
}

.merkmalreihe {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.merkmalreihe li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #f5f8ff;
  font-size: 0.96rem;
}

.einleitung {
  margin-bottom: 30px;
}

.abschnittskarte {
  padding: 34px;
  margin-bottom: 26px;
}

.abschnittskarte a {
  color: #ffe39a;
}

.schrittliste {
  margin: 20px 0 0;
  padding-left: 22px;
}

.schrittliste li {
  margin-bottom: 10px;
}

.cta-feld {
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 200, 79, 0.22);
  background: linear-gradient(180deg, rgba(255, 200, 79, 0.1), rgba(255, 255, 255, 0.03));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.tabellenrahmen {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--linie);
  background: rgba(255, 255, 255, 0.03);
  margin: 22px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 16px 14px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

th {
  color: #fff9de;
  background: rgba(255, 200, 79, 0.08);
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.tabellenknopf {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

.spielmatrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.spielkarte {
  text-decoration: none;
  color: var(--text);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  padding: 18px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.spielkarte:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 200, 79, 0.35);
}

.vorschaubild {
  height: 92px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #08162f;
  background: linear-gradient(135deg, #ffefb5, #ffc84f, #c98110);
}

.spielkarte strong {
  font-size: 1rem;
}

.spielkarte span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-liste {
  display: grid;
  gap: 14px;
}

.faq-eintrag {
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.schwebender-knopf {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 56px;
  padding: 0 24px;
}

.fussbereich {
  margin-top: 50px;
  padding: 46px 0 24px;
  border-top: 1px solid var(--linie);
  background: rgba(2, 7, 14, 0.68);
}

.fussgitter {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}

.fussblock ul {
  margin: 0;
  padding-left: 18px;
}

.adressblock {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  color: #fff7da;
}

.hinweistext {
  font-size: 0.88rem;
}

.fussleiste {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1080px) {
  .kopfzeile,
  .heldengitter,
  .fussgitter {
    grid-template-columns: 1fr;
  }

  .hauptnavigation {
    justify-content: flex-start;
  }

  .spielmatrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .kopfbereich {
    position: static;
  }

  .kopfzeile {
    padding: 16px 0;
  }

  .heldenbereich {
    padding-top: 32px;
  }

  .heldentext,
  .abschnittskarte {
    padding: 24px;
  }

  .spielmatrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schwebender-knopf {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 520px) {
  .spielmatrix {
    grid-template-columns: 1fr;
  }

  .knopf,
  .knopf.gross,
  .tabellenknopf {
    width: 100%;
  }
}
