/* ============================================================
   germany22bet.com — Satellit 22Bet Deutschland
   Der Rahmen (Kopfleiste/Fussleiste) bleibt im Teal der Marke.
   Innen laufen kühles Grau, Schwarz-Rot-Gold der Flagge und
   ein neoklassischer Spielbank-Look mit scharfen Kanten.
   ============================================================ */

:root {
  --rahmen: #054248;
  --rahmen-panel: #054146;
  --seite: #05343a;
  --de-schwarz: #1a1a1a;
  --de-rot: #dd0000;
  --de-rot-tief: #a80000;
  --de-rot-blass: #fdeceb;
  --de-rot-linie: #f3ccca;
  --de-gold: #ffce00;
  --de-gold-tief: #d1a600;
  --cta-gruen: #2eb256;
  --cta-gruen-tief: #2ca331;
  --tinte: #23262a;
  --tinte-weich: #3a3f45;
  --tinte-blass: #6d747c;
  --grau: #f1f3f5;
  --grau-tief: #e5e8eb;
  --grau-linie: #d5d9de;
  --login-bg: #185b62;
  --radius: 2px;
  --breite: 1200px;
  --sf: "Open Sans", Arial, sans-serif;
  --sf-titel: "Roboto Condensed", "Open Sans", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sf);
  font-size: 15px;
  line-height: 1.7;
  color: var(--tinte);
  background-color: var(--seite);
  /* Technisches Wabenraster über dem Teal der Marke */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='96' viewBox='0 0 56 96'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.05' stroke-width='1.2'%3E%3Cpath d='M28 0l24 14v28L28 56 4 42V14z'/%3E%3Cpath d='M28 48l24 14v28L28 104 4 90V62z'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(1200px 560px at 50% 0%, #0a636b 0%, var(--seite) 60%, #032a2f 100%);
  background-attachment: scroll, fixed;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--de-rot-tief); text-decoration: none; }
a:hover { text-decoration: underline; }

.rahmen {
  max-width: var(--breite);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ FORTSCHRITTSBALKEN ============ */

.fortschritt {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--de-schwarz) 0%, var(--de-schwarz) 33%, var(--de-rot) 33%, var(--de-rot) 66%, var(--de-gold) 66%);
  z-index: 120;
  transition: width .08s linear;
}

/* ============ KOPFLEISTE ============ */

.kopfleiste {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--rahmen);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.kopfleiste__reihe {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
  gap: 18px;
}

.markenlogo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.markenlogo img { height: 44px; width: auto; }

.hauptnavi { display: flex; align-items: center; gap: 4px; margin: 0 auto; }

.hauptnavi a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 10px 18px;
  border-radius: 38px;
  transition: background .2s;
}
.hauptnavi a:hover { background: rgba(255, 255, 255, .1); text-decoration: none; }
.hauptnavi a.navi--aktiv { background: var(--de-rot); }

.kopfleiste__aktionen { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.kapsel {
  background: var(--cta-gruen);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 11px 26px;
  border-radius: 38px;
  flex-shrink: 0;
  transition: background .2s;
}
.kapsel:hover { background: var(--cta-gruen-tief); text-decoration: none; }
.kapsel--dunkel { background: var(--login-bg); }
.kapsel--dunkel:hover { background: #0c4a50; }

.flagge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}
.flagge svg {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 26px; height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .25s, opacity .25s;
}
.burger.burger--x span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.burger--x span:nth-child(2) { opacity: 0; }
.burger.burger--x span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.klappmenue {
  display: none;
  background: var(--rahmen-panel);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.klappmenue.klappmenue--offen { display: block; }
.klappmenue a {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s;
}
.klappmenue a:hover { background: rgba(255, 255, 255, .07); text-decoration: none; }

.klappmenue__aktionen {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px 22px;
}
.klappmenue__aktionen a {
  flex: 1 1 0;
  max-width: 190px;
  padding: 13px 18px;
  border: 0;
  border-radius: 38px;
  background: var(--cta-gruen);
  transition: background .2s;
}
.klappmenue__aktionen a:hover { background: var(--cta-gruen-tief); }
.klappmenue__aktionen a.klappmenue__dunkel { background: var(--login-bg); }
.klappmenue__aktionen a.klappmenue__dunkel:hover { background: #0c4a50; }

/* ============ TITELBILD (Hero) ============ */

.titelbild {
  margin-top: 72px;
  background: linear-gradient(128deg, #02191d 0%, var(--rahmen) 55%, #0a636b 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--de-gold);
}

.titelbild__reihe {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 52px 0;
  min-height: 420px;
  position: relative;
  z-index: 1;
}

.titelbild__hintergrund {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--breite));
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.titelbild__hintergrund::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2, 20, 23, .95) 0%, rgba(4, 48, 53, .74) 40%, rgba(10, 99, 107, .1) 74%);
}

