/* ============================================
   ROYAL JOKER FRANCE - STYLES CSS
   ============================================ */

/* ============================================
   VARIABLES CSS
   ============================================ */

:root {
  --primaer: #dc2626;
  --primaer-dunkel: #b91c1c;
  --primaer-hell: #ef4444;
  --sekundaer: #f59e0b;
  --erfolg: #10b981;
  --warnung: #f59e0b;
  --gefahr: #ef4444;
  
  --hintergrund: #ffffff;
  --hintergrund-sekundaer: #f8fafc;
  --tekst: #1e293b;
  --tekst-sekundaer: #64748b;
  --rand: #e2e8f0;
  
  --verlauf-primaer: linear-gradient(135deg, var(--primaer) 0%, var(--primaer-dunkel) 100%);
  --verlauf-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --verlauf-ios: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  
  --schatten-klein: 0 2px 8px rgba(0, 0, 0, 0.1);
  --schatten-mittel: 0 4px 16px rgba(0, 0, 0, 0.12);
  --schatten-gross: 0 8px 32px rgba(0, 0, 0, 0.15);
  
  --kopfzeile-hoehe: 70px;
  --border-radius: 12px;
  --uebergang: all 0.3s ease;
}

[data-theme="dark"] {
  --hintergrund: #0f172a;
  --hintergrund-sekundaer: #1e293b;
  --tekst: #f1f5f9;
  --tekst-sekundaer: #94a3b8;
  --rand: #334155;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--hintergrund);
  color: var(--tekst);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--uebergang);
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.behaelter {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-margin {
  margin-top: 10px;
}

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

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

.max-width-1100 {
  max-width: 1100px;
  margin: 0 auto;
}

.badge-inline {
  display: inline-flex;
  margin-bottom: 8px;
}

.button-full-width {
  width: 100%;
}

.button-large {
  padding: 16px 32px !important;
  font-size: 16px !important;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.kopfzeile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--hintergrund);
  border-bottom: 1px solid var(--rand);
  z-index: 1000;
  transition: var(--uebergang);
  min-height: var(--kopfzeile-hoehe);
}

.kopfzeile.scrolled {
  box-shadow: var(--schatten-mittel);
}

.kopfzeile-inhalt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--kopfzeile-hoehe);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  color: var(--tekst);
  transition: var(--uebergang);
  position: relative;
  z-index: 1001;
}

.logo:hover {
  color: var(--primaer);
}

.logo-symbol {
  width: 40px;
  height: 40px;
  background: var(--verlauf-primaer);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.navigation {
  display: flex;
  gap: 32px;
  align-items: center;
  position: static;
  flex-direction: row;
  padding: 0;
  background: transparent;
  box-shadow: none;
  max-height: none;
  overflow: visible;
  border-bottom: none;
  opacity: 1;
  visibility: visible;
}

.nav-verknuepfung {
  font-weight: 600;
  font-size: 14px;
  color: var(--tekst-sekundaer);
  transition: var(--uebergang);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-verknuepfung::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primaer);
  transition: width 0.3s ease;
}

.nav-verknuepfung:hover {
  color: var(--primaer);
}

.nav-verknuepfung:hover::after {
  width: 100%;
}

.kopfzeile-aktionen {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1001;
}

.thema-umschalter {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--rand);
  background: var(--hintergrund-sekundaer);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--uebergang);
}

.thema-umschalter:hover {
  background: var(--primaer);
  border-color: var(--primaer);
  transform: scale(1.05);
}

.thema-umschalter:hover .symbol {
  color: white;
}

.symbol {
  width: 20px;
  height: 20px;
  color: var(--tekst);
  transition: var(--uebergang);
}

.geschenk-taste {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--verlauf-primaer);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--uebergang);
  position: relative;
  overflow: hidden;
}

.geschenk-taste::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.geschenk-taste:hover::before {
  left: 100%;
}

.geschenk-taste:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.geschenk-taste .symbol {
  width: 18px;
  height: 18px;
  color: white;
}

