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

:root {
  /* Royal Joker Theme Colors - Red & Gold */
  --primaer: #dc2626;
  --primaer-dunkel: #b91c1c;
  --sekundaer: #f59e0b;
  --akzent: #10b981;
  --gefahr: #ef4444;
  --warnung: #fbbf24;
  --erfolg: #22c55e;
  
  /* Gradients */
  --verlauf-primaer: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  --verlauf-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --verlauf-ios: linear-gradient(125deg, 
    rgba(220, 38, 38, 0.1) 0%,
    rgba(245, 158, 11, 0.05) 25%,
    rgba(236, 72, 153, 0.05) 50%,
    rgba(251, 146, 60, 0.05) 75%,
    rgba(254, 240, 138, 0.1) 100%);
  --verlauf-mesh: radial-gradient(at 40% 20%, rgba(220, 38, 38, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(245, 158, 11, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(185, 28, 28, 0.1) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(251, 146, 60, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(254, 240, 138, 0.1) 0px, transparent 50%);
  
  /* Spacing */
  --kopfzeile-hoehe: 72px;
  --kopfzeile-hoehe-mobil: 64px;
  --behaelter-max: 1280px;
  --behaelter-polsterung: 24px;
  
  /* Borders & Shadows */
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --schatten-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --schatten: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --schatten-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --schatten-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  
  /* Theme Colors - Dark */
  --hintergrund: #0f172a;
  --hintergrund-sekundaer: #1e293b;
  --hintergrund-tertiaer: #334155;
  --tekst: #f1f5f9;
  --tekst-sekundaer: #cbd5e1;
  --tekst-tertiaer: #94a3b8;
  --rand: #334155;
}

[data-theme="light"] {
  --hintergrund: #ffffff;
  --hintergrund-sekundaer: #f9fafb;
  --hintergrund-tertiaer: #f3f4f6;
  --tekst: #111827;
  --tekst-sekundaer: #6b7280;
  --tekst-tertiaer: #9ca3af;
  --rand: #e5e7eb;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 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;
}

.behaelter {
  max-width: var(--behaelter-max);
  margin: 0 auto;
  padding: 0 var(--behaelter-polsterung);
}

/* Header */
.kopfzeile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--kopfzeile-hoehe);
  background: var(--hintergrund);
  border-bottom: 1px solid var(--rand);
  z-index: 1000;
  transition: all 0.3s ease;
}

.kopfzeile.scrolled {
  box-shadow: var(--schatten-lg);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
}

.kopfzeile-inhalt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  color: var(--tekst);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-symbol {
  width: 48px;
  height: 48px;
  background: var(--verlauf-primaer);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.navigation {
  display: flex;
  gap: 8px;
}

.nav-verknuepfung {
  padding: 8px 16px;
  color: var(--tekst-sekundaer);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-verknuepfung:hover,
.nav-verknuepfung.active {
  color: var(--primaer);
  background: rgba(220, 38, 38, 0.1);
}

.nav-verknuepfung.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primaer);
}

.kopfzeile-aktionen {
  display: flex;
  align-items: center;
  gap: 12px;
}

.thema-umschalter {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--hintergrund-tertiaer);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tekst);
  transition: all 0.3s ease;
}

.thema-umschalter:hover {
  background: var(--hintergrund-sekundaer);
  transform: rotate(180deg);
}

.geschenk-taste {
  padding: 10px 20px;
  background: var(--verlauf-gold);
  color: #7c2d12;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

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

.geschenk-abzeichen {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gefahr);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  animation: pulse 2s infinite;
}

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

.mobil-umschalter {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobil-umschalter span {
  width: 20px;
  height: 2px;
  background: var(--tekst);
  border-radius: 2px;
  transition: all 0.3s;
}

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

.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;
  gap: 8px;
  text-decoration: none;
}

.schaltflaeche-primaer {
  background: var(--verlauf-primaer);
  color: white;
  box-shadow: 0 4px 14px 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);
  transform: translateY(-2px);
}

/* Demo Section */
.held-demo {
  position: relative;
  animation: fadeInRight 0.8s ease;
}

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

.demo-behaelter {
  position: relative;
  background: var(--hintergrund);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--schatten-xl);
  border: 1px solid var(--rand);
  height: 600px;
  margin-bottom: 20px;
}