.titelbild__text { flex: 1 1 auto; max-width: 640px; position: relative; z-index: 1; }

.titelbild h1 {
  font-family: var(--sf-titel);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.14;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.titelbild h1 .glanz { color: var(--de-gold); text-shadow: 0 0 16px rgba(255, 206, 0, .35); }

.titelbild__lead {
  color: rgba(255, 255, 255, .93);
  font-size: 17px;
  margin-bottom: 26px;
  max-width: 560px;
}

.titelbild__knoepfe { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.plakette {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, .38);
  border-left: 4px solid var(--de-gold);
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
}
.plakette .stern { color: var(--de-gold); }
.titelbild__notiz { margin-bottom: 16px; }

/* ============ KNÖPFE ============ */

.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sf);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  padding: 14px 32px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s, color .2s, border-color .2s;
  text-align: center;
}
.knopf:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 0, 0, .3); }
.knopf--spielen {
  background: var(--de-schwarz);
  color: var(--de-gold);
  box-shadow: inset 0 0 0 2px var(--de-gold);
}
.knopf--spielen:hover { background: #000; box-shadow: inset 0 0 0 2px var(--de-gold), 0 6px 16px rgba(0, 0, 0, .35); }
.knopf--bonus { background: var(--de-rot); }
.knopf--bonus:hover { background: var(--de-rot-tief); }
.knopf--gruen { background: var(--cta-gruen); }
.knopf--gruen:hover { background: var(--cta-gruen-tief); }
.knopf--leer {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .6);
}
.knopf--leer:hover { background: rgba(255, 255, 255, .14); }
.knopf svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============ INHALT / KÄSTEN ============ */

.inhalt { padding: 30px 0 26px; }
.inhalt .rahmen > *:last-child { margin-bottom: 0; }

.kasten {
  background: var(--grau);
  border: 1px solid var(--grau-linie);
  border-top: 4px solid var(--de-schwarz);
  border-bottom: 4px solid var(--de-gold);
  border-radius: var(--radius);
  padding: 32px 40px 34px;
  margin-bottom: 24px;
  box-shadow: 0 3px 16px rgba(0, 16, 18, .24);
}

.kasten > *:last-child { margin-bottom: 0; }

.kasten h2 {
  font-family: var(--sf-titel);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.24;
  text-transform: uppercase;
  color: var(--de-schwarz);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--de-rot);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.kasten h2::before {
  content: "";
  flex-shrink: 0;
  width: 30px;
  height: 26px;
  margin-top: 3px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Brandenburger Tor als Silhouette */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 26'%3E%3Cg fill='%23d1a600'%3E%3Crect x='1' y='23' width='28' height='3'/%3E%3Crect x='2' y='7' width='26' height='2.6'/%3E%3Crect x='3.2' y='10' width='2.6' height='13'/%3E%3Crect x='8.2' y='10' width='2.6' height='13'/%3E%3Crect x='13.7' y='10' width='2.6' height='13'/%3E%3Crect x='19.2' y='10' width='2.6' height='13'/%3E%3Crect x='24.2' y='10' width='2.6' height='13'/%3E%3Crect x='9' y='2.6' width='12' height='4'/%3E%3C/g%3E%3Cg fill='%23dd0000'%3E%3Crect x='13' y='0' width='4' height='2.2'/%3E%3C/g%3E%3C/svg%3E");
}

