/* ====================
   ROYAL JOKER NL - MAIN STYLES
   ==================== */

* {
  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);
  margin-top: 10px;
}

/* ====================
   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-inhalt {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo:hover {
  opacity: 0.8;
}

.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: 24px;
  box-shadow: var(--schatten);
}

.footer-logo .logo-symbol {
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.navigation {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--tekst-sekundaer);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
}

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

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

.geschenk-taste {
  width: 44px;
  height: 44px;
  background: var(--verlauf-gold);
  border: none;
  border-radius: 10px;
  color: #7c2d12;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

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

.mobil-umschalter {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--hintergrund-sekundaer);
  border: 1px solid var(--rand);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--tekst);
  transition: all 0.3s ease;
}

.mobil-umschalter:hover {
  background: var(--hintergrund-tertiaer);
}

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

.held {
  padding: calc(var(--kopfzeile-hoehe) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

.held::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--verlauf-mesh);
  opacity: 0.6;
  pointer-events: none;
}

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

.held-tekst {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.held-abzeichen {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid var(--primaer);
  border-radius: 999px;
  color: var(--primaer);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.held-titel {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--tekst);
}

.held-titel-akzent {
  background: var(--verlauf-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.held-stat {
  padding: 20px;
  background: var(--hintergrund-sekundaer);
  border: 1px solid var(--rand);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

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

.stat-wert {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 4px;
  display: block;
}

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

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

.schaltflaeche {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.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-sekundaer);
  color: var(--tekst);
  border: 1px solid var(--rand);
}

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

.held-vertrouwen {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vertrauens-abzeichen {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--erfolg);
  border-radius: 8px;
  font-size: 14px;
  color: var(--tekst-sekundaer);
}

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

/* ====================
   DEMO SECTION
   ==================== */

.held-demo {
  position: relative;
}

.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: 20px 48px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primaer);
  border: none;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.demo-spiel-taste:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.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-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 0;
}

.demo-info {
  padding: 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--sekundaer);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--tekst-sekundaer);
  text-align: center;
}

/* ====================
   LIVE STATS SECTION
   ==================== */

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

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

