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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0d0d1a;
  color: #FFFFFF;
  min-height: 100vh;
}

/* Header */
.haupt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #151522;
  border-bottom: 1px solid #1f1f2e;
  position: sticky;
  top: 0;
  z-index: 101;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-taste {
  background: #1a1a2e;
  border: 1px solid #2a2a42;
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}

.menu-taste:hover {
  background: #242438;
  border-color: #3a3a52;
}

.marke {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
}

.header-rechts {
  display: flex;
  align-items: center;
  gap: 10px;
}

.suche-taste {
  background: #1a1a2e;
  border: 1px solid #2a2a42;
  color: #8a8aa8;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
  text-decoration: none;
}

.suche-taste:hover {
  background: #242438;
  color: #9a9ab8;
}

.login-taste {
  background: #1a1a2e;
  border: 1px solid #2a2a42;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.login-taste:hover {
  background: #242438;
  border-color: #3a3a52;
}

.registrieren-taste {
  background: linear-gradient(180deg, #ffd700 0%, #f5c842 50%, #e4b034 100%);
  border: none;
  color: #1a1a2e;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s;
  text-decoration: none;
}

.registrieren-taste:hover {
  background: linear-gradient(180deg, #ffe44d 0%, #ffd04f 50%, #f0bc3e 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4);
}

/* Layout */
.haupt-container {
  display: flex;
  position: relative;
}

/* Seitenleiste */
.seitenleiste {
  width: 60px;
  height: calc(100vh - 72px);
  background: #1a232e;
  padding: 15px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid #252f3a;
  position: sticky;
  top: 72px;
  left: 0;
  flex-shrink: 0;
  overflow-y: auto;
  z-index: 50;
}

.seitenleiste::-webkit-scrollbar {
  width: 4px;
}

.seitenleiste::-webkit-scrollbar-track {
  background: transparent;
}

.seitenleiste::-webkit-scrollbar-thumb {
  background: #2a3a4a;
  border-radius: 2px;
}

.seitenleiste-symbole {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.seitenleiste-unten {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #252f3a;
}

.seitenleiste-symbol {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
  position: relative;
  background: #2a3a4a;
  border: 1px solid #3a4a5a;
  text-decoration: none;
  color: inherit;
}

.seitenleiste-symbol:hover {
  background: #3a4a5a;
  transform: translateY(-2px);
}

.verlauf-orange { background: #2a3a4a; border: 1px solid #3a4a5a; }
.verlauf-blau { background: #2a3a4a; border: 1px solid #3a4a5a; }
.verlauf-lila { background: #2a3a4a; border: 1px solid #3a4a5a; }
.verlauf-grun { background: #2a3a4a; border: 1px solid #3a4a5a; }
.verlauf-rosa { background: #2a3a4a; border: 1px solid #3a4a5a; }

.benachrichtigungs-abzeichen {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #00ff88;
  color: #1a1a2e;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #1a232e;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

.download-taste {
  background: #2a3a4a;
  border: 1px solid #3a4a5a;
  color: #fff;
}

/* Erweiterte Seitenleiste */
.seitenleiste-erweitert {
  position: fixed;
  top: 72px;
  left: 0;
  width: 300px;
  height: calc(100vh - 72px);
  background: #0d0d1a;
  z-index: 100;
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  border-right: 1px solid #1f1f2e;
}

.seitenleiste-erweitert.open {
  display: flex;
}

.seitenleiste-erweitert::-webkit-scrollbar {
  width: 6px;
}

.seitenleiste-erweitert::-webkit-scrollbar-track {
  background: transparent;
}

.seitenleiste-erweitert::-webkit-scrollbar-thumb {
  background: #2a2a42;
  border-radius: 3px;
}

.menu-inhalt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}

.menu-element-gross {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  border: 1px solid #2a2a4a;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.menu-element-gross:hover {
  background: linear-gradient(135deg, #202046 0%, #2d2d5c 100%);
  transform: translateY(-1px);
}

.menu-element-gross .symbol {
  font-size: 26px;
}

.menu-element-gross .text {
  font-size: 16px;
  font-weight: 600;
  color: #e8e8f2;
}

.menu-element-gross .abzeichen {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #22c55e;
  color: #fff;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

.menu-reihe {
  display: flex;
  gap: 8px;
}

.menu-element-halb {
  flex: 1;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border-radius: 10px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid #2a2a4a;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.menu-element-halb:hover {
  background: linear-gradient(135deg, #202046 0%, #2d2d5c 100%);
  transform: translateY(-1px);
}

.menu-element-halb .symbol {
  font-size: 22px;
}

.menu-element-halb .text {
  font-size: 13px;
  font-weight: 600;
  color: #e8e8f2;
}

.menu-element-erweiterbar {
  background: #1a1a3a;
  border-radius: 10px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: 1px solid #2a2a4a;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.menu-element-erweiterbar:hover {
  background: #202046;
}

.menu-element-erweiterbar .links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-element-erweiterbar .symbol {
  font-size: 19px;
  opacity: 0.8;
}

.menu-element-erweiterbar .text {
  font-size: 14px;
  font-weight: 500;
  color: #b8b8d2;
}

.menu-element-erweiterbar .pfeil {
  color: #6366f1;
  font-size: 15px;
}

.menu-unten {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #1f1f2e;
  margin-top: 8px;
}

.menu-unten-taste {
  flex: 1;
  background: #1a1a3a;
  border-radius: 10px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid #2a2a4a;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.menu-unten-taste:hover {
  background: #202046;
}

.menu-unten-taste .symbol {
  font-size: 18px;
}

.menu-unten-taste .text {
  font-size: 13px;
  font-weight: 600;
  color: #b8b8d2;
}

.menu-unten-taste.download {
  background: linear-gradient(135deg, #34d399, #10b981);
  border: none;
}

.menu-unten-taste.download .text {
  color: #fff;
}

.uberlagerung {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  display: none;
  backdrop-filter: blur(2px);
}

.uberlagerung.open {
  display: block;
}

/* Inhalt */
.inhalt {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  min-width: 0;
}

.inhalt-innen {
  width: 100%;
  min-width: 300px;
  max-width: 1856px;
}

/* Banner */
.banner-container {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  height: 340px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.banner-container::-webkit-scrollbar {
  display: none;
}

.banner {
  min-width: calc(50% - 10px);
  flex-shrink: 0;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  scroll-snap-align: start;
}

.banner-willkommen {
  background: linear-gradient(135deg, #1a2a3a 0%, #1a4a3a 40%, #2d6b4d 100%);
}

.banner-cashback {
  background: linear-gradient(135deg, #1a2a3a 0%, #1a4a3a 40%, #2d6b4d 100%);
}

.banner-gluck {
  background: linear-gradient(135deg, #2a1a3a 0%, #4a2a5a 40%, #6a3a7a 100%);
}

.banner-bild-platzhalter {
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  width: 280px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  pointer-events: none;
}

.banner-etiketten {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.banner-etikett {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  width: fit-content;
}

.etikett-grun { background: #22c55e; color: #fff; }
.etikett-dunkel { background: rgba(0,0,0,0.35); color: #fff; }
.etikett-lila { background: #a855f7; color: #fff; }
.etikett-gold { background: #ffd700; color: #1a1a2e; }

.banner-titel {
  font-size: 56px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 10px;
  line-height: 1;
}

.banner-gluck .banner-titel {
  font-size: 44px;
}

.banner-untertitel {
  color: #fff;
  font-size: 18px;
  margin-bottom: 22px;
  font-weight: 500;
}

.banner-taste {
  padding: 14px 35px;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s;
  width: fit-content;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.banner-taste:hover {
  transform: translateY(-2px);
}

.taste-dunkel {
  background: #1a1a2e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.taste-dunkel:hover {
  background: #242438;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.taste-lila {
  background: #6366f1;
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.taste-lila:hover {
  background: #7c3aed;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.taste-orange {
  background: linear-gradient(135deg, #ff8e53, #ff6b6b);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
}

.taste-orange:hover {
  background: linear-gradient(135deg, #ffa366, #ff7979);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

/* Punkte */
.punkte {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.punkt {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2a42;
  cursor: pointer;
  transition: all 0.3s;
}

.punkt.aktiv {
  background: #ffd700;
  width: 24px;
  border-radius: 4px;
}

/* Kategorien */
.kategorien {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #151522;
  padding: 12px 15px;
  border-radius: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.kategorien::-webkit-scrollbar {
  display: none;
}

.kategorie {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  background: transparent;
  color: #8a8aa8;
  font-size: 14px;
  font-weight: 500;
  border: none;
  text-decoration: none;
}

.kategorie:hover {
  color: #a8a8c8;
  background: rgba(255, 255, 255, 0.03);
}

.kategorie.aktiv {
  background: linear-gradient(135deg, #ffd700 0%, #f5c842 100%);
  color: #1a1a2e;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.kategorie-symbol {
  font-size: 18px;
  filter: grayscale(100%) brightness(1.2);
}

.kategorie.aktiv .kategorie-symbol {
  filter: grayscale(100%) brightness(0.3);
}

.scroll-taste {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffd700;
  font-size: 20px;
  cursor: pointer;
  padding: 8px 12px;
  margin-left: auto;
  border-radius: 8px;
  transition: all 0.3s;
}

.scroll-taste:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
}

/* Spiele Raster */
.spiele-raster {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.spiel-karte {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #1a1a2e;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  aspect-ratio: 3/4;
}

.spiel-karte:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.spiel-karte-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.spiel-bild {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.spiel-karte:hover .spiel-bild {
  transform: scale(1.05);
}

.spiel-uberlagerung {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  padding: 20px 15px 15px;
  transition: all 0.3s;
}

.spiel-karte:hover .spiel-uberlagerung {
  transform: translateY(-2px);
}

.spiel-titel {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-transform: uppercase;
  line-height: 1.2;
  transition: all 0.3s;
}

.spiel-karte:hover .spiel-titel {
  color: #ffd700;
}

.spiel-anbieter {
  font-size: 12px;
  color: #8a8aa8;
  font-weight: 500;
  text-transform: uppercase;
}

.spiel-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.spiel-karte:hover .spiel-hover {
  opacity: 1;
}

.spiel-taste {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #f5c842);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  transform: scale(0.9);
}

.spiel-karte:hover .spiel-taste {
  transform: scale(1);
}

.spiel-taste:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.6);
}

.spiel-symbol {
  width: 0;
  height: 0;
  border-left: 18px solid #1a1a2e;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.video-abzeichen {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 20px;
  z-index: 2;
  transition: all 0.3s;
}

.spiel-karte:hover .video-abzeichen {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
}

.mehr-anzeigen-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.mehr-anzeigen-taste {
  padding: 14px 40px;
  background: #1a1a2e;
  border: 1px solid #2a2a42;
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mehr-anzeigen-taste:hover {
  background: #242438;
  border-color: #3a3a52;
  transform: translateY(-2px);
}

.mehr-symbol {
  font-size: 18px;
}

/* Heiße Spiele */
.heisse-spiele-sektion {
  margin-top: 50px;
  margin-bottom: 40px;
}

.heisse-spiele-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.heisse-spiele-titel {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.heisse-spiele-steuerung {
  display: flex;
  gap: 12px;
  align-items: center;
}

.slider-pfeil {
  width: 44px;
  height: 44px;
  background: #1a1a2e;
  border: 1px solid #2a2a42;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #8a8aa8;
  font-size: 18px;
}

.slider-pfeil:hover {
  background: #242438;
  border-color: #3a3a52;
  color: #a8a8c8;
}

.heisse-spiele-mehr {
  padding: 12px 24px;
  background: #1a1a2e;
  border: 1px solid #2a2a42;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.heisse-spiele-mehr:hover {
  background: #242438;
  border-color: #3a3a52;
}

.heisse-spiele-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.heisse-spiele-reihe {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.heisse-spiele-reihe::-webkit-scrollbar {
  display: none;
}

.heisses-spiel-karte {
  min-width: 280px;
  background: #1a1a2e;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  border: 1px solid #2a2a42;
  text-decoration: none;
  color: inherit;
}

.heisses-spiel-karte:hover {
  background: #242438;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.heisses-spiel-bild {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.heisses-spiel-info {
  flex: 1;
  min-width: 0;
}

.heisses-spiel-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.heisses-spiel-anbieter {
  font-size: 12px;
  color: #8a8aa8;
  text-transform: lowercase;
}

.heisses-spiel-spielen {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.heisses-spiel-karte:hover .heisses-spiel-spielen {
  background: linear-gradient(135deg, #ffd700, #f5c842);
}

.heisses-spiel-spielen-symbol {
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 2px;
}

.heisses-spiel-karte:hover .heisses-spiel-spielen-symbol {
  border-left-color: #1a1a2e;
}

/* Live Casino */
.live-casino-sektion {
  margin-top: 50px;
  margin-bottom: 40px;
}

.live-casino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.live-casino-titel {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.live-casino-steuerung {
  display: flex;
  gap: 12px;
  align-items: center;
}

.live-casino-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.live-casino-slider::-webkit-scrollbar {
  display: none;
}

.live-casino-karte {
  min-width: 320px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: inherit;
  aspect-ratio: 16/10;
}

.live-casino-karte:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.live-casino-bild {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.live-casino-karte:hover .live-casino-bild {
  transform: scale(1.05);
}

.live-abzeichen {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff3b3b;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 59, 59, 0.4);
  z-index: 2;
}

.live-spielen-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  z-index: 2;
}

.live-casino-karte:hover .live-spielen-symbol {
  opacity: 1;
}

.live-spielen-symbol::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid #1a1a2e;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 5px;
}

.live-casino-uberlagerung {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
  padding: 40px 20px 20px;
  transition: all 0.3s;
}

.live-casino-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  line-height: 1.2;
}

.live-casino-anbieter {
  font-size: 13px;
  color: #8a8aa8;
  text-transform: uppercase;
  font-weight: 500;
}

/* Sektionen */
.sektion-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sektion-header {
  text-align: center;
  margin-bottom: 50px;
}

.sektion-titel {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.sektion-titel .hervorheben {
  background: linear-gradient(135deg, #ffd700 0%, #f5c842 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sektion-untertitel {
  font-size: 17px;
  color: #a8a8c8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Warum Sektion */
.warum-sektion {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #151528 50%, #0d0d1a 100%);
}

.funktionen-raster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.funktion-karte {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 35px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.funktion-karte::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.funktion-karte:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.funktion-karte:hover::before {
  opacity: 1;
}

.funktion-symbol {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
}

.funktion-titel {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.funktion-beschreibung {
  font-size: 14px;
  color: #a8a8c8;
  line-height: 1.7;
}

.cta-container {
  text-align: center;
}

.cta-taste {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 55px;
  background: linear-gradient(180deg, #ffd700 0%, #f5c842 50%, #e4b034 100%);
  color: #1a1a2e;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-taste:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.cta-subtext {
  display: block;
  margin-top: 15px;
  font-size: 15px;
  color: #a8a8c8;
}

/* Start Sektion */
.start-sektion {
  padding: 70px 0;
  background: #0d0d1a;
}

.schritte-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
}

.schritt-karte {
  flex: 1;
  max-width: 350px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 20px;
  padding: 45px 30px 35px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.schritt-karte:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.schritt-karte.hervorgehoben {
  background: linear-gradient(135deg, #2a1a4a 0%, #3a2a60 100%);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
}

.schritt-abzeichen {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700, #f5c842);
  color: #1a1a2e;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.schritt-nummer {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 34px;
  height: 34px;
  background: rgba(99, 102, 241, 0.2);
  border: 2px solid #6366f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #6366f1;
}

.schritt-symbol {
  font-size: 56px;
  margin-bottom: 20px;
}

.schritt-titel {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.schritt-beschreibung {
  font-size: 14px;
  color: #a8a8c8;
  line-height: 1.7;
  margin-bottom: 20px;
}

.schritt-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
  text-align: left;
}

.schritt-highlights span {
  font-size: 13px;
  color: #22c55e;
  padding-left: 5px;
}

.schritt-taste {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #6366f1;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
}

.schritt-taste:hover {
  background: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.schritt-taste-umriss {
  background: transparent;
  border: 2px solid #6366f1;
  color: #6366f1;
}

.schritt-taste-umriss:hover {
  background: #6366f1;
  color: #fff;
}

.schritt-taste-gold {
  background: linear-gradient(180deg, #ffd700 0%, #f5c842 50%, #e4b034 100%);
  color: #1a1a2e;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.schritt-taste-gold:hover {
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.schritt-verbinder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  position: relative;
}

.verbinder-linie {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2a2a4a, #6366f1, #2a2a4a);
}

.verbinder-pfeil {
  position: absolute;
  color: #6366f1;
  font-size: 24px;
  font-weight: bold;
  animation: pulse-pfeil 1.5s infinite;
}

@keyframes pulse-pfeil {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(5px); }
}

/* Boni Sektion */
.boni-sektion {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #12122a 50%, #0d0d1a 100%);
}

.boni-raster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.bonus-karte {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 20px;
  padding: 35px 25px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.bonus-karte:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.bonus-karte::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #a855f7);
}

.bonus-willkommen::before { background: linear-gradient(90deg, #ffd700, #f5c842); }
.bonus-cashback::before { background: linear-gradient(90deg, #22c55e, #10b981); }
.bonus-reload::before { background: linear-gradient(90deg, #f97316, #fb923c); }
.bonus-freispiele::before { background: linear-gradient(90deg, #a855f7, #c084fc); }
.bonus-vip::before { background: linear-gradient(90deg, #ffd700, #fbbf24, #ffd700); }
.bonus-turniere::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }

.bonus-band {
  position: absolute;
  top: 18px;
  right: -32px;
  background: #ef4444;
  color: #fff;
  padding: 5px 40px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.band-gold {
  background: linear-gradient(135deg, #ffd700, #f5c842);
  color: #1a1a2e;
}

.bonus-symbol {
  font-size: 50px;
  margin-bottom: 15px;
}

.bonus-typ {
  font-size: 13px;
  font-weight: 600;
  color: #8a8aa8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.bonus-wert {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.bonus-wert span {
  font-size: 16px;
  font-weight: 600;
  color: #a8a8c8;
}

.bonus-extra {
  font-size: 16px;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 18px;
}

.bonus-beschreibung {
  text-align: left;
  margin-bottom: 18px;
  padding: 0 5px;
}

.bonus-beschreibung p {
  font-size: 13px;
  color: #9898b8;
  line-height: 1.6;
}

.bonus-details {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  text-align: left;
}

.bonus-details li {
  font-size: 13px;
  color: #a8a8c8;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 22px;
}

.bonus-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.bonus-details li:last-child {
  border-bottom: none;
}

.bonus-details li strong {
  color: #d8d8f8;
}

.bonus-bedingungen {
  font-size: 11px;
  color: #6a6a8a;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  line-height: 1.5;
}

.bonus-taste {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(180deg, #ffd700 0%, #f5c842 50%, #e4b034 100%);
  color: #1a1a2e;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.bonus-taste:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.bonus-taste-grun {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.bonus-taste-orange {
  background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.bonus-taste-lila {
  background: linear-gradient(180deg, #a855f7 0%, #9333ea 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.bonus-taste-gold {
  background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%);
  color: #1a1a2e;
}

.bonus-taste-blau {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Anbieter Sektion */
.anbieter-sektion {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #12122a 50%, #0d0d1a 100%);
}

.anbieter-raster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}

.anbieter-karte {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  transition: all 0.3s;
}

.anbieter-karte:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.anbieter-logo {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #ff6b35, #f7931a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.anbieter-logo-text {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.1;
}

.anbieter-evolution { background: linear-gradient(135deg, #c8102e, #e8324a); }
.anbieter-netent { background: linear-gradient(135deg, #78be20, #9edd33); }
.anbieter-playngo { background: linear-gradient(135deg, #0066cc, #0088ff); }
.anbieter-nolimit { background: linear-gradient(135deg, #1a1a2e, #2a2a4e); border: 1px solid #444; }
.anbieter-push { background: linear-gradient(135deg, #7b2d8e, #9b4db0); }
.anbieter-hacksaw { background: linear-gradient(135deg, #00c4cc, #00e6ef); }
.anbieter-pgsoft { background: linear-gradient(135deg, #ffc107, #ffdb4d); }
.anbieter-pgsoft .anbieter-logo-text { color: #1a1a2e; }
.anbieter-plus { background: linear-gradient(135deg, #ffd700, #f5c842); }
.anbieter-plus .anbieter-logo-text { color: #1a1a2e; font-size: 16px; }

.anbieter-info {
  flex: 1;
  min-width: 0;
}

.anbieter-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.anbieter-spiele {
  font-size: 12px;
  color: #8a8aa8;
}

.anbieter-karte.anbieter-mehr {
  border-color: rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, #2a2a4a 0%, #3a3a5a 100%);
}

.anbieter-text {
  background: linear-gradient(135deg, #1a1a3a 0%, #202050 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.anbieter-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.anbieter-text p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

.anbieter-text p:last-child {
  margin-bottom: 0;
}

.anbieter-text strong {
  color: #fff;
}

/* Gewinner Sektion */
.gewinner-sektion {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #1a0a2e 50%, #0d0d1a 100%);
}

.gewinner-statistiken {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.statistik-karte {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s;
}

.statistik-karte:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
}

.statistik-symbol {
  font-size: 36px;
  margin-bottom: 12px;
}

.statistik-wert {
  font-size: 28px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 5px;
}

.statistik-label {
  font-size: 13px;
  color: #8a8aa8;
}

.gewinner-text {
  background: linear-gradient(135deg, #1a1a3a 0%, #202050 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.gewinner-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.gewinner-text p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

.gewinner-text p:last-child {
  margin-bottom: 0;
}

.gewinner-text strong {
  color: #fff;
}

/* Responsive */
@media (max-width: 1100px) {
  .funktionen-raster,
  .boni-raster {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .anbieter-raster {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .seitenleiste {
    display: none;
  }
  
  .spiele-raster {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .funktionen-raster,
  .gewinner-statistiken {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .banner-container {
    height: 320px;
  }
  
  .banner {
    min-width: 100%;
    padding: 35px 30px;
  }
  
  .banner-titel {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .inhalt {
    padding: 15px;
  }
  
  .banner-container {
    height: 280px;
  }
  
  .banner {
    padding: 30px 20px;
    min-height: 280px;
  }
  
  .banner-titel {
    font-size: 30px;
  }
  
  .banner-untertitel {
    font-size: 14px;
  }
  
  .spiele-raster {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .funktionen-raster,
  .boni-raster,
  .anbieter-raster {
    grid-template-columns: 1fr;
  }
  
  .gewinner-statistiken {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .schritte-container {
    flex-direction: column;
  }
  
  .schritt-verbinder {
    width: 2px;
    height: 40px;
    flex-direction: row;
  }
  
  .verbinder-linie {
    width: 2px;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .banner {
    min-height: 260px;
    padding: 25px 18px;
  }
  
  .banner-titel {
    font-size: 26px;
  }
  
  .spiele-raster {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .sektion-titel {
    font-size: 26px;
  }
}

.seiten-footer {
  background: #0a0a14;
  color: #8a8aa8;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-haupt {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #0d0d1a 0%, #0a0a14 100%);
  border-top: 1px solid #1f1f2e;
}

.footer-raster {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-marke {
  padding-right: 30px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.logo-symbol {
  font-size: 36px;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700 0%, #f5c842 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.footer-marke-beschreibung {
  font-size: 14px;
  line-height: 1.7;
  color: #7a7a9a;
  margin-bottom: 25px;
}

.footer-sozial {
  display: flex;
  gap: 12px;
}

.sozial-link {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s;
}

.sozial-link:hover {
  background: linear-gradient(135deg, #252550 0%, #3a3a6a 100%);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

.footer-spalte {
  min-width: 0;
}

.footer-uberschrift {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-uberschrift::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, transparent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #7a7a9a;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

.footer-sektion-titel {
  font-size: 14px;
  font-weight: 600;
  color: #a8a8c8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-align: center;
}

.footer-zahlungen {
  padding: 30px 0;
  border-top: 1px solid #1a1a2e;
  border-bottom: 1px solid #1a1a2e;
}

.zahlungs-symbole {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.zahlungs-symbol {
  width: 60px;
  height: 38px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #a8a8c8;
  transition: all 0.3s;
}

.zahlungs-symbol:hover {
  border-color: rgba(255, 215, 0, 0.3);
  color: #ffd700;
  transform: translateY(-2px);
}

.footer-lizenzen {
  padding: 35px 0;
  background: #08080f;
  border-top: 1px solid #1a1a2e;
}

.lizenzen-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.lizenz-abzeichen-gruppe {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.lizenz-abzeichen {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 8px;
}

.abzeichen-symbol {
  font-size: 18px;
}

.abzeichen-text {
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
}

.alter-abzeichen {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.footer-unten {
  padding: 30px 0;
  background: #06060c;
}

.footer-rechtlich {
  margin-bottom: 25px;
}

.rechtlich-text {
  font-size: 12px;
  line-height: 1.7;
  color: #5a5a7a;
  margin-bottom: 12px;
  text-align: center;
}

.rechtlich-text:last-child {
  margin-bottom: 0;
}

.rechtlich-text strong {
  color: #7a7a9a;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid #1a1a2e;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright p {
  font-size: 13px;
  color: #5a5a7a;
  margin: 0;
}

.footer-unten-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-unten-links a {
  color: #5a5a7a;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-unten-links a:hover {
  color: #ffd700;
}

.footer-unten-links span {
  color: #3a3a4a;
}

/* Zahlungssektion */
.zahlungs-sektion {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #0f0f24 100%);
}

.zahlungs-funktionen {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.zahlungs-funktion {
  display: flex;
  align-items: center;
  gap: 15px;
}

.zahlungs-funktion-symbol {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1a1a3a, #252550);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.zahlungs-funktion-text {
  display: flex;
  flex-direction: column;
}

.zahlungs-funktion-titel {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.zahlungs-funktion-beschreibung {
  font-size: 13px;
  color: #8a8aa8;
}

.zahlungs-kategorien {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.zahlungs-kategorie {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}

.zahlungs-kategorie:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.zahlungs-kategorie-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.zahlungs-kategorie-symbol {
  font-size: 30px;
}

.zahlungs-kategorie-titel {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex: 1;
}

.zahlungs-kategorie-abzeichen {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.abzeichen-beliebt {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.zahlungs-kategorie-beschreibung {
  font-size: 13px;
  color: #9898b8;
  line-height: 1.6;
  margin-bottom: 18px;
}

.zahlungs-methoden-raster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.zahlungs-methode {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.zahlungs-methode:hover {
  background: rgba(255, 255, 255, 0.05);
}

.zahlungs-methode-logo {
  width: 36px;
  height: 24px;
  background: linear-gradient(135deg, #f7931a, #ffb347);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.crypto-btc { background: linear-gradient(135deg, #f7931a, #ffb347); }
.crypto-eth { background: linear-gradient(135deg, #627eea, #8c9eff); }
.crypto-usdt { background: linear-gradient(135deg, #26a17b, #50d9a0); }
.crypto-ltc { background: linear-gradient(135deg, #bfbbbb, #d3d3d3); color: #345d9d; }

.karte-visa { background: linear-gradient(135deg, #1a1f71, #0056b3); font-size: 9px; }
.karte-mc { background: linear-gradient(135deg, #eb001b, #ff5f00); }
.karte-maestro { background: linear-gradient(135deg, #0099df, #6c7c8e); }

.wallet-skrill { background: linear-gradient(135deg, #832c8e, #a855f7); }
.wallet-neteller { background: linear-gradient(135deg, #7ab800, #9edd00); color: #1a1a2e; }
.wallet-ecopayz { background: linear-gradient(135deg, #00a651, #39b54a); }

.zahlungs-methode-name {
  font-size: 13px;
  font-weight: 500;
  color: #c8c8e8;
}

.zahlungs-kategorie-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.zahlungs-kategorie-info span {
  font-size: 12px;
  color: #6a6a8a;
}

.zahlungs-text {
  background: linear-gradient(135deg, #1a1a3a 0%, #202050 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.zahlungs-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.zahlungs-text p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Über uns Sektion */
.uber-sektion {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #151528 50%, #0d0d1a 100%);
}

.uber-inhalt {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin-bottom: 50px;
}

.uber-haupt {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.uber-intro {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 35px;
}

.uber-intro h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.uber-intro p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

.uber-funktionen {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.uber-funktion {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 25px;
  transition: all 0.3s;
}

.uber-funktion:hover {
  transform: translateX(5px);
  border-color: rgba(255, 215, 0, 0.3);
}

.uber-funktion-symbol {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2a2a4a, #3a3a5a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.uber-funktion-inhalt h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.uber-funktion-inhalt p {
  font-size: 14px;
  color: #a8a8c8;
  line-height: 1.7;
}

.uber-funktion-inhalt ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.uber-funktion-inhalt li {
  font-size: 14px;
  color: #a8a8c8;
  padding: 8px 0;
  position: relative;
  padding-left: 22px;
}

.uber-funktion-inhalt li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.uber-seitenleiste {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.uber-statistiken-karte {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 30px 25px;
}

.uber-statistiken-karte h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-align: center;
}

.uber-statistik {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.uber-statistik:last-child {
  border-bottom: none;
}

.uber-statistik-wert {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.uber-statistik-label {
  font-size: 13px;
  color: #8a8aa8;
}

.uber-lizenzen {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 25px;
}

.uber-lizenzen h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-align: center;
}

/* Verantwortung Sektion */
.verantwortung-sektion {
  padding: 70px 0;
  background: #0d0d1a;
}

.verantwortung-inhalt {
  max-width: 900px;
  margin: 0 auto;
}

.verantwortung-intro {
  text-align: center;
  margin-bottom: 50px;
}

.verantwortung-symbol-gross {
  font-size: 64px;
  margin-bottom: 20px;
}

.verantwortung-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.verantwortung-intro p {
  font-size: 16px;
  color: #a8a8c8;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.verantwortung-werkzeuge,
.verantwortung-zeichen,
.verantwortung-hilfe {
  margin-bottom: 50px;
}

.verantwortung-werkzeuge h3,
.verantwortung-zeichen h3,
.verantwortung-hilfe h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.verantwortung-werkzeuge > p,
.verantwortung-zeichen > p,
.verantwortung-hilfe > p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.7;
  margin-bottom: 25px;
}

.werkzeuge-raster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.werkzeug-karte {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 25px;
  transition: all 0.3s;
}

.werkzeug-karte:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.werkzeug-symbol {
  font-size: 32px;
  margin-bottom: 15px;
}

.werkzeug-karte h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.werkzeug-karte p {
  font-size: 13px;
  color: #a8a8c8;
  line-height: 1.6;
}

.zeichen-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 25px 30px;
}

.zeichen-liste li {
  font-size: 14px;
  color: #b8b8d8;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 28px;
}

.zeichen-liste li::before {
  content: '⚠️';
  position: absolute;
  left: 0;
  font-size: 14px;
}

.zeichen-liste li:last-child {
  border-bottom: none;
}

.hilfe-organisationen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hilfe-organisation {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.hilfe-organisation:hover {
  border-color: #6366f1;
  transform: translateY(-3px);
}

.hilfe-organisation-name {
  font-size: 16px;
  font-weight: 700;
  color: #6366f1;
}

.hilfe-organisation-beschreibung {
  font-size: 13px;
  color: #8a8aa8;
}

/* Mobile Sektion */
.mobil-sektion {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #12122a 50%, #0d0d1a 100%);
}

.mobil-funktionen-raster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.mobil-funktion-karte {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 35px 28px;
  transition: all 0.3s;
}

.mobil-funktion-karte:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mobil-funktion-symbol {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
}

.mobil-funktion-titel {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.mobil-funktion-text {
  font-size: 14px;
  color: #a8a8c8;
  line-height: 1.7;
}

.mobil-text {
  background: linear-gradient(135deg, #1a1a3a 0%, #202050 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.mobil-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.mobil-text p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

.mobil-cta {
  text-align: center;
}

/* Sicherheit Sektion */
.sicherheit-sektion {
  padding: 70px 0;
  background: #0d0d1a;
}

.sicherheit-hauptpunkte {
  margin-bottom: 50px;
}

.sicherheit-punkt {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 35px;
  margin-bottom: 24px;
  display: flex;
  gap: 25px;
}

.sicherheit-punkt-symbol {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2a2a4a, #3a3a5a);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.sicherheit-punkt-inhalt h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.sicherheit-punkt-inhalt p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

.sicherheit-punkt-inhalt ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.sicherheit-punkt-inhalt li {
  font-size: 14px;
  color: #a8a8c8;
  padding: 8px 0;
  position: relative;
  padding-left: 22px;
}

.sicherheit-punkt-inhalt li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.sicherheit-zertifikate h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-align: center;
}

.zertifikate-raster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.zertifikat-karte {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s;
}

.zertifikat-karte:hover {
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-4px);
}

.zertifikat-symbol {
  font-size: 36px;
  color: #22c55e;
  margin-bottom: 15px;
}

.zertifikat-karte h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.zertifikat-karte p {
  font-size: 13px;
  color: #8a8aa8;
  line-height: 1.6;
}

/* Jackpots Sektion */
.jackpots-sektion {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #1a0a2e 50%, #0d0d1a 100%);
}

.jackpot-info,
.jackpot-spiele,
.jackpot-tipps,
.jackpot-gewinner {
  margin-bottom: 50px;
}

.jackpot-info h3,
.jackpot-spiele h3,
.jackpot-tipps h3,
.jackpot-gewinner h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.jackpot-info p,
.jackpot-spiele p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

.jackpot-spiele-raster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.jackpot-spiel-karte {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s;
}

.jackpot-spiel-karte:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.jackpot-spiel-info h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.jackpot-anbieter {
  font-size: 13px;
  color: #8a8aa8;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.jackpot-betrag {
  font-size: 32px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 15px;
}

.jackpot-beschreibung {
  font-size: 14px;
  color: #a8a8c8;
  line-height: 1.7;
  margin-bottom: 20px;
}

.jackpot-fortschritt {
  margin-top: 20px;
}

.fortschritt-balken {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.fortschritt-fullung {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #f5c842);
  border-radius: 4px;
  transition: width 0.3s;
}

.fortschritt-text {
  font-size: 12px;
  color: #8a8aa8;
}

.tipps-liste {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tipp-element {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 25px;
}

.tipp-nummer {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #f5c842);
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}

.tipp-inhalt h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.tipp-inhalt p {
  font-size: 14px;
  color: #a8a8c8;
  line-height: 1.7;
}

.gewinner-ticker {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gewinner-element {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.gewinner-spiel {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.gewinner-betrag {
  font-size: 18px;
  font-weight: 800;
  color: #ffd700;
}

.gewinner-datum {
  font-size: 12px;
  color: #8a8aa8;
}

/* VIP Sektion */
.vip-sektion {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #1a0a2e 50%, #0d0d1a 100%);
}

.vip-stufen {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.vip-stufe {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.vip-stufe:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.vip-stufe.gold,
.vip-stufe.platin,
.vip-stufe.diamant {
  border-color: rgba(255, 215, 0, 0.3);
}

.vip-stufe-abzeichen {
  position: absolute;
  top: -10px;
  right: 15px;
  background: linear-gradient(135deg, #ffd700, #f5c842);
  color: #1a1a2e;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.vip-stufe-symbol {
  font-size: 48px;
  margin-bottom: 15px;
}

.vip-stufe-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.vip-stufe-punkte {
  font-size: 13px;
  color: #8a8aa8;
  margin-bottom: 20px;
}

.vip-stufe-vorteile {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}

.vip-stufe-vorteile li {
  font-size: 13px;
  color: #a8a8c8;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 22px;
}

.vip-stufe-vorteile li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.vip-stufe-vorteile li:last-child {
  border-bottom: none;
}

.vip-stufe-taste {
  font-size: 12px;
  color: #6a6a8a;
  font-style: italic;
}

.vip-punkte-system,
.vip-exklusive-vorteile {
  margin-bottom: 50px;
}

.vip-punkte-system h3,
.vip-exklusive-vorteile h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
  text-align: center;
}

.vip-punkte-system > p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 30px;
}

.punkte-verdienen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.punkte-kategorie {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: center;
}

.punkte-kategorie h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.punkte-rate {
  font-size: 20px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 8px;
}

.punkte-kategorie p {
  font-size: 13px;
  color: #8a8aa8;
}

.exklusive-vorteile-raster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.exklusiv-vorteil {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s;
}

.exklusiv-vorteil:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
}

.exklusiv-symbol {
  font-size: 40px;
  margin-bottom: 15px;
}

.exklusiv-vorteil h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.exklusiv-vorteil p {
  font-size: 14px;
  color: #a8a8c8;
  line-height: 1.7;
}

/* FAQ Sektion */
.faq-sektion {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #12122a 50%, #0d0d1a 100%);
}

.faq-inhalt {
  max-width: 900px;
  margin: 0 auto 50px;
}

.faq-liste {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-element {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-element:hover {
  border-color: rgba(99, 102, 241, 0.3);
}

.faq-frage {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-frage:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-symbol {
  font-size: 24px;
  font-weight: 300;
  color: #6366f1;
  transition: transform 0.3s;
}

.faq-element.open .faq-symbol {
  transform: rotate(45deg);
}

.faq-antwort {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s;
}

.faq-element.open .faq-antwort {
  max-height: 500px;
  padding: 0 25px 25px;
}

.faq-antwort p {
  font-size: 14px;
  color: #a8a8c8;
  line-height: 1.8;
}

/* Responsive Styles für Footer */
@media (max-width: 1100px) {
  .footer-raster {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-raster .footer-spalte:last-child {
    grid-column: span 2;
  }
  
  .mobil-funktionen-raster,
  .exklusive-vorteile-raster {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vip-stufen {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .zertifikate-raster {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .footer-haupt {
    padding: 50px 0 35px;
  }
  
  .footer-raster {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }
  
  .footer-marke {
    grid-column: span 2;
    padding-right: 0;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-sozial {
    justify-content: center;
  }
  
  .footer-uberschrift::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-spalte {
    text-align: center;
  }
  
  .footer-links a:hover {
    transform: none;
  }
  
  .footer-raster .footer-spalte:last-child {
    grid-column: span 1;
  }
  
  .lizenzen-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .lizenz-abzeichen-gruppe {
    justify-content: center;
  }
  
  .uber-inhalt,
  .jackpot-spiele-raster,
  .werkzeuge-raster,
  .hilfe-organisationen,
  .zahlungs-kategorien {
    grid-template-columns: 1fr;
  }
  
  .vip-stufen {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .punkte-verdienen {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .footer-haupt {
    padding: 40px 0 30px;
  }
  
  .footer-raster {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-marke {
    grid-column: span 1;
  }
  
  .zahlungs-symbole {
    gap: 8px;
  }
  
  .zahlungs-symbol {
    width: 50px;
    height: 32px;
    font-size: 12px;
  }
  
  .mobil-funktionen-raster,
  .exklusive-vorteile-raster,
  .vip-stufen,
  .punkte-verdienen,
  .zertifikate-raster {
    grid-template-columns: 1fr;
  }
  
  .sicherheit-punkt {
    flex-direction: column;
    text-align: center;
  }
  
  .zahlungs-funktionen {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  
  .zahlungs-funktion {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .footer-logo {
    flex-direction: column;
    gap: 8px;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  .footer-marke-beschreibung {
    font-size: 13px;
  }
  
  .footer-uberschrift {
    font-size: 15px;
    margin-bottom: 18px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .rechtlich-text {
    font-size: 11px;
    text-align: left;
  }
  
  .footer-copyright {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-copyright p {
    font-size: 12px;
  }
  
  .footer-unten-links {
    gap: 10px;
  }
  
  .footer-unten-links a {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .sozial-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .lizenz-abzeichen {
    flex-direction: column;
    text-align: center;
    gap: 5px;
    padding: 10px 12px;
  }
}

/* ============================================ */
/* SICHERHEIT & LIZENZEN SEKTION */
/* ============================================ */

.sicherheit-sektion {
  padding: 80px 0;
  background: linear-gradient(180deg, #16213e 0%, #0f1729 100%);
  position: relative;
  overflow: hidden;
}

.sicherheit-sektion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.sicherheit-inhalt {
  position: relative;
  z-index: 1;
}

.sicherheit-hauptpunkte {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.sicherheit-punkt {
  background: rgba(26, 35, 60, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.sicherheit-punkt:hover {
  background: rgba(26, 35, 60, 0.8);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.sicherheit-punkt-symbol {
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.sicherheit-punkt-inhalt {
  flex: 1;
}

.sicherheit-punkt-inhalt h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sicherheit-punkt-inhalt p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.sicherheit-punkt-inhalt p:last-child {
  margin-bottom: 0;
}

.sicherheit-punkt-inhalt ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.sicherheit-punkt-inhalt ul li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.sicherheit-punkt-inhalt ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
  font-size: 18px;
}

.sicherheit-punkt-inhalt strong {
  color: #ffd700;
  font-weight: 600;
}

/* Zertifikate Sektion */
.sicherheit-zertifikate {
  background: rgba(26, 35, 60, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  margin-top: 60px;
}

.sicherheit-zertifikate h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.zertifikate-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.zertifikat-karte {
  background: rgba(22, 33, 62, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.zertifikat-karte:hover {
  background: rgba(22, 33, 62, 0.8);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
}

.zertifikat-symbol {
  font-size: 40px;
  color: #4caf50;
  margin-bottom: 16px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(76, 175, 80, 0.3);
}

.zertifikat-karte h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.zertifikat-karte p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sicherheit-sektion {
    padding: 60px 0;
  }

  .sicherheit-punkt {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .sicherheit-punkt-symbol {
    width: 60px;
    height: 60px;
    font-size: 36px;
    margin: 0 auto;
  }

  .sicherheit-punkt-inhalt h3 {
    font-size: 20px;
    text-align: center;
  }

  .sicherheit-punkt-inhalt p {
    font-size: 15px;
  }

  .sicherheit-zertifikate {
    padding: 30px 20px;
  }

  .sicherheit-zertifikate h3 {
    font-size: 24px;
  }

  .zertifikate-raster {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================ */
/* JACKPOTS SEKTION */
/* ============================================ */

.jackpots-sektion {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f1729 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.jackpots-sektion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.jackpots-inhalt {
  position: relative;
  z-index: 1;
}

/* Jackpot Info */
.jackpot-info {
  background: rgba(26, 35, 60, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 60px;
  backdrop-filter: blur(10px);
}

.jackpot-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.jackpot-info h3::before {
  content: '💎';
  font-size: 32px;
}

.jackpot-info p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.jackpot-info p:last-child {
  margin-bottom: 0;
}

/* Jackpot Spiele */
.jackpot-spiele {
  margin-bottom: 60px;
}

.jackpot-spiele h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.jackpot-spiele-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.jackpot-spiel-karte {
  background: rgba(26, 35, 60, 0.6);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.jackpot-spiel-karte::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 215, 0, 0.05) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: jackpotShine 3s infinite;
}

@keyframes jackpotShine {
  0%, 100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.jackpot-spiel-karte:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

.jackpot-spiel-info h4 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

.jackpot-anbieter {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.jackpot-betrag {
  font-size: 42px;
  font-weight: 900;
  color: #ffd700;
  margin: 20px 0;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  letter-spacing: -1px;
}

.jackpot-beschreibung {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0;
}

/* Jackpot Fortschritt */
.jackpot-fortschritt {
  margin-top: 24px;
}

.fortschritt-balken {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}

.fortschritt-fullung {
  height: 100%;
  background: linear-gradient(90deg, #ff6b35, #ffd700);
  border-radius: 10px;
  transition: width 0.5s ease;
  position: relative;
  overflow: hidden;
}

.fortschritt-fullung::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: progressShine 2s infinite;
}

@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.fortschritt-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  display: block;
}

/* Jackpot Tipps */
.jackpot-tipps {
  background: rgba(26, 35, 60, 0.4);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 60px;
}

.jackpot-tipps h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.tipps-liste {
  display: grid;
  gap: 24px;
}

.tipp-element {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.tipp-nummer {
  font-size: 32px;
  font-weight: 900;
  color: #ff6b35;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 215, 0, 0.1));
  border: 2px solid rgba(255, 107, 53, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tipp-inhalt {
  flex: 1;
}

.tipp-inhalt h4 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.tipp-inhalt p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Jackpot Gewinner */
.jackpot-gewinner {
  background: rgba(26, 35, 60, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 40px;
}

.jackpot-gewinner h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 30px;
  text-align: center;
}

.gewinner-ticker {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gewinner-element {
  background: rgba(22, 33, 62, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.gewinner-element:hover {
  background: rgba(22, 33, 62, 0.8);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(10px);
}

.gewinner-spiel {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  flex: 1;
}

.gewinner-betrag {
  font-size: 24px;
  font-weight: 900;
  color: #ffd700;
  margin: 0 30px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.gewinner-datum {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
  .jackpot-spiele-raster {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .jackpot-betrag {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .jackpots-sektion {
    padding: 60px 0;
  }

  .jackpot-info,
  .jackpot-tipps,
  .jackpot-gewinner {
    padding: 30px 20px;
  }

  .jackpot-info h3,
  .jackpot-tipps h3,
  .jackpot-gewinner h3 {
    font-size: 24px;
  }

  .jackpot-spiele-raster {
    grid-template-columns: 1fr;
  }

  .jackpot-betrag {
    font-size: 32px;
  }

  .tipp-element {
    flex-direction: column;
    gap: 16px;
  }

  .tipp-nummer {
    margin: 0 auto;
  }

  .tipp-inhalt {
    text-align: center;
  }

  .gewinner-element {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px;
  }

  .gewinner-betrag {
    margin: 8px 0;
  }
}

@media (max-width: 480px) {
  .jackpot-spiel-karte {
    padding: 20px;
  }

  .jackpot-betrag {
    font-size: 28px;
  }

  .jackpot-beschreibung {
    font-size: 14px;
  }
}