.kasten h3 {
  font-family: var(--sf-titel);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--tinte-weich);
  margin: 26px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--de-rot);
}

.kasten p { margin-bottom: 14px; }
.kasten ol { margin: 0 0 16px 22px; }
.kasten li { margin-bottom: 8px; }

.kasten ul {
  list-style: none;
  margin: 0 0 16px;
}
.kasten ul li {
  position: relative;
  padding-left: 30px;
}
.kasten ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .22em;
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../bilder/punkt-haupt.webp");
}

.kleingedrucktes {
  font-size: 13.5px;
  color: var(--tinte-blass);
  font-style: italic;
}

/* ============ BILDTAFEL ============ */

.bildtafel {
  margin: 20px 0 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 16, 18, .2);
  border: 1px solid var(--grau-linie);
  border-left: 5px solid var(--de-gold);
}
.bildtafel img { width: 100%; }
.bildtafel figcaption {
  background: var(--de-schwarz);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-top: 3px solid var(--de-rot);
}

/* ============ BROTKRUMEN ============ */

.brotkrumen {
  margin-bottom: 14px;
  font-size: 13px;
}
.brotkrumen ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.brotkrumen li { color: rgba(255, 255, 255, .78); }
.brotkrumen li + li::before { content: "|"; margin-right: 6px; color: var(--de-gold); }
.brotkrumen a { color: #fff; }
.brotkrumen a:hover { color: var(--de-gold); }

/* ============ TABELLEN ============ */

.tabellenbox {
  margin: 18px 0;
  border: 1px solid var(--grau-linie);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0, 16, 18, .12);
  background: #fbfcfd;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  table-layout: auto;
}

thead th {
  background: linear-gradient(180deg, #2c2f34 0%, var(--de-schwarz) 100%);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .03em;
  padding: 11px 12px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 3px solid var(--de-gold);
}

tbody td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--grau-linie);
  vertical-align: top;
}
tbody tr:nth-child(even) { background: var(--grau-tief); }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
tbody td, tbody th { transition: background-color .15s ease; }
tbody tr:hover td { background: var(--de-rot-blass); }
tbody tr:hover th { background: var(--de-rot-linie); }
tbody th {
  padding: 11px 12px;
  border-bottom: 1px solid var(--grau-linie);
  text-align: left;
  background: var(--de-rot-blass);
  color: var(--tinte-weich);
  font-weight: 600;
  vertical-align: top;
}

/* Breite Tabellen: Kopfzeilen dürfen umbrechen, damit die Daten Platz behalten */
table.tabelle--schmal { font-size: 12.5px; }
table.tabelle--schmal thead th {
  font-size: 11px;
  padding: 10px 9px;
  white-space: normal;
  hyphens: none;
}
table.tabelle--schmal tbody td { padding: 10px 9px; }
table.tabelle--schmal tbody td:nth-child(2) { min-width: 122px; }

/* ============ BILANZ (Vorteile / Nachteile) ============ */