.demo-platzhalter {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.demo-logo {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 48px;
  color: white;
  font-weight: 900;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.demo-titel {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.demo-untertitel {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.demo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}

.demo-spiel-taste {
  padding: 16px 32px;
  background: var(--verlauf-gold);
  border-radius: 12px;
  color: #7c2d12;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.demo-spiel-taste:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

.demo-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}

.demo-iframe.active {
  display: block;
}

.anbieter-infokarte {
  background: var(--verlauf-primaer);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.anbieter-logo {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
}

.anbieter-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.anbieter-info {
  font-size: 14px;
  opacity: 0.9;
}

.schnell-statistiken {
  background: var(--hintergrund-sekundaer);
  border: 1px solid var(--rand);
  border-radius: 20px;
  padding: 24px;
}

.schnell-statistiken-titel {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.schnell-statistik {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--rand);
}

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

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

.schnell-statistik-wert {
  font-weight: 700;
  color: var(--primaer);
}

/* Casinos Section */
.kasyna-sektion {
  padding: 80px 0;
  background: var(--hintergrund-sekundaer);
  position: relative;
}

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

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

.sektion-titel {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

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

.kasyna-raster {
  display: grid;
  gap: 20px;
}

.kasino-karte {
  background: var(--hintergrund);
  border: 1px solid var(--rand);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 24px;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kasino-karte.featured {
  border: 2px solid var(--warnung);
  background: linear-gradient(135deg, var(--hintergrund) 0%, rgba(251, 146, 60, 0.05) 100%);
}

.kasino-karte.featured::after {
  content: 'NAJLEPSZY WYBÓR';
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--verlauf-gold);
  color: #7c2d12;
  padding: 4px 40px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.kasino-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;
}

.kasino-karte:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten-xl);
}

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

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

.kasino-karte.featured .kasino-position {
  background: var(--verlauf-gold);
  color: #7c2d12;
}

.kasino-inhalt {
  flex: 1;
}

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

.kasino-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--tekst);
}

.verifiziert-abzeichen {
  width: 20px;
  height: 20px;
  color: var(--erfolg);
}

.kasino-bonus-wrapper {
  margin-bottom: 12px;
}

.kasino-bonus {
  font-size: 16px;
  color: var(--primaer);
  font-weight: 600;
  margin-bottom: 4px;
}

.bonus-code {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px dashed var(--primaer);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primaer);
  font-family: monospace;
}

.kasino-funktionen {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.funktion-abzeichen {
  padding: 4px 10px;
  background: var(--hintergrund-tertiaer);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--tekst-sekundaer);
  display: flex;
  align-items: center;
  gap: 4px;
}

.zahlungsmethoden {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.zahlungsmethode {
  width: 32px;
  height: 20px;
  background: var(--hintergrund-tertiaer);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--tekst-sekundaer);
  border: 1px solid var(--rand);
}

.kasino-bewertung-sektion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: var(--hintergrund-tertiaer);
  border-radius: 12px;
}

.bewertung-wert {
  font-size: 32px;
  font-weight: 900;
  color: var(--warnung);
  line-height: 1;
}

.bewertung-sterne {
  display: flex;
  gap: 2px;
}

.stern {
  width: 18px;
  height: 18px;
  color: var(--warnung);
}

.stern.leer {
  opacity: 0.3;
}

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

.kasino-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kasino-aktion {
  padding: 16px 32px;
  background: var(--verlauf-primaer);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.kasino-aktion::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  transform: translate(-50%, -50%) rotate(45deg) translateX(-100%);
  transition: transform 0.6s;
}

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

.kasino-aktion:hover::after {
  transform: translate(-50%, -50%) rotate(45deg) translateX(100%);
}

.bedingungen-verknuepfung {
  font-size: 11px;
  color: var(--tekst-tertiaer);
  text-align: center;
  text-decoration: none;
}

.bedingungen-verknuepfung:hover {
  color: var(--tekst-sekundaer);
  text-decoration: underline;
}

/* Live Wins Section */
.live-gewinne-sektion {
  padding: 80px 0;
  background: var(--hintergrund-sekundaer);
  position: relative;
  overflow: hidden;
}

.live-gewinne-sektion::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(220, 38, 38, 0.05) 25%, 
    rgba(220, 38, 38, 0.05) 75%, 
    transparent 100%);
  animation: liveWave 20s linear infinite;
}

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

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