.live-titel {
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

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

.live-stat-bezeichnung {
  font-size: 12px;
  color: var(--tekst-sekundaer);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.gewinne-liste {
  display: grid;
  gap: 16px;
}

.gewinn-karte {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: var(--hintergrund);
  border: 1px solid var(--rand);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

.gewinn-avatar {
  width: 48px;
  height: 48px;
  background: var(--verlauf-primaer);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.gewinn-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gewinn-spieler {
  font-weight: 600;
  font-size: 15px;
}

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

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

.gewinn-zeit {
  font-size: 13px;
  color: var(--tekst-tertiaer);
}

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

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

/* ====================
   MAIN OFFER SECTION
   ==================== */

.hauptangebot {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hauptangebot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--verlauf-primaer);
  opacity: 1;
}

.hauptangebot-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 60px 32px;
}

.hot-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: var(--verlauf-gold);
  color: #7c2d12;
  font-size: 12px;
  font-weight: 800;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.hauptangebot-titel {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
  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;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

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

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

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

/* ====================
   FEATURES SECTION
   ==================== */

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

.sektion-kopf {
  text-align: center;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sektion-titel {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--tekst);
}

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

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

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

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

.mechanik-karte-primaer {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(185, 28, 28, 0.05) 100%);
  border-color: var(--primaer);
}

.mechanik-karte-akzent {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  border-color: var(--sekundaer);
}

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

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

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

.mechanik-statistiken {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.mechanik-stat {
  text-align: center;
  padding: 16px;
  background: var(--hintergrund);
  border-radius: var(--radius);
}

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

.mechanik-stat-label {
  font-size: 11px;
  color: var(--tekst-tertiaer);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.mechanik-liste {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

.mechanik-liste li {
  padding: 12px;
  background: var(--hintergrund);
  border-radius: 8px;
  font-size: 14px;
  color: var(--tekst-sekundaer);
}

.symbol-uitbetalingen {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.uitbetaling-rij {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--hintergrund);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.uitbetaling-rij:hover {
  transform: translateX(4px);
  background: var(--hintergrund-tertiaer);
}

.uitbetaling-highlight {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid var(--primaer);
}

.symbol-icoon {
  font-size: 24px;
}

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

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

.volatiliteit-grafiek {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.volatiliteit-balk {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: center;
}

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

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

.volatiliteit-vul {
  height: 100%;
  background: var(--tekst-tertiaer);
  border-radius: 999px;
  width: 30%;
  transition: all 1s ease;
}

.volatiliteit-actief .volatiliteit-label {
  color: var(--primaer);
  font-weight: 700;
}

.volatiliteit-actief .volatiliteit-vul {
  background: var(--verlauf-primaer);
  width: 100%;
}

/* ====================
   CASINO SECTION
   ==================== */

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

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

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

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

.kasino-position {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.position-nummer {
  width: 48px;
  height: 48px;
  background: var(--verlauf-primaer);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: var(--schatten);
}

.position-abzeichen {
  font-size: 10px;
  font-weight: 700;
  color: var(--warnung);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.kasino-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--tekst);
  margin: 0;
}

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

.funktion-tag {
  padding: 4px 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--erfolg);
  border-radius: 6px;
  font-size: 12px;
  color: var(--erfolg);
  font-weight: 600;
}

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

.kasino-bewertung-sektion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.kasino-bewertung {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

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

.stern {
  color: var(--warnung);
  font-size: 18px;
}

.stern.halb {
  color: var(--tekst-tertiaer);
}

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

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

.kasino-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.kasino-aktion {
  padding: 14px 32px;
  background: var(--verlauf-primaer);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}

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

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

.bonus-code {
  padding: 2px 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--sekundaer);
  border-radius: 4px;
  font-family: monospace;
  font-weight: 700;
  color: var(--sekundaer);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bonus-code:hover {
  background: rgba(245, 158, 11, 0.2);
  transform: scale(1.05);
}

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

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

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

.details-hauptbereich {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.details-karte {
  padding: 32px;
  background: var(--hintergrund-sekundaer);
  border: 1px solid var(--rand);
  border-radius: var(--radius-lg);
}

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

.details-karte-symbol {
  width: 56px;
  height: 56px;
  background: var(--verlauf-primaer);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: var(--schatten);
}

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

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

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

.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-beschriftung {
  font-size: 13px;
  color: var(--tekst-sekundaer);
}

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

.rezension-inhalt p {
  margin-bottom: 16px;
}

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

.details-seitenleiste {
  position: sticky;
  top: calc(var(--kopfzeile-hoehe) + 20px);
  height: fit-content;
}

.details-karte-sticky {
  position: sticky;
  top: calc(var(--kopfzeile-hoehe) + 20px);
}

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

.bonus-label {
  padding: 6px 12px;
  background: var(--verlauf-gold);
  color: #7c2d12;
  font-size: 12px;
  font-weight: 800;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 16px;
}

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

.bonus-plus {
  font-size: 18px;
  font-weight: 700;
  color: var(--tekst-sekundaer);
  margin-bottom: 20px;
}

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

.bonus-kenmerken li {
  padding: 12px;
  font-size: 14px;
  color: var(--tekst-sekundaer);
  border-bottom: 1px solid var(--rand);
}

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

.bonus-cta {
  width: 100%;
  padding: 14px;
  background: var(--verlauf-primaer);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

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

/* ====================
   STRATEGIES SECTION
   ==================== */

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

.strategie-inhoud {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.strategie-kaart {
  padding: 32px;
  background: var(--hintergrund);
  border: 1px solid var(--rand);
  border-radius: var(--radius-xl);
}

.strategie-featured {
  border: 2px solid var(--primaer);
  box-shadow: var(--schatten-xl);
}

.strategie-kopf {
  margin-bottom: 20px;
}

.strategie-badge {
  padding: 6px 12px;
  background: var(--verlauf-gold);
  color: #7c2d12;
  font-size: 11px;
  font-weight: 800;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.strategie-titel {
  font-size: 28px;
  font-weight: 800;
  color: var(--tekst);
  margin: 0;
}

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

.strategie-stappen {
  display: grid;
  gap: 20px;
}

.stap {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 20px;
  background: var(--hintergrund-sekundaer);
  border: 1px solid var(--rand);
  border-radius: var(--radius-lg);
}

.stap-nummer {
  width: 56px;
  height: 56px;
  background: var(--verlauf-primaer);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  box-shadow: var(--schatten);
}

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

.stap-inhoud p {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
  margin: 0;
}

.bankroll-tabel-sektion,
.subsectie-titel {
  margin-top: 48px;
}

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

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

.tabel-wrapper {
  overflow-x: auto;
}

.bankroll-tabel {
  width: 100%;
  border-collapse: collapse;
  background: var(--hintergrund);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bankroll-tabel thead {
  background: var(--hintergrund-tertiaer);
}

.bankroll-tabel th,
.bankroll-tabel td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--rand);
}

.bankroll-tabel th {
  font-weight: 700;
  font-size: 14px;
  color: var(--tekst);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bankroll-tabel td {
  font-size: 14px;
  color: var(--tekst-sekundaer);
}

.bankroll-tabel tr:last-child td {
  border-bottom: none;
}

.highlight-cell {
  background: rgba(220, 38, 38, 0.05);
  font-weight: 700;
  color: var(--erfolg);
}

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

.strategie-mini-card {
  padding: 24px;
  background: var(--hintergrund);
  border: 1px solid var(--rand);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

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

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

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

.mini-card-lijst {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

.mini-card-lijst li {
  font-size: 13px;
  color: var(--tekst-tertiaer);
}

.pro-tips-sektion {
  margin-top: 48px;
}

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

.tip-kaart {
  padding: 24px;
  background: var(--hintergrund);
  border: 1px solid var(--rand);
  border-radius: var(--radius-lg);
}

.tip-nummer {
  padding: 4px 10px;
  background: var(--verlauf-gold);
  color: #7c2d12;
  font-size: 11px;
  font-weight: 800;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
}

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

.tip-tekst {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.7;
  margin: 0;
}

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

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

.mobil-inhoud {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

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

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

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

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

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

.funktion-lijst {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

.funktion-lijst li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--tekst-sekundaer);
}

.funktion-lijst li span:first-child {
  color: var(--erfolg);
}

.mobil-vergelijking {
  padding: 32px;
  background: var(--hintergrund-sekundaer);
  border-radius: var(--radius-xl);
}

.vergelijking-tabel-wrapper {
  overflow-x: auto;
}

.vergelijking-tabel {
  width: 100%;
  border-collapse: collapse;
  background: var(--hintergrund);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vergelijking-tabel thead {
  background: var(--hintergrund-tertiaer);
}

.vergelijking-tabel th,
.vergelijking-tabel td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--rand);
}

.vergelijking-tabel th {
  font-weight: 700;
  font-size: 14px;
  color: var(--tekst);
  text-transform: uppercase;
}

.vergelijking-tabel td {
  font-size: 14px;
  color: var(--tekst-sekundaer);
}

.vergelijking-tabel .feature-label {
  text-align: left;
  font-weight: 600;
  color: var(--tekst);
}

.vergelijking-tabel tr:last-child td {
  border-bottom: none;
}

.highlight-col {
  background: rgba(220, 38, 38, 0.05);
  font-weight: 700;
  color: var(--erfolg);
}

.mobil-tips {
  padding: 32px;
  background: var(--hintergrund-sekundaer);
  border-radius: var(--radius-xl);
}

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

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

.mobiel-tip:hover {
  border-color: var(--primaer);
  transform: translateY(-2px);
}

.tip-icoon {
  font-size: 32px;
  margin-bottom: 12px;
}

.mobiel-tip h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--tekst);
  margin-bottom: 8px;
}

.mobiel-tip p {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  line-height: 1.6;
  margin: 0;
}

.mobil-performance {
  padding: 32px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

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

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

.perf-waarde {
  font-size: 36px;
  font-weight: 900;
  color: var(--primaer);
  margin-bottom: 8px;
  display: block;
}

.perf-label {
  font-size: 14px;
  color: var(--tekst-sekundaer);
  display: block;
}

/* ====================
   FAQ SECTION
   ==================== */

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

.faq-liste {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-element {
  padding: 24px;
  background: var(--hintergrund-sekundaer);
  border: 1px solid var(--rand);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.faq-element:hover {
  border-color: var(--primaer);
  box-shadow: var(--schatten);
}

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

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

/* ====================
   RESPONSIBLE GAMING
   ==================== */

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

.verantwoord-inhoud {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.verantwoord-symbool {
  font-size: 64px;
  margin-bottom: 20px;
}

.verantwoord-titel {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--tekst);
}

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

.verantwoord-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.verantwoord-link {
  padding: 12px 24px;
  background: var(--hintergrund);
  color: var(--primaer);
  text-decoration: none;
  border: 1px solid var(--primaer);
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.verantwoord-link:hover {
  background: var(--primaer);
  color: white;
}

.verantwoord-disclaimer {
  font-size: 13px;
  color: var(--tekst-tertiaer);
  line-height: 1.6;
}

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

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-kolom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--tekst-sekundaer);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primaer);
  padding-left: 4px;
}

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

.footer-copyright,
.footer-legal {
  color: var(--tekst-sekundaer);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-legal {
  color: var(--tekst-tertiaer);
  font-size: 12px;
}

.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;
  font-weight: 700;
}

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

/* ====================
   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;
  }
  
  .hauptangebot-wrapper {
    padding: 40px 32px;
  }
  
  .hauptangebot-statistiken {
    grid-template-columns: repeat(auto-fit, minmax(150px, 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;
  }
  
  .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%;
  }
  
  .mobil-funktionen-raster {
    grid-template-columns: 1fr;
  }
  
  .vergelijking-tabel-wrapper,
  .tabel-wrapper {
    overflow-x: auto;
  }
}

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