.geschenk-abzeichen {
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.mobil-umschalter {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1002;
}

.mobil-umschalter span {
  width: 25px;
  height: 3px;
  background: var(--tekst);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobil-umschalter.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobil-umschalter.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobil-umschalter.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */

.held {
  margin-top: var(--kopfzeile-hoehe);
  padding: 60px 0 80px;
  min-height: calc(100vh - var(--kopfzeile-hoehe));
  display: flex;
  align-items: center;
  position: relative;
}

.held-inhalt {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.held-tekst {
  animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.held-abzeichen {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primaer);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.held-titel {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--tekst) 0%, var(--primaer) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.held-untertitel {
  font-size: 20px;
  color: var(--tekst-sekundaer);
  margin-bottom: 24px;
  font-weight: 500;
}

.held-beschreibung {
  font-size: 16px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
  margin-bottom: 32px;
}

.held-statistiken {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.statistik-karte {
  padding: 16px;
  background: var(--hintergrund);
  border: 1px solid var(--rand);
  border-radius: 12px;
  text-align: center;
}

.statistik-wert {
  font-size: 24px;
  font-weight: 800;
  color: var(--primaer);
  margin-bottom: 4px;
}

.statistik-beschriftung {
  font-size: 12px;
  color: var(--tekst-sekundaer);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.held-aktionen {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.schaltflaeche {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.schaltflaeche-primaer {
  background: var(--verlauf-primaer);
  color: white;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.schaltflaeche-primaer:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.schaltflaeche-sekundaer {
  background: var(--hintergrund);
  color: var(--tekst);
  border: 2px solid var(--rand);
}

.schaltflaeche-sekundaer:hover {
  border-color: var(--primaer);
  color: var(--primaer);
}

.schaltflaeche-hell {
  background: white;
  color: var(--primaer);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.schaltflaeche-hell:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.schaltflaeche-gross {
  padding: 16px 40px;
  font-size: 18px;
}

.vertrauens-abzeichen {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.abzeichen-element {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--tekst-sekundaer);
}

.abzeichen-symbol {
  color: var(--erfolg);
  font-weight: 700;
}

.abzeichen-tekst {
  font-weight: 500;
}

.held-visuell {
  animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.spielautomat-vorschau {
  position: relative;
}

.vorschau-bild-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--schatten-gross);
}

.vorschau-bild {
  width: 100%;
  height: auto;
  display: block;
}

.spiel-knopf {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: var(--uebergang);
}

.spiel-knopf:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.funktions-punkte {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.punkt-element {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--hintergrund);
  border-radius: 12px;
  box-shadow: var(--schatten-klein);
}

.punkt-symbol {
  font-size: 24px;
  flex-shrink: 0;
}

.punkt-tekst {
  font-size: 14px;
  font-weight: 600;
  color: var(--tekst);
}

/* ============================================
   DEMO MODAL STYLES
   ============================================ */

.demo-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.demo-modal.active {
  display: flex;
}

.demo-schliessen {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: var(--uebergang);
}

.demo-schliessen:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.demo-schliessen svg {
  color: white;
}

.demo-iframe {
  width: 100%;
  max-width: 1200px;
  height: 80vh;
  border-radius: 12px;
  box-shadow: var(--schatten-gross);
}

/* ============================================
   EXCLUSIVE OFFERS SECTION
   ============================================ */

.exklusive-angebote-sektion {
  padding: 80px 0;
  background: var(--hintergrund-sekundaer);
  position: relative;
  overflow: hidden;
}

.bg-decoration {
  position: absolute;
  width: 600px;
  height: 600px;
  pointer-events: none;
}

.bg-decoration-top {
  top: -50%;
  right: -20%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
}

.bg-decoration-bottom {
  bottom: -50%;
  left: -20%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.hauptangebot-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.hot-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--verlauf-gold);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  animation: pulse 2s infinite;
  z-index: 2;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hauptangebot-inhalt {
  background: var(--verlauf-primaer);
  padding: 48px 40px;
  border-radius: 24px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
}

.hauptangebot-ueberschrift {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.hauptangebot-titel {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hauptangebot-betrag {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fbbf24;
}

.hauptangebot-beschreibung {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-statistik-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.bonus-statistik-element {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.bonus-statistik-element:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.bonus-statistik-wert {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 4px;
  color: white;
}

.bonus-statistik-beschriftung {
  font-size: 14px;
  opacity: 0.9;
  color: white;
}

.bonus-code-anzeige {
  font-size: 13px;
  opacity: 0.8;
  color: white;
  margin-top: 20px;
}

.bonus-code-anzeige span {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 6px;
  font-family: monospace;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bonus-code-anzeige span:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.angebote-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.angebot-karte {
  background: var(--hintergrund);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--rand);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.angebot-karte::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--verlauf-primaer);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.angebot-karte:hover {
  transform: translateY(-8px);
  box-shadow: var(--schatten-gross);
  border-color: var(--primaer);
}

.angebot-karte:hover::before {
  transform: scaleX(1);
}

.angebot-karte.vip-card {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 2px solid var(--primaer);
}

.badge-neu,
.badge-populaer,
.badge-exklusiv {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 16px;
  border-radius: 0 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.badge-neu {
  background: var(--erfolg);
  color: white;
}

.badge-populaer {
  background: var(--sekundaer);
  color: white;
}

.badge-exklusiv {
  background: var(--verlauf-gold);
  color: white;
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
  color: var(--warnung);
}

.angebot-symbol {
  font-size: 48px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.angebot-karte:hover .angebot-symbol {
  transform: scale(1.1) rotate(5deg);
}

.angebot-titel {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--tekst);
}

.angebot-betrag {
  font-size: 28px;
  font-weight: 900;
  color: var(--primaer);
  margin-bottom: 16px;
}

.angebot-beschreibung {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
  margin-bottom: 20px;
}

.angebot-liste {
  list-style: none;
  margin-bottom: 24px;
}

.angebot-liste li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--tekst-sekundaer);
}

.angebot-liste li span:first-child {
  color: var(--erfolg);
  font-weight: 700;
  flex-shrink: 0;
  animation: checkmarkPop 0.3s ease;
}

@keyframes checkmarkPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.bonus-bedingungen {
  background: var(--hintergrund);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--rand);
  margin-top: 40px;
}

.bonus-bedingungen h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--tekst);
}

.bedingungen-liste {
  list-style: none;
  display: grid;
  gap: 12px;
}

.bedingungen-liste li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
}

.bedingungen-liste li span:first-child {
  color: var(--erfolg);
  font-weight: 700;
  flex-shrink: 0;
}

.warnung-box {
  margin-top: 24px;
  padding: 20px;
  background: rgba(220, 38, 38, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primaer);
}

.warnung-box p {
  font-size: 13px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
  margin: 0;
}

.warnung-box strong {
  color: var(--tekst);
}

.cta-banner {
  margin-top: 40px;
  text-align: center;
  padding: 48px 32px;
  background: var(--hintergrund-sekundaer);
  border-radius: 20px;
  border: 2px dashed var(--rand);
  transition: all 0.3s ease;
}

.cta-banner:hover {
  border-style: solid;
  border-color: var(--primaer);
  background: var(--hintergrund);
}

.cta-titel {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--tekst);
}

.cta-beschreibung {
  font-size: 16px;
  color: var(--tekst-sekundaer);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */

.sektion-kopf {
  margin-bottom: 48px;
}

.sektion-abzeichen {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primaer);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.sektion-titel {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--tekst);
  line-height: 1.2;
}

.sektion-untertitel {
  font-size: 18px;
  color: var(--tekst-sekundaer);
  max-width: 700px;
  margin: 0 auto;
}

.text-center .sektion-untertitel {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CASINOS SECTION
   ============================================ */

.kasyna-sektion {
  padding: 80px 0;
  background: var(--hintergrund);
}

.kasyna-raster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.kasino-karte {
  background: var(--hintergrund-sekundaer);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--rand);
  transition: all 0.3s ease;
  position: relative;
}

.kasino-karte:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten-mittel);
  border-color: var(--primaer);
}

.kasino-kopf {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.kasino-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  color: var(--primaer);
}

.kasino-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.kasino-bewertung {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--sekundaer);
}

.kasino-bonus {
  background: var(--hintergrund);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.bonus-betrag {
  font-size: 24px;
  font-weight: 900;
  color: var(--primaer);
  margin-bottom: 4px;
}

.bonus-beschreibung {
  font-size: 13px;
  color: var(--tekst-sekundaer);
}

.kasino-funktionen {
  list-style: none;
  margin-bottom: 16px;
}

.kasino-funktionen li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tekst-sekundaer);
  margin-bottom: 8px;
}

.kasino-funktionen li::before {
  content: '✓';
  color: var(--erfolg);
  font-weight: 700;
}

/* ============================================
   DETAILS SECTION
   ============================================ */

.details-sektion {
  padding: 80px 0;
  background: var(--hintergrund-sekundaer);
}

.details-raster {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 32px;
}

.details-karte {
  background: var(--hintergrund);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--rand);
  margin-bottom: 24px;
}

.details-karte-kopf {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.details-karte-symbol {
  font-size: 32px;
}

.details-karte-titel {
  font-size: 24px;
  font-weight: 800;
  color: var(--tekst);
}

.spezifikationen-tabelle {
  width: 100%;
  border-collapse: collapse;
}

.spezifikationen-tabelle tr {
  border-bottom: 1px solid var(--rand);
}

.spezifikationen-tabelle tr:last-child {
  border-bottom: none;
}

.spezifikationen-tabelle td {
  padding: 12px 0;
  font-size: 14px;
}

.spezifikationen-tabelle td:first-child {
  color: var(--tekst-sekundaer);
  width: 50%;
}

.spezifikationen-tabelle td:last-child {
  font-weight: 600;
  color: var(--tekst);
  text-align: right;
}

.abzeichen {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.abzeichen.hoch {
  background: rgba(220, 38, 38, 0.1);
  color: var(--primaer);
}

.abzeichen.erfolg {
  background: rgba(16, 185, 129, 0.1);
  color: var(--erfolg);
}

.funktionen-liste {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.funktion-element {
  display: flex;
  gap: 16px;
}

.funktion-symbol {
  font-size: 32px;
  flex-shrink: 0;
}

.funktion-titel {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--tekst);
}

.funktion-beschreibung {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
}

.auszahlung-info {
  margin-top: 16px;
}

.auszahlung-beschreibung {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
  margin-bottom: 24px;
}

.gewinn-beispiele {
  margin-top: 24px;
}

.beispiel-titel {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--tekst);
}

.beispiel-tabelle {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.beispiel-tabelle thead {
  background: var(--hintergrund-sekundaer);
}

.beispiel-tabelle th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
  color: var(--tekst);
  border-bottom: 2px solid var(--rand);
}

.beispiel-tabelle td {
  padding: 12px;
  border-bottom: 1px solid var(--rand);
}

.beispiel-tabelle tr:last-child td {
  border-bottom: none;
}

.gain-highlight {
  font-weight: 600;
  color: var(--erfolg);
}

.strategie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.strategie-karte {
  background: var(--hintergrund-sekundaer);
  border-radius: 12px;
  padding: 24px;
}

.strategie-titel {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primaer);
}

.strategie-text {
  color: var(--tekst-sekundaer);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.strategie-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--rand);
}

.stat-label {
  font-size: 13px;
  color: var(--tekst-sekundaer);
}

.stat-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--primaer);
}