.bilanz { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 18px 0; }
.bilanz--pro, .bilanz--kontra { padding: 20px 22px; border-radius: var(--radius); }
.bilanz--pro { background: #edf6f0; border: 1px solid #c9e4d2; border-left: 4px solid var(--cta-gruen-tief); }
.bilanz--kontra { background: var(--de-rot-blass); border: 1px solid var(--de-rot-linie); border-left: 4px solid var(--de-rot); }
.bilanz--pro h3, .bilanz--kontra h3 {
  margin-top: 0;
  font-size: 18px;
  border-left: 0;
  padding-left: 0;
  text-align: center;
}
.bilanz--pro h3 { color: var(--cta-gruen-tief); }
.bilanz--kontra h3 { color: var(--de-rot-tief); }
.bilanz--pro ul, .bilanz--kontra ul { margin: 0; }
.bilanz--pro ul li::before { background-image: url("../bilder/punkt-gut.webp"); }
.bilanz--kontra ul li::before { background-image: url("../bilder/punkt-schlecht.webp"); }

/* ============ SCHRITTE ============ */

.schritte { counter-reset: schritt; list-style: none; margin: 16px 0 !important; }
.schritte li {
  counter-increment: schritt;
  position: relative;
  padding: 0 0 14px 52px;
  margin: 0;
}
.schritte li::before {
  content: counter(schritt);
  position: absolute;
  left: 0; top: -2px;
  width: 34px; height: 34px;
  background: var(--de-schwarz);
  border-bottom: 3px solid var(--de-gold);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ ANGEBOTE (Banner) ============ */

.angebot {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(120deg, #02191d 0%, var(--rahmen) 68%, #0a636b 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  padding: 34px 36px;
  margin-bottom: 24px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 16, 18, .3);
}
.angebot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2, 20, 23, .94) 0%, rgba(4, 48, 53, .76) 46%, rgba(10, 99, 107, .1) 78%);
  pointer-events: none;
}
.angebot--heiss::before {
  background: linear-gradient(100deg, rgba(28, 2, 2, .94) 0%, rgba(120, 8, 8, .76) 46%, rgba(221, 0, 0, .1) 78%);
}

.angebot__text { flex: 1; max-width: 420px; position: relative; z-index: 1; }
.angebot__text .angebot__cta { margin-top: 18px; }

.angebot__label {
  color: var(--de-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 4px;
}
.angebot__titel {
  font-family: var(--sf-titel);
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 6px;
}
.angebot__sub { color: rgba(255, 255, 255, .88); font-size: 14px; margin-bottom: 0; }

/* ============ APP-STREIFEN ============ */

.handy {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(115deg, #02191d 0%, var(--rahmen) 60%, #0a636b 100%);
  border-radius: var(--radius);
  padding: 28px 36px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 16, 18, .3);
}
.handy__foto { flex: 0 0 190px; position: relative; z-index: 1; }
.handy__foto img { border-radius: var(--radius); }
.handy__text { flex: 1; position: relative; z-index: 1; }
.handy__titel {
  font-family: var(--sf-titel);
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 6px;
}
.handy__sub { color: rgba(255, 255, 255, .88); font-size: 14px; }
.handy__stores {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #10151a;
  border: 1px solid var(--de-gold);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 22px 10px 16px;
  transition: background .2s;
  min-width: 218px;
}
.store:hover { background: #1e262e; text-decoration: none; }
.store svg { width: 30px; height: 30px; flex-shrink: 0; }
.store__txt { line-height: 1.2; text-align: center; }
.store__mini { display: block; font-size: 11px; opacity: .82; }
.store__gross { display: block; font-size: 17px; font-weight: 700; }

/* ============ TISCHSPIELE ============ */

.tische {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 18px 0 0;
}
.tisch {
  flex: 1 1 300px;
  max-width: calc((100% - 36px) / 3);
  background: #fff;
  border: 1px solid var(--grau-linie);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.tisch:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 16, 18, .18);
  border-color: var(--de-gold);
}
.tisch__icon {
  width: 78px;
  height: 78px;
  padding: 13px;
  box-sizing: border-box;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #33383e 0%, var(--de-schwarz) 70%);
  box-shadow: 0 0 0 2px var(--de-gold), 0 4px 12px rgba(0, 16, 18, .22);
  transition: box-shadow .18s ease;
}
.tisch:hover .tisch__icon {
  box-shadow: 0 0 0 3px var(--de-gold), 0 6px 16px rgba(0, 16, 18, .3);
}
.tisch__name {
  font-family: var(--sf-titel);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--de-schwarz);
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  position: relative;
}
.tisch__name::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  background: linear-gradient(90deg, var(--de-gold) 0%, var(--de-gold-tief) 100%);
  border-radius: 2px;
}
.tisch p { margin-bottom: 0; font-size: 14.5px; }

/* ============ SPIELAUTOMATEN ============ */

.spielautomaten {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 20px 0 6px;
}
.spielautomat {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #10151a;
  border: 1px solid var(--de-gold);
  box-shadow: 0 3px 12px rgba(0, 16, 18, .2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.spielautomat:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0, 16, 18, .32); text-decoration: none; }