.live-titel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-indikator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--hintergrund);
  border: 1px solid var(--rand);
  border-radius: 999px;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
  50% { box-shadow: 0 0 20px 5px rgba(239, 68, 68, 0.3); }
}

.live-punkt {
  width: 8px;
  height: 8px;
  background: var(--gefahr);
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.5);
    opacity: 0.7;
  }
}

.live-tekst {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gefahr);
}

.live-statistiken {
  display: flex;
  gap: 24px;
}

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

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

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

.gewinne-behaelter {
  display: grid;
  gap: 12px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 8px;
  position: relative;
}

.gewinne-behaelter::-webkit-scrollbar {
  width: 6px;
}

.gewinne-behaelter::-webkit-scrollbar-track {
  background: var(--hintergrund-tertiaer);
  border-radius: 3px;
}

.gewinne-behaelter::-webkit-scrollbar-thumb {
  background: var(--primaer);
  border-radius: 3px;
}

.gewinn-karte {
  background: var(--hintergrund);
  border: 1px solid var(--rand);
  border-radius: 12px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
  animation: slideInWin 0.5s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gewinn-karte.neu {
  animation: newWinPulse 0.8s ease;
}

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

@keyframes newWinPulse {
  0% {
    background: rgba(34, 197, 94, 0.1);
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    background: var(--hintergrund);
    transform: scale(1);
  }
}

.gewinn-karte.grosser-gewinn {
  border-color: var(--warnung);
  background: linear-gradient(135deg, var(--hintergrund) 0%, rgba(251, 146, 60, 0.05) 100%);
}

.gewinn-karte.mega-gewinn {
  border-color: var(--erfolg);
  background: linear-gradient(135deg, var(--hintergrund) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.gewinn-karte.mega-gewinn::before {
  content: '🔥 MEGA WYGRANA!';
  position: absolute;
  top: 4px;
  right: 16px;
  padding: 2px 8px;
  background: var(--verlauf-gold);
  color: #7c2d12;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.gewinn-typ {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.gewinn-typ.sieg {
  background: rgba(34, 197, 94, 0.1);
  color: var(--erfolg);
}

.gewinn-typ.verlust {
  background: rgba(239, 68, 68, 0.1);
  color: var(--gefahr);
}

.gewinn-info {
  display: grid;
  gap: 4px;
}

.gewinn-spieler {
  font-weight: 600;
  color: var(--tekst);
  display: flex;
  align-items: center;
  gap: 8px;
}

.spieler-land {
  width: 20px;
  height: 14px;
  background: var(--hintergrund-tertiaer);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

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

.gewinn-kasino {
  color: var(--primaer);
  font-weight: 500;
}

.gewinn-betrag {
  text-align: right;
  display: grid;
  gap: 2px;
}

.gewinn-wert {
  font-size: 18px;
  font-weight: 700;
}

.gewinn-wert.positiv {
  color: var(--erfolg);
}

.gewinn-wert.negativ {
  color: var(--gefahr);
}

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

.gewinn-zeit {
  font-size: 11px;
  color: var(--tekst-tertiaer);
  white-space: nowrap;
}

.gewinn-aktion {
  padding: 8px 16px;
  background: var(--verlauf-primaer);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.gewinn-aktion:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Details Section */
.details-sektion {
  padding: 80px 0;
  background: var(--hintergrund);
  position: relative;
}

.details-raster {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.details-haupt {
  display: grid;
  gap: 24px;
}

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

.details-karte:hover {
  transform: translateY(-2px);
  box-shadow: var(--schatten-lg);
}

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

.details-karte-symbol {
  width: 48px;
  height: 48px;
  background: var(--verlauf-primaer);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.details-karte-titel {
  font-size: 24px;
  font-weight: 700;
}

.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: 16px 0;
  font-size: 14px;
}

.spezifikationen-tabelle td:first-child {
  color: var(--tekst-sekundaer);
  font-weight: 500;
}

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

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

.abzeichen.hoch {
  background: rgba(239, 68, 68, 0.1);
  color: var(--gefahr);
}

.bewertung-balken {
  display: grid;
  gap: 20px;
}

.bewertung-element {
  display: grid;
  gap: 8px;
}

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

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

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

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

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

.gesamt-bewertung {
  margin-top: 32px;
  padding: 24px;
  background: var(--hintergrund);
  border-radius: 16px;
  text-align: center;
}

.gesamt-bewertung-wert {
  font-size: 64px;
  font-weight: 900;
  color: var(--warnung);
  line-height: 1;
  margin-bottom: 12px;
}

.gesamt-bewertung-sterne {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.gesamt-bewertung-sterne .stern {
  width: 24px;
  height: 24px;
}

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

.rezension-inhalt {
  line-height: 1.8;
  color: var(--tekst-sekundaer);
}

.vor-nachteile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.vorteile,
.nachteile {
  padding: 20px;
  background: var(--hintergrund);
  border-radius: 12px;
}

.vorteile h4 {
  color: var(--erfolg);
  margin-bottom: 12px;
  font-size: 16px;
}

.nachteile h4 {
  color: var(--gefahr);
  margin-bottom: 12px;
  font-size: 16px;
}

.vorteile ul,
.nachteile ul {
  list-style: none;
  padding: 0;
}

.vorteile li,
.nachteile li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.6;
}

/* Sidebar */
.details-seitenleiste {
  position: relative;
}

.klebrige-seitenleiste {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 20px;
}

.info-karte {
  background: var(--hintergrund-sekundaer);
  border: 1px solid var(--rand);
  border-radius: 16px;
  padding: 24px;
}

.info-karte.featured {
  background: linear-gradient(135deg, var(--hintergrund-sekundaer) 0%, rgba(220, 38, 38, 0.05) 100%);
  border: 2px solid var(--primaer);
}

.info-karte-titel {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.info-karte-inhalt {
  display: grid;
  gap: 12px;
}

.bonus-anzeige {
  text-align: center;
  padding: 20px;
  background: var(--hintergrund);
  border-radius: 12px;
  margin-bottom: 16px;
}

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

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

.fakt-element {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--rand);
}

.fakt-element:last-child {
  border-bottom: none;
}

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

.fakt-wert {
  font-size: 13px;
  font-weight: 600;
  color: var(--primaer);
}

/* Mechanics Section */
.mechanik-sektion {
  padding: 80px 0;
  background: var(--hintergrund-sekundaer);
  position: relative;
}

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

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

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

.mechanik-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;
}

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

.mechanik-symbol {
  width: 56px;
  height: 56px;
  background: var(--verlauf-primaer);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

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

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

.mechanik-statistiken {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rand);
}

.mechanik-statistik {
  flex: 1;
  text-align: center;
}

.mechanik-statistik-wert {
  font-size: 18px;
  font-weight: 700;
  color: var(--primaer);
  display: block;
}

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

/* Paytable */
.auszahlungstabelle-behaelter {
  margin-top: 48px;
  padding: 32px;
  background: var(--hintergrund);
  border-radius: 20px;
  border: 1px solid var(--rand);
}

.auszahlungstabelle-titel {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.symbol-raster {
  display: grid;
  gap: 12px;
}

.symbol-reihe {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px;
  background: var(--hintergrund-sekundaer);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.symbol-reihe:hover {
  transform: translateX(4px);
  box-shadow: var(--schatten);
}

.symbol-reihe.featured {
  border: 2px solid var(--primaer);
  background: linear-gradient(135deg, var(--hintergrund-sekundaer) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.symbol-ikone {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.symbol-ikone.hoch-wert {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
}

.symbol-ikone.mittel-wert {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.symbol-ikone.niedrig-wert {
  background: var(--hintergrund-tertiaer);
  color: var(--tekst);
}

.symbol-ikone.special {
  background: var(--verlauf-gold);
  color: #7c2d12;
}

.symbol-info {
  display: grid;
  gap: 4px;
}

.symbol-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--tekst);
}

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

.symbol-auszahlung {
  text-align: right;
  display: grid;
  gap: 2px;
}

.auszahlung-wert {
  font-size: 24px;
  font-weight: 800;
  color: var(--primaer);
}

.auszahlung-beschriftung {
  font-size: 11px;
  color: var(--tekst-tertiaer);
  text-transform: uppercase;
}

/* How to Play Section */
.wie-zu-spielen-sektion {
  padding: 80px 0;
  background: var(--hintergrund);
}

/* FAQ Section */
.faq-sektion {
  padding: 80px 0;
}

.faq-element {
  background: var(--hintergrund-sekundaer);
  border: 1px solid var(--rand);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-element:hover {
  transform: translateX(4px);
  box-shadow: var(--schatten);
}

.faq-frage {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--tekst);
}

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

/* Bonuses Section */
.bonusy-sektion {
  padding: 80px 0;
}

/* Social Share Buttons */
.social-share {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.twitter {
  background: #1da1f2;
}

.social-btn.linkedin {
  background: #0077b5;
}

.social-btn.pinterest {
  background: #e60023;
}

.social-btn.whatsapp {
  background: #25d366;
}

.social-btn.email {
  background: var(--hintergrund-tertiaer);
  color: var(--tekst);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.modal-inhalt {
  position: relative;
  background: var(--hintergrund);
  border-radius: 20px;
  padding: 32px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--schatten-xl);
  animation: slideUp 0.3s ease;
  z-index: 2001;
}

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

.modal-schliessen {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--hintergrund-tertiaer);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tekst-sekundaer);
  transition: all 0.3s ease;
}

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

.modal-kopf {
  margin-bottom: 24px;
}

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

.modal-beschreibung {
  color: var(--tekst-sekundaer);
  line-height: 1.6;
}

.modal-funktionen {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.modal-funktion {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--hintergrund-tertiaer);
  border-radius: 10px;
}

.modal-funktion-symbol {
  width: 20px;
  height: 20px;
  color: var(--erfolg);
}

.modal-aktion {
  width: 100%;
  padding: 14px;
  background: var(--verlauf-gold);
  color: #7c2d12;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

.modal-aktion:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

/* Icons */
.symbol {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 1024px) {
  .held-inhalt {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .held-demo {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .demo-behaelter {
    height: 500px;
  }
  
  .kasino-karte {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
  
  .kasino-position {
    margin: 0 auto;
  }
  
  .kasino-inhalt {
    order: 2;
  }
  
  .kasino-bewertung-sektion {
    order: 3;
    margin: 0 auto;
  }
  
  .kasino-cta {
    order: 4;
    width: 100%;
  }
  
  .kasino-aktion {
    width: 100%;
  }
  
  .details-raster {
    grid-template-columns: 1fr;
  }
  
  .details-seitenleiste {
    position: static;
  }
  
  .vor-nachteile {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --kopfzeile-hoehe: 64px;
    --behaelter-polsterung: 20px;
  }
  
  .kopfzeile {
    height: var(--kopfzeile-hoehe-mobil);
  }
  
  .navigation {
    display: none;
  }
  
  .mobil-umschalter {
    display: flex;
  }
  
  .held-statistiken {
    grid-template-columns: 1fr;
  }
  
  .mechanik-raster {
    grid-template-columns: 1fr;
  }
  
  .live-kopf {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .live-statistiken {
    width: 100%;
    justify-content: space-between;
  }
  
  .gewinn-karte {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }
  
  .gewinn-betrag,
  .gewinn-zeit,
  .gewinn-aktion {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .held-titel {
    font-size: 2rem;
  }
  
  .sektion-titel {
    font-size: 1.75rem;
  }
  
  .held-aktionen {
    flex-direction: column;
    width: 100%;
  }
  
  .schaltflaeche {
    width: 100%;
    justify-content: center;
  }
}
/* Mobile Gaming Section */
.mobil-gaming-sektion .geraet-karte:hover {
  transform: translateY(-8px);
  box-shadow: var(--schatten-xl);
  border-color: var(--primaer);
}

/* Exclusive Offers Section */
.exklusive-angebote-sektion .angebot-karte {
  cursor: pointer;
}

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

.hauptangebot {
  animation: pulseGlowSoft 3s ease-in-out infinite;
}

@keyframes pulseGlowSoft {
  0%, 100% {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
  }
  50% {
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.5);
  }
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .mobil-funktionen-raster {
    grid-template-columns: 1fr !important;
  }
  
  .hauptangebot {
    padding: 32px 20px !important;
  }
  
  .hauptangebot h3 {
    font-size: 2rem !important;
  }
}
/* ============================================
   EXCLUSIVE OFFERS SECTION - COMPLETE STYLES
   ============================================ */

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

/* Background decorations */
.exklusive-angebote-sektion::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.exklusive-angebote-sektion::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Main Featured Offer */
.hauptangebot {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #f59e0b 100%);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
  animation: pulseGlowSoft 3s ease-in-out infinite;
}

@keyframes pulseGlowSoft {
  0%, 100% {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
  }
  50% {
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.5), 0 0 60px rgba(245, 158, 11, 0.3);
  }
}

/* Hot offer badge */
.hauptangebot > div:first-child {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

/* Offer cards */
.angebot-karte {
  background: var(--hintergrund);
  border: 2px solid var(--rand);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.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::before {
  transform: scaleX(1);
}

/* Badge on offer cards */
.angebot-karte > div:first-child {
  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;
}

/* VIP Card special styling */
.angebot-karte:nth-child(3) {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 2px solid var(--primaer);
}

/* Bonus terms section */
.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);
}

/* Warning box */
.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 at bottom */
.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);
}

/* Stats grid in main offer */
.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 display */
.bonus-code-anzeige {
  font-size: 13px;
  opacity: 0.8;
  color: white;
}

.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);
}

/* ============================================
   MOBILE GAMING SECTION - COMPLETE STYLES
   ============================================ */

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

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

.geraet-karte {
  background: var(--hintergrund-sekundaer);
  border: 1px solid var(--rand);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.geraet-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;
}

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

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

/* Mobile how to section */
.mobil-anleitung {
  background: var(--hintergrund-sekundaer);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--rand);
  margin-bottom: 32px;
}

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

.mobil-schritt:last-child {
  margin-bottom: 0;
}

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

.schritt-nummer.gold {
  background: var(--verlauf-gold);
  color: #7c2d12;
}

/* Performance stats */
.leistung-statistik {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

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

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

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

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

/* Mobile exclusive features */
.mobil-funktionen-box {
  margin-top: 32px;
  padding: 24px;
  background: var(--hintergrund);
  border-radius: 16px;
  border: 1px solid var(--rand);
}

.mobil-funktion-element {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
}

.mobil-funktion-element:last-child {
  margin-bottom: 0;
}

.mobil-funktion-element span:first-child {
  font-size: 24px;
  flex-shrink: 0;
}

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

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

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

.mobil-cta .schaltflaeche {
  background: white;
  color: var(--primaer);
  display: inline-flex;
  padding: 16px 40px;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mobil-cta .schaltflaeche:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 1024px) {
  .hauptangebot {
    padding: 40px 32px;
  }
  
  .bonus-statistik-raster {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .mobil-funktionen-raster {
    grid-template-columns: 1fr;
  }
  
  .hauptangebot {
    padding: 32px 20px;
  }
  
  .hauptangebot h3 {
    font-size: 2rem !important;
  }
  
  .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 h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hauptangebot > div:first-child {
    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;
  }
}

/* Animation for checkmarks in lists */
@keyframes checkmarkPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.geraet-karte ul li span:first-child {
  animation: checkmarkPop 0.3s ease;
}

/* Hover effect for offer cards icon */
.angebot-karte > div:nth-child(2) {
  transition: transform 0.3s ease;
}

.angebot-karte:hover > div:nth-child(2) {
  transform: scale(1.1) rotate(5deg);
}

/* Gradient text for main offer title */
.hauptangebot h3 {
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shine effect on main offer */
.hauptangebot::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  animation: shine 6s infinite;
}

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

/* Terms box styling */
.bonus-bedingungen > div:last-child > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.bonus-bedingungen h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primaer);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Floating animation for icons */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cta-banner > div:first-child {
  animation: float 3s ease-in-out infinite;
}

.mobil-cta > div:first-child {
  animation: float 3s ease-in-out infinite;
}
/* Main Featured Offer - POPRAWIONE STYLE */
.hauptangebot-wrapper {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #f59e0b 100%);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
  animation: pulseGlowSoft 3s ease-in-out infinite;
}

.hauptangebot-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  animation: shine 6s infinite;
  pointer-events: none;
}

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

.hot-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
  z-index: 2;
}

.hauptangebot-inhalt {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.hauptangebot-ueberschrift {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.9;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hauptangebot-titel {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hauptangebot-betrag {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hauptangebot-beschreibung {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.95;
  line-height: 1.6;
  color: white;
}

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

.hauptangebot-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hauptangebot-stat:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.stat-wert {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 4px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-bezeichnung {
  font-size: 14px;
  opacity: 0.9;
  color: white;
}

.hauptangebot-aktionen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hauptangebot-taste {
  background: white;
  color: #dc2626;
  padding: 18px 48px;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hauptangebot-taste:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.hauptangebot-code {
  font-size: 13px;
  opacity: 0.9;
  color: white;
}

.code-box {
  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;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.code-box:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive for main offer */
@media (max-width: 1024px) {
  .hauptangebot-wrapper {
    padding: 40px 32px;
  }
  
  .hauptangebot-statistiken {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .hauptangebot-wrapper {
    padding: 32px 20px;
  }
  
  .hauptangebot-titel {
    font-size: 2rem;
  }
  
  .hauptangebot-betrag {
    font-size: 1.5rem;
  }
  
  .stat-wert {
    font-size: 28px;
  }
  
  .hauptangebot-statistiken {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .hauptangebot-taste {
    padding: 16px 32px;
    font-size: 18px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hot-badge {
    top: 10px;
    right: 10px;
    font-size: 10px;
    padding: 6px 12px;
  }
  
  .hauptangebot-stat {
    padding: 12px;
  }
  
  .stat-wert {
    font-size: 24px;
  }
  
  .hauptangebot-ueberschrift {
    font-size: 14px;
  }
}
/* Demo close button */
.demo-schliessen {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.9);
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 700;
}

.demo-schliessen:hover {
  background: #991b1b;
  transform: scale(1.1);
}

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

/* Demo Section - FIXED VERSION */
.demo-behaelter {
  position: relative;
  background: var(--hintergrund);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--schatten-xl);
  border: 1px solid var(--rand);
  height: 600px;
  margin-bottom: 20px;
}

.demo-platzhalter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.demo-platzhalter.hidden {
  opacity: 0;
  pointer-events: none;
}

.demo-logo {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 48px;
  color: white;
  font-weight: 900;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.demo-titel {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.demo-untertitel {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.demo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.demo-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.demo-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}

.demo-spiel-taste {
  padding: 16px 32px;
  background: var(--verlauf-gold);
  border-radius: 12px;
  color: #7c2d12;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.demo-spiel-taste:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

.demo-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.demo-iframe.active {
  opacity: 1;
  pointer-events: all;
}

.demo-schliessen {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(220, 38, 38, 0.95);
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.demo-schliessen:hover {
  background: #991b1b;
  transform: scale(1.1) rotate(90deg);
}

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

/* Responsive demo */
@media (max-width: 1024px) {
  .demo-behaelter {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .demo-behaelter {
    height: 400px;
  }
  
  .demo-logo {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
  
  .demo-titel {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .demo-behaelter {
    height: 500px;
  }
  
  .demo-logo {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
  
  .demo-titel {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .demo-behaelter {
    height: 450px;
    margin-bottom: 20px;
  }
  
  .demo-logo {
    width: 90px;
    height: 90px;
    font-size: 36px;
    margin-bottom: 16px;
  }
  
  .demo-titel {
    font-size: 22px;
    margin-bottom: 6px;
  }
  
  .demo-untertitel {
    font-size: 12px;
  }
  
  .demo-spiel-taste {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .demo-schliessen {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  .demo-behaelter {
    height: 400px !important;
    border-radius: 16px;
  }
  
  .demo-logo {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .demo-titel {
    font-size: 20px;
  }
  
  .demo-untertitel {
    font-size: 11px;
    letter-spacing: 1px;
  }
  
  .demo-spiel-taste {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .demo-schliessen {
    width: 36px;
    height: 36px;
    top: 10px;
    right: 10px;
  }
  
  .demo-schliessen svg {
    width: 16px;
    height: 16px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .demo-behaelter {
    height: 350px !important;
  }
}

/* Portrait mode specific */
@media (max-width: 768px) and (orientation: portrait) {
  .demo-behaelter {
    height: 400px !important;
    max-height: 50vh;
  }
}

/* Landscape mode on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .demo-behaelter {
    height: 80vh !important;
    max-height: 600px;
  }
}
/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
  .demo-overlay {
    -webkit-tap-highlight-color: transparent;
  }
  
  .demo-spiel-taste {
    padding: 16px 32px;
    font-size: 16px;
    min-height: 48px; /* iOS minimum touch target */
  }
  
  .demo-schliessen {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Prevent zoom on double tap */
.demo-behaelter * {
  touch-action: manipulation;
}

/* Better iframe handling on iOS */
.demo-iframe {
  -webkit-overflow-scrolling: touch;
}

/* Demo Section */
.held-demo {
  position: relative;
  animation: fadeInRight 0.8s ease;
}

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

.demo-behaelter {
  position: relative;
  background: var(--hintergrund);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--schatten-xl);
  border: 1px solid var(--rand);
  height: 600px;
  margin-bottom: 20px;
}

/* Responsive fixes for demo */
@media (max-width: 1024px) {
  .held-demo {
    margin: 0 auto; 
    max-width: 600px;
  }
  
  .demo-behaelter {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .held-demo {
    margin: 0 !important; 
    width: 100%;
    max-width: 100%;
  }
  
  .demo-behaelter {
    height: 450px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .held-demo {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
  }
  
  .demo-behaelter {
    height: 400px !important;
    border-radius: 12px;
  }
}

/* Portrait mode */
@media (max-width: 768px) and (orientation: portrait) {
  .held-demo {
    margin: 0 !important;
  }
  
  .demo-behaelter {
    height: 400px !important;
    max-height: 50vh;
  }
}
/* Header - Mobile Optimizations */
@media (max-width: 768px) {
  .kopfzeile {
    height: var(--kopfzeile-hoehe-mobil);
    padding: 0 12px;
  }
  
  .kopfzeile-inhalt {
    gap: 8px;
  }
  
  .logo {
    gap: 8px;
    font-size: 16px;
  }
  
  .logo-symbol {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }
  
  .navigation {
    display: none;
  }
  
  .thema-umschalter {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  
  .thema-umschalter svg {
    width: 18px;
    height: 18px;
  }
  
  .geschenk-taste {
    padding: 8px 12px;
    font-size: 13px;
    gap: 6px;
    border-radius: 8px;
    white-space: nowrap;
  }
  
  .geschenk-taste svg {
    width: 16px;
    height: 16px;
  }
  
  .geschenk-abzeichen {
    top: -4px;
    right: -4px;
    font-size: 9px;
    padding: 2px 5px;
  }
  
  /* Mobile toggle */
  .mobil-umschalter {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 8px;
  }
  
  .mobil-umschalter span {
    width: 18px;
  }
}

@media (max-width: 480px) {
  .kopfzeile {
    padding: 0 10px;
  }
  
  .logo {
    font-size: 14px;
    gap: 6px;
  }
  
  .logo-symbol {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 8px;
  }
  
  .geschenk-taste {
    padding: 7px 10px;
    font-size: 12px;
    gap: 4px;
  }
  
  .geschenk-taste span:last-child {
    display: none;
  }
  
  .geschenk-taste svg {
    width: 18px;
    height: 18px;
  }
  
  .thema-umschalter {
    width: 34px;
    height: 34px;
  }
  
  .mobil-umschalter {
    width: 34px;
    height: 34px;
  }
}

/* Extra małe ekrany */
@media (max-width: 375px) {
  .kopfzeile {
    padding: 0 8px;
  }
  
  .kopfzeile-inhalt {
    gap: 6px;
  }
  
  .logo {
    font-size: 13px;
  }
  
  .logo-symbol {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .geschenk-taste {
    padding: 8px;
    min-width: 36px;
  }
  
  .geschenk-abzeichen {
    top: -3px;
    right: -3px;
    font-size: 8px;
    padding: 1px 4px;
  }
}
/* Mobile Navigation Menu */
@media (max-width: 768px) {
  .navigation {
    display: none;
    position: fixed;
    top: var(--kopfzeile-hoehe-mobil);
    left: 0;
    right: 0;
    background: var(--hintergrund);
    border-top: 1px solid var(--rand);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    box-shadow: var(--schatten-lg);
    z-index: 999;
    animation: slideDown 0.3s ease;
  }
  
  .navigation.active {
    display: flex;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .nav-verknuepfung {
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
    text-align: left;
  }
  
  /* Burger animation */
  .mobil-umschalter.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobil-umschalter.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobil-umschalter.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}