.seitenleiste-karte {
  background: var(--hintergrund);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--rand);
  margin-bottom: 24px;
  position: sticky;
  top: 90px;
}

.seitenleiste-titel {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--tekst);
}

.schnell-statistiken {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-element {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--hintergrund-sekundaer);
  border-radius: 8px;
}

.stat-beschriftung {
  font-size: 13px;
  color: var(--tekst-sekundaer);
}

.stat-wert {
  font-size: 14px;
  font-weight: 700;
  color: var(--primaer);
}

.bewertung-liste {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bewertung-element {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bewertung-kopf {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bewertung-beschriftung {
  font-size: 13px;
  color: var(--tekst-sekundaer);
}

.bewertung-punktzahl {
  font-size: 13px;
  font-weight: 700;
  color: var(--primaer);
}

.fortschritt-balken {
  height: 8px;
  background: var(--hintergrund-sekundaer);
  border-radius: 4px;
  overflow: hidden;
}

.fortschritt {
  height: 100%;
  background: var(--verlauf-primaer);
  border-radius: 4px;
  transition: width 1s ease;
}

.fortschritt-96 { width: 96%; }
.fortschritt-98 { width: 98%; }
.fortschritt-94 { width: 94%; }
.fortschritt-92 { width: 92%; }

.gesamtbewertung {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--rand);
  text-align: center;
}

.bewertung-grosse-zahl {
  font-size: 48px;
  font-weight: 900;
  color: var(--primaer);
  margin-bottom: 8px;
}

.bewertung-sterne {
  font-size: 24px;
  margin-bottom: 8px;
}

.bewertung-tekst {
  font-size: 14px;
  font-weight: 600;
  color: var(--erfolg);
}

.symbol-auszahlungen {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.symbol-zeile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: var(--hintergrund-sekundaer);
  border-radius: 8px;
}

.symbol-icon {
  font-size: 24px;
  width: 32px;
  text-align: center;
}

.symbol-name {
  flex: 1;
  font-size: 13px;
  color: var(--tekst-sekundaer);
  margin-left: 12px;
}

.symbol-wert {
  font-size: 14px;
  font-weight: 700;
  color: var(--primaer);
}

/* ============================================
   LIVE WINS SECTION
   ============================================ */

.live-gewinne-sektion {
  padding: 80px 0;
  background: var(--hintergrund);
}

.live-kopf {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.live-titel-wrapper {
  flex: 1;
}

.live-indikator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 20px;
  flex-shrink: 0;
}

.live-punkt {
  width: 8px;
  height: 8px;
  background: var(--primaer);
  border-radius: 50%;
  animation: blinken 1.5s infinite;
}

@keyframes blinken {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.live-tekst {
  font-size: 12px;
  font-weight: 700;
  color: var(--primaer);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-feed {
  display: grid;
  gap: 16px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 12px;
}

.live-feed::-webkit-scrollbar {
  width: 8px;
}

.live-feed::-webkit-scrollbar-track {
  background: var(--hintergrund-sekundaer);
  border-radius: 4px;
}

.live-feed::-webkit-scrollbar-thumb {
  background: var(--primaer);
  border-radius: 4px;
}

.gewinn-element {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--hintergrund-sekundaer);
  border-radius: 12px;
  border: 1px solid var(--rand);
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gewinn-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--verlauf-primaer);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.gewinn-info {
  flex: 1;
}

.gewinn-spieler {
  font-size: 14px;
  font-weight: 600;
  color: var(--tekst);
  margin-bottom: 4px;
}

.gewinn-details {
  font-size: 12px;
  color: var(--tekst-sekundaer);
}

.gewinn-betrag {
  font-size: 20px;
  font-weight: 800;
  color: var(--erfolg);
  flex-shrink: 0;
}

/* ============================================
   HOW TO PLAY SECTION
   ============================================ */

.anleitung-sektion {
  padding: 80px 0;
  background: var(--hintergrund-sekundaer);
}

.schritte-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.schritt-karte {
  background: var(--hintergrund);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--rand);
  position: relative;
  transition: all 0.3s ease;
}

.schritt-karte:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten-mittel);
  border-color: var(--primaer);
}