.spielautomat__kunst { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .35s ease; }
.spielautomat:hover .spielautomat__kunst { transform: scale(1.06); }
.spielautomat__glanz {
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left .55s ease;
}
.spielautomat:hover .spielautomat__glanz { left: 115%; }
.spielautomat__leiste {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 12px 10px;
  background: linear-gradient(180deg, rgba(10, 12, 14, 0) 0%, rgba(10, 12, 14, .86) 55%, rgba(10, 12, 14, .96) 100%);
}
.spielautomat__marke {
  display: block;
  color: var(--de-gold);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.spielautomat__name {
  display: block;
  color: #fff;
  font-family: var(--sf-titel);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}
.spielautomaten-cta { display: flex; justify-content: center; margin-top: 18px; }

/* ============ STIMMEN (endloses Karussell) ============ */

.stimmen { position: relative; margin-top: 22px; }

.stimmen__bahn {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 2px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  overscroll-behavior-x: contain;
}
.stimmen__bahn::-webkit-scrollbar { display: none; }
.stimmen__bahn.stimmen__bahn--ziehen { cursor: grabbing; scroll-behavior: auto; }

.stimme {
  flex: 0 0 calc((100% - 36px) / 3);
  background: #fff;
  border: 1px solid var(--grau-linie);
  border-top: 3px solid var(--de-schwarz);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}
.stimme:hover {
  box-shadow: 0 8px 22px rgba(0, 16, 18, .16);
  border-color: var(--de-gold);
  border-top-color: var(--de-gold);
  background: #fffdf4;
}
.stimme::before {
  content: "\201C";
  position: absolute;
  top: 2px; right: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 84px;
  line-height: 1;
  color: var(--de-gold);
  opacity: .3;
  pointer-events: none;
}

.stimme__kopf { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.stimme__foto {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--de-gold);
  box-shadow: 0 2px 8px rgba(0, 16, 18, .2);
}
.stimme__wer { min-width: 0; }
.stimme__name {
  display: block;
  font-family: var(--sf-titel);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--de-schwarz);
}
.stimme__reihe { display: flex; align-items: center; gap: 8px; margin-top: 3px; }
.stimme__note {
  background: var(--de-rot);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 2px 10px;
  flex-shrink: 0;
}
.stimme__sterne { color: var(--de-gold-tief); font-size: 13px; letter-spacing: 2px; }
.stimme__text { font-style: italic; color: var(--tinte); font-size: 14.5px; margin: 0; position: relative; z-index: 1; }