.schritt-nummer {
  position: absolute;
  top: -12px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: var(--verlauf-primaer);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.schritt-symbol {
  font-size: 48px;
  margin-bottom: 16px;
  margin-top: 12px;
}

.schritt-titel {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--tekst);
}

.schritt-beschreibung {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
  margin-bottom: 16px;
}

.schritt-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-punkt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tekst-sekundaer);
}

.punkt-icon {
  color: var(--erfolg);
  font-weight: 700;
  flex-shrink: 0;
}

.tipps-sektion {
  margin-top: 48px;
}

.tipps-titel {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  color: var(--tekst);
}

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

.tipp-karte {
  background: var(--hintergrund);
  border-radius: 16px;
  padding: 24px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.tipp-karte:hover {
  border-color: var(--primaer);
  transform: translateY(-4px);
  box-shadow: var(--schatten-mittel);
}

.tipp-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.tipp-titel {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--tekst);
}

.tipp-text {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
}

.anleitung-warnung {
  margin-top: 48px;
  padding: 32px;
  background: rgba(220, 38, 38, 0.05);
  border-radius: 16px;
  border-left: 4px solid var(--primaer);
}

.warnung-titel {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--tekst);
}

.warnung-text {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
}

.warnung-text strong {
  color: var(--tekst);
  font-weight: 700;
}