.stimmen__steuerung {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}
.stimmen__pfeil {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--de-schwarz);
  color: var(--de-gold);
  border: 2px solid var(--de-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.stimmen__pfeil:hover { background: var(--de-rot); color: #fff; border-color: var(--de-rot); }
.stimmen__pfeil svg { width: 18px; height: 18px; }

.stimmen__punkte { display: flex; align-items: center; gap: 8px; }
.stimmen__punkt {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--grau-linie);
  cursor: pointer;
  transition: background .2s, width .2s;
}
.stimmen__punkt:hover { background: var(--de-rot-linie); }
.stimmen__punkt.stimmen__punkt--aktiv { background: var(--de-rot); width: 24px; border-radius: 6px; }

/* ============ GESAMTNOTE ============ */

.gesamtnote {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px 12px;
  background: linear-gradient(120deg, var(--de-schwarz) 0%, #34383e 100%);
  color: #fff;
  border-radius: var(--radius);
  border-left: 6px solid var(--de-rot);
  border-right: 6px solid var(--de-gold);
  padding: 18px 26px;
  margin-top: 18px;
}
.gesamtnote__wert {
  font-family: var(--sf-titel);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--de-gold);
}
.gesamtnote__label { font-size: 15px; font-weight: 700; text-transform: uppercase; }

/* ============ HARMONIKA (FAQ) ============ */

.harmonika-liste { margin-top: 6px; }
.harmonika { border-bottom: 1px solid var(--grau-linie); }
.harmonika summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
  color: var(--tinte-weich);
  padding: 15px 34px 15px 0;
  position: relative;
  list-style: none;
  font-size: 15.5px;
  transition: color .18s ease;
}
.harmonika summary::-webkit-details-marker { display: none; }
.harmonika summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: var(--radius);
  background: var(--de-schwarz);
  color: var(--de-gold);
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s, color .2s;
}
.harmonika summary:hover { color: var(--de-schwarz); }
.harmonika summary:hover::after { background: var(--de-rot); color: #fff; }
.harmonika[open] summary::after { content: "\2212"; background: var(--de-rot); color: #fff; }
.harmonika[open] summary:hover::after { background: var(--de-rot-tief); }
.harmonika .harmonika__koerper { padding: 0 0 16px; }
.harmonika .harmonika__koerper p { margin-bottom: 8px; }

/* ============ REDAKTION ============ */

.redaktion {
  background: #fff;
  border-left: 5px solid var(--de-schwarz);
  border-right: 5px solid var(--de-gold);
  border-radius: var(--radius);
  padding: 22px 26px;
  font-style: italic;
}
.redaktion__name { font-weight: 700; font-style: normal; color: var(--de-schwarz); }

/* ============ FUSSLEISTE ============ */

.fussleiste {
  background: var(--rahmen);
  color: rgba(255, 255, 255, .8);
  padding: 44px 0 0;
}
.fussleiste__raster {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}
.fussleiste__ueber img { height: 40px; width: auto; margin-bottom: 14px; }
.fussleiste__ueber p { font-size: 13px; line-height: 1.6; }

.fussleiste__spalte h4 {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-bottom: 8px;
  position: relative;
}
.fussleiste__spalte h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: #2da6b1;
  border-radius: 2px;
}
.fussleiste__spalte ul { list-style: none; margin-top: 12px; }
.fussleiste__spalte li { margin-bottom: 9px; }
.fussleiste__spalte a { color: rgba(255, 255, 255, .7); font-size: 14px; }
.fussleiste__spalte a:hover { color: #fff; }

.fussleiste__warnung {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.alter {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border: 2px solid #f04c44;
  color: #f04c44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.fussleiste__warnung p { font-size: 12.5px; line-height: 1.55; margin: 0; }

.fussleiste__basis {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
}

/* ============ NACH-OBEN-KNOPF ============ */

.nachoben {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--de-schwarz);
  color: var(--de-gold);
  border: 2px solid var(--de-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s, color .2s;
  z-index: 90;
}
.nachoben.nachoben--sichtbar { opacity: 1; visibility: visible; transform: translateY(0); }
.nachoben:hover { background: var(--de-rot); color: #fff; border-color: var(--de-rot); }
.nachoben svg { width: 22px; height: 22px; }

/* ============ EINBLENDEN BEIM SCROLLEN ============ */

.einblenden { opacity: 0; transform: translateY(18px); }
.einblenden.einblenden--sichtbar {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease, transform .5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .einblenden { opacity: 1; transform: none; }
}

/* ============ 404 ============ */

.verirrt {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
}
.verirrt__code {
  font-family: var(--sf-titel);
  font-size: 130px;
  font-weight: 700;
  color: var(--de-gold);
  line-height: 1;
  text-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}
.verirrt h1 { color: #fff; font-family: var(--sf-titel); font-size: 32px; text-transform: uppercase; margin: 12px 0; }
.verirrt p { color: rgba(255, 255, 255, .88); margin-bottom: 26px; }

/* ============ RECHTLICHE SEITEN ============ */

.dok-datum { font-size: 13.5px; color: var(--tinte-blass); margin-bottom: 18px; }

/* ============ RESPONSIVE ============ */

@media (max-width: 1080px) {
  .kopfleiste__reihe { gap: 10px; }
  .markenlogo img { height: 38px; }
  .hauptnavi { gap: 2px; }
  .hauptnavi a { padding: 9px 11px; font-size: 12px; }
  .kapsel { padding: 10px 16px; font-size: 12px; }
  .kopfleiste__aktionen { gap: 8px; }
  .flagge { font-size: 12px; gap: 6px; }
  .flagge svg { width: 26px; height: 17px; }
}

@media (max-width: 1024px) {
  .titelbild h1 { font-size: 36px; }
  .fussleiste__raster { grid-template-columns: 1fr 1fr; }
  .kasten { padding: 28px 26px; }
  .spielautomaten { grid-template-columns: repeat(3, 1fr); }
  .tisch { max-width: calc((100% - 18px) / 2); }
  .stimme { flex-basis: calc((100% - 18px) / 2); }

  .tabellenbox {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tabellenbox table { min-width: 500px; }
  .tabellenbox thead th,
  .tabellenbox tbody td,
  .tabellenbox tbody th { min-width: 140px; }
  .tabellenbox table.tabelle--schmal thead th,
  .tabellenbox table.tabelle--schmal tbody td,
  .tabellenbox table.tabelle--schmal tbody th { min-width: 120px; }
  .tabellenbox tbody tr > *:first-child,
  .tabellenbox thead th:first-child { min-width: 160px; }
}

@media (max-width: 860px) {
  .hauptnavi, .kopfleiste__aktionen { display: none; }
  .flagge { margin-left: auto; }
  .burger { display: block; }
  .titelbild__reihe { flex-direction: column; align-items: flex-start; padding: 34px 0; min-height: 0; }
  .titelbild__text { width: 100%; max-width: 100%; }
  .titelbild__hintergrund::after {
    background: linear-gradient(180deg, rgba(2, 20, 23, .7) 0%, rgba(2, 20, 23, .7) 60%, rgba(2, 20, 23, .68) 100%);
  }
  .titelbild h1 { font-size: 30px; }
  .titelbild h1, .titelbild__lead, .brotkrumen {
    text-shadow:
      0 0 2px rgba(0, 12, 14, .98),
      0 1px 4px rgba(0, 12, 14, .95),
      0 2px 12px rgba(0, 12, 14, .92);
  }
  .bilanz { grid-template-columns: 1fr; }
  .angebot, .handy { flex-direction: column; align-items: flex-start; }
  .angebot::before, .angebot--heiss::before { background: none; }
  .angebot__text {
    max-width: 100%;
    background: rgba(2, 20, 23, .74);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radius);
    padding: 22px 20px;
  }
  .angebot--heiss .angebot__text { background: rgba(28, 2, 2, .74); }
  .handy__foto { flex-basis: auto; max-width: 280px; }
  .handy__stores { flex-direction: row; flex-wrap: wrap; justify-content: center; width: 100%; }
  .store { flex: 1 1 218px; max-width: 300px; }
  .fussleiste__basis { flex-direction: column; text-align: center; }
}

@media (max-width: 700px) {
  /* Auf dem Handy werden die Tafeln um die Hälfte höher: 3:1 wird zu 2:1 */
  .bildtafel img {
    aspect-ratio: 2 / 1;
    object-fit: cover;
    object-position: center;
  }

  .titelbild__hintergrund { background-position: 70% center; }
  .spielautomaten { grid-template-columns: repeat(2, 1fr); }
  .tisch { max-width: 100%; }
  .stimme { flex-basis: 100%; }
}

@media (max-width: 560px) {
  /* Lange deutsche Komposita dürfen auf schmalen Displays trennen */
  .kasten h2, .kasten h3, .kasten p, .kasten li,
  .titelbild h1, .titelbild__lead,
  .angebot__titel, .angebot__sub, .handy__titel, .handy__sub,
  .tisch__name, .harmonika summary, .verirrt h1, .verirrt p,
  .fussleiste__ueber p, .fussleiste__warnung p, .fussleiste__spalte a {
    -webkit-hyphens: auto;
    hyphens: auto;
  }

  .fussleiste__raster { grid-template-columns: 1fr; text-align: center; }
  .fussleiste__ueber img { margin-left: auto; margin-right: auto; }
  .fussleiste__warnung { flex-direction: column; text-align: center; }
  .kasten { padding: 22px 16px; }
  .kasten h2 { font-size: 23px; }
  .titelbild h1 { font-size: 26px; }
  .verirrt__code { font-size: 90px; }

  .titelbild__text,
  .angebot__text,
  .handy__text { text-align: center; width: 100%; }
  .titelbild__knoepfe,
  .angebot__cta,
  .handy__stores,
  .brotkrumen ol { justify-content: center; }
  .angebot__cta, .handy__stores { display: flex; width: 100%; }
  .titelbild__reihe, .angebot, .handy { align-items: center; }
  .titelbild__notiz { align-self: center; }
}

@media (max-width: 450px) {
  .rahmen { padding: 0 10px; }
  .kopfleiste__reihe { height: 60px; gap: 10px; }
  .markenlogo img { height: 34px; }
  .flagge svg { width: 26px; height: 17px; }
  .flagge { font-size: 12px; gap: 6px; }
  .titelbild { margin-top: 60px; }
  .kasten { padding: 18px 12px; }
  .angebot, .handy { padding: 20px 14px; }
  .titelbild__reihe { padding: 28px 0; }
  thead th, tbody td, tbody th { padding: 8px 6px; }
}

@media (max-width: 400px) {
  .klappmenue__aktionen { flex-direction: column; align-items: center; }
  .klappmenue__aktionen a { flex: 0 0 auto; width: 100%; max-width: 260px; }
}

@media (max-width: 360px) {
  .kopfleiste__reihe { height: 54px; gap: 8px; }
  .markenlogo img { height: 28px; }
  .flagge svg { width: 22px; height: 15px; }
  .flagge { font-size: 11px; gap: 5px; }
  .burger { padding: 6px; }
  .burger span { width: 22px; height: 2.5px; margin: 4px 0; }
  .burger.burger--x span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .burger.burger--x span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .titelbild { margin-top: 54px; }
  .verirrt { min-height: calc(100vh - 54px); }
}

/* ============ 22BET COUNTRY LINKS ============ */
.fussleiste__laender {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0 24px;
}
.fussleiste__laender-titel {
  display: inline-block;
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 8px;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.fussleiste__laender-titel::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: rgb(45, 166, 177);
  border-radius: 2px;
}
.fussleiste__laender-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.fussleiste__land {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.fussleiste__land:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  text-decoration: none;
}
.fussleiste__land.fussleiste__land--aktuell {
  background: rgba(233, 185, 73, .1);
  border-color: #e9b949;
  color: #fff;
}
.fussleiste__flagge {
  flex-shrink: 0;
  width: 24px;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}
.fussleiste__flagge svg { display: block; width: 100%; height: 100%; }
@media (max-width: 560px) {
  .fussleiste__laender { text-align: center; }
  /* two even columns; every name stays on one line */
  .fussleiste__laender-liste { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .fussleiste__laender-liste li { min-width: 0; }
  .fussleiste__land { display: flex; width: 100%; min-width: 0; padding: 7px 10px 7px 7px; font-size: 12.5px; text-align: left; white-space: nowrap; }
  .fussleiste__land-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
}
@media (max-width: 380px) {
  .fussleiste__laender-liste { gap: 6px; }
  .fussleiste__land { gap: 6px; padding: 6px 8px 6px 6px; font-size: 11.5px; }
  .fussleiste__flagge { width: 18px; height: 12px; }
}
@media (max-width: 339px) {
  .fussleiste__land { gap: 5px; padding: 6px 6px 6px 5px; font-size: 11px; letter-spacing: -.01em; }
  .fussleiste__flagge { width: 16px; height: 11px; }
}
/* up to 330px: one pill per row, back to the regular size */
@media (max-width: 330px) {
  .fussleiste__laender-liste { grid-template-columns: minmax(0, 1fr); }
  .fussleiste__land { gap: 9px; padding: 7px 12px 7px 8px; font-size: 12.5px; letter-spacing: normal; }
  .fussleiste__flagge { width: 22px; height: 15px; }
}