/* ============================================
   MOBILE SECTION
   ============================================ */

.mobil-sektion {
  padding: 80px 0;
  background: var(--hintergrund);
}

.mobil-funktionen-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.geraet-karte {
  background: var(--hintergrund-sekundaer);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--rand);
  transition: all 0.3s ease;
}

.geraet-karte:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten-mittel);
  border-color: var(--primaer);
}

.geraet-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.geraet-titel {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--tekst);
}

.geraet-beschreibung {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
  margin-bottom: 20px;
}

.geraet-liste {
  list-style: none;
}

.geraet-liste li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--tekst-sekundaer);
}

.geraet-liste li span:first-child {
  color: var(--erfolg);
  font-weight: 700;
  flex-shrink: 0;
}

.leistung-sektion {
  margin-top: 48px;
}

.leistung-titel {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  color: var(--tekst);
}

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

.leistung-karte {
  background: var(--hintergrund-sekundaer);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.leistung-karte:hover {
  border-color: var(--primaer);
  transform: translateY(-4px);
}

.leistung-wert {
  font-size: 36px;
  font-weight: 900;
  color: var(--primaer);
  margin-bottom: 8px;
}

.leistung-beschriftung {
  font-size: 14px;
  color: var(--tekst-sekundaer);
}

.mobil-anleitung {
  margin-top: 48px;
  background: var(--hintergrund-sekundaer);
  border-radius: 16px;
  padding: 40px;
}

.mobil-anleitung-titel {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  color: var(--tekst);
}

.mobil-schritte {
  display: grid;
  gap: 24px;
}

.mobil-schritt {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.mobil-schritt-nummer {
  width: 48px;
  height: 48px;
  background: var(--verlauf-primaer);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
}

.mobil-schritt-inhalt {
  flex: 1;
}

.mobil-schritt-titel {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--tekst);
}

.mobil-schritt-text {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
}

.mobil-cta {
  margin-top: 48px;
  text-align: center;
  padding: 48px 40px;
  background: var(--verlauf-primaer);
  border-radius: 20px;
  color: white;
}

.mobil-cta-titel {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
}

.mobil-cta-text {
  font-size: 16px;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* ============================================
   BONUS MODAL STYLES
   ============================================ */

.bonus-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.bonus-modal.active {
  display: flex;
}

.modal-inhalt {
  background: var(--hintergrund);
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-schliessen {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--hintergrund-sekundaer);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--uebergang);
  z-index: 1;
}

.modal-schliessen:hover {
  background: var(--primaer);
  transform: rotate(90deg);
}

.modal-schliessen:hover svg {
  color: white;
}

.modal-kopf {
  text-align: center;
  padding: 40px 40px 24px;
  background: var(--verlauf-primaer);
  border-radius: 24px 24px 0 0;
  color: white;
}

.modal-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.modal-titel {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.modal-untertitel {
  font-size: 16px;
  opacity: 0.95;
}

.modal-korper {
  padding: 32px 40px 40px;
}

.bonus-angebot {
  text-align: center;
  margin-bottom: 32px;
}

.bonus-betrag-gross {
  font-size: 48px;
  font-weight: 900;
  color: var(--primaer);
  margin-bottom: 8px;
}

.bonus-details {
  font-size: 18px;
  color: var(--tekst-sekundaer);
}

.bonus-funktionen {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.funktion-punkt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--hintergrund-sekundaer);
  border-radius: 8px;
}

.punkt-checkmark {
  width: 24px;
  height: 24px;
  background: var(--erfolg);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.punkt-text {
  font-size: 14px;
  color: var(--tekst);
}

.modal-disclaimer {
  font-size: 12px;
  color: var(--tekst-sekundaer);
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.fusszeile {
  background: var(--hintergrund-sekundaer);
  padding: 60px 0 24px;
  border-top: 1px solid var(--rand);
}

.fusszeile-inhalt {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.fusszeile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 16px;
}

.fusszeile-beschreibung {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
  margin-bottom: 20px;
}

.vertrauen-abzeichen {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vertrauen-abzeichen span {
  font-size: 12px;
  padding: 6px 12px;
  background: var(--hintergrund);
  border-radius: 6px;
  color: var(--tekst-sekundaer);
}

.link-titel {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--tekst);
}

.fusszeile-link {
  display: block;
  font-size: 14px;
  color: var(--tekst-sekundaer);
  margin-bottom: 10px;
  transition: var(--uebergang);
}

.fusszeile-link:hover {
  color: var(--primaer);
  padding-left: 4px;
}

.fusszeile-unten {
  padding-top: 24px;
  border-top: 1px solid var(--rand);
  text-align: center;
}

.copyright,
.disclaimer {
  font-size: 12px;
  color: var(--tekst-sekundaer);
  line-height: 1.6;
  margin-bottom: 8px;
}

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

/* Mobile Menu Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: var(--kopfzeile-hoehe);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .held-inhalt {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .held-visuell {
    order: -1;
  }
  
  .navigation {
    position: fixed;
    top: var(--kopfzeile-hoehe);
    left: 0;
    right: 0;
    background: var(--hintergrund);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 0;
    gap: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--rand);
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
  }
  
  .navigation.active {
    display: flex;
    max-height: calc(100vh - var(--kopfzeile-hoehe));
    opacity: 1;
    visibility: visible;
    padding: 24px;
    overflow-y: auto;
  }
  
  .nav-verknuepfung {
    width: 100%;
    padding: 16px 20px;
    border-bottom: 1px solid var(--rand);
    font-size: 16px;
  }
  
  .nav-verknuepfung:last-child {
    border-bottom: none;
  }
  
  .nav-verknuepfung::after {
    display: none;
  }
  
  .nav-verknuepfung:hover {
    background: var(--hintergrund-sekundaer);
    padding-left: 24px;
  }
  
  .mobil-umschalter {
    display: flex;
  }
  
  .kopfzeile-aktionen {
    gap: 8px;
  }
  
  .geschenk-taste span:not(.geschenk-abzeichen) {
    display: none;
  }
  
  .geschenk-taste {
    padding: 10px 14px;
  }
  
  .details-raster {
    grid-template-columns: 1fr;
  }
  
  .fusszeile-inhalt {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .hauptangebot-inhalt {
    padding: 40px 32px;
  }
  
  .bonus-statistik-raster {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .kopfzeile {
    padding: 0;
  }
  
  .kopfzeile .behaelter {
    padding: 0 16px;
  }
  
  .kopfzeile-inhalt {
    min-height: 60px;
  }
  
  :root {
    --kopfzeile-hoehe: 60px;
  }
  
  .logo {
    font-size: 18px;
  }
  
  .logo-symbol {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .mobil-umschalter {
    display: flex;
  }
  
  .thema-umschalter {
    width: 36px;
    height: 36px;
  }
  
  .geschenk-taste {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .geschenk-taste .symbol {
    width: 16px;
    height: 16px;
  }
  
  .held {
    padding: 40px 0 60px;
  }
  
  .held-statistiken {
    grid-template-columns: 1fr;
  }
  
  .kasyna-raster {
    grid-template-columns: 1fr;
  }
  
  .angebote-raster {
    grid-template-columns: 1fr;
  }
  
  .schritte-raster {
    grid-template-columns: 1fr;
  }
  
  .tipps-raster {
    grid-template-columns: 1fr;
  }
  
  .mobil-funktionen-raster {
    grid-template-columns: 1fr;
  }
  
  .hauptangebot-inhalt {
    padding: 32px 20px;
  }
  
  .hauptangebot-titel {
    font-size: 2rem;
  }
  
  .bonus-statistik-wert {
    font-size: 28px;
  }
  
  .bonus-statistik-raster {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .angebot-karte {
    padding: 24px;
  }
  
  .mobil-schritt {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .leistung-raster {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mobil-cta {
    padding: 32px 20px;
  }
  
  .mobil-cta-titel {
    font-size: 24px;
  }
  
  .live-kopf {
    flex-direction: column;
  }
  
  .fusszeile-inhalt {
    grid-template-columns: 1fr;
  }
  
  .modal-korper {
    padding: 24px 20px 32px;
  }
  
  .bonus-betrag-gross {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hot-badge {
    top: 10px;
    right: 10px;
    font-size: 10px;
    padding: 6px 12px;
  }
  
  .bonus-statistik-element {
    padding: 12px;
  }
  
  .bonus-statistik-wert {
    font-size: 24px;
  }
  
  .leistung-raster {
    grid-template-columns: 1fr;
  }
  
  .geraet-karte {
    padding: 20px;
  }
  
  .sektion-titel {
    font-size: 1.75rem;
  }
}