/* Online Casinos & Spielotheken Übersicht (/online/) — Seiten-spezifische Komponenten.
 * Auf design-system.css-Tokens gebaut, Farben an die Front-page angelehnt.
 * Reveal als progressive enhancement (Inhalt sichtbar by default). */

/* Saubere, einheitlich dunkle Leinwand (kein durchscheinendes Body-Bild zwischen Sektionen). */
body.page-template-page-online-casinos { background: #0B1221; background-image: none; }

/* border-box für die ganze Seite — die portierten Entwurf-Komponenten gehen
 * davon aus (Höhen/Breiten inkl. Padding). Ohne Reset rechnet der Browser
 * content-box und Logo-/Box-Höhen werden zu groß. */
body.page-template-page-online-casinos *,
body.page-template-page-online-casinos *::before,
body.page-template-page-online-casinos *::after { box-sizing: border-box; }

/* ── REVEAL (progressive enhancement) ── */
.reveal { opacity: 1; transform: none; }
@media (scripting: enabled) and (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1); }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
}

/* ══════════ PAGE HERO ══════════ */
.page-hero {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-start; padding: 24px 16px 28px;
  background: linear-gradient(165deg, #0B1221 0%, #152238 40%, #0B1221 100%);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(29, 184, 123, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 70% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, #0B1221, transparent); pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: var(--badge-size); font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: #F5A623; margin-bottom: 16px;
}
.page-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #F5A623;
  box-shadow: 0 0 12px rgba(245, 166, 35, 0.5); animation: dotPulse 3s ease-in-out infinite;
}
@keyframes dotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(1.2); } }
.page-hero-title {
  font-family: var(--font-display); font-size: var(--h3-size); font-weight: 900;
  line-height: 0.95; color: var(--color-heading); letter-spacing: -0.5px; margin-bottom: 18px;
}
.page-hero-title-accent { color: #F5A623; }
.page-hero-title-live { color: #3B82F6; font-style: italic; }
.page-hero-desc { font-size: var(--label-size); line-height: 1.7; color: rgba(240, 244, 248, 0.58); max-width: none; }
@media (min-width: 768px) {
  .page-hero { padding: 112px 40px 40px; }
  .page-hero-title { font-size: var(--h2-size); }
}
@media (min-width: 1024px) {
  .page-hero-title { font-size: var(--h1-size); }
}

/* ══════════ STATS BAR ══════════ */
.stats-bar { padding: 0 16px; margin-top: -1px; position: relative; z-index: 3; }
.stats-bar-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stats-bar-item {
  background: rgba(21, 34, 56, 0.5); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 14px;
  padding: 18px 16px; text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.stats-bar-item:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.14); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }
.stats-bar-item-highlight {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(21, 34, 56, 0.5) 100%);
}
.stats-bar-item-highlight::before {
  content: ''; position: absolute; top: 10px; right: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: #3B82F6;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.7); animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.3); } }
.stats-bar-item-value { font-family: var(--font-display); font-size: var(--h4-size); font-weight: 900; color: #F5A623; display: block; line-height: 1; }
.stats-bar-item-highlight .stats-bar-item-value { color: #3B82F6; }
.stats-bar-item-anbieter .stats-bar-item-value { color: var(--color-heading); }
.stats-bar-item-lizenz .stats-bar-item-value { color: #34D399; }
.stats-bar-item-label { font-family: var(--font-mono); font-size: var(--badge-size); text-transform: uppercase; letter-spacing: 1px; color: rgba(240, 244, 248, 0.6); margin-top: 4px; }
@media (min-width: 480px) {
  .stats-bar-inner { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
  .stats-bar { padding: 0 40px; }
  .stats-bar-item { padding: 24px 20px; }
  .stats-bar-item-value { font-size: var(--h1-size); }
}

/* ══════════ LIVE CASINO SPOTLIGHT ══════════ */
.spotlight { padding: 48px 16px 24px; }
.spotlight-inner {
  max-width: 1200px; margin: 0 auto; position: relative;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(21, 34, 56, 0.4) 50%, rgba(245, 166, 35, 0.06) 100%);
  border: 1px solid rgba(59, 130, 246, 0.25); border-radius: 22px;
  padding: 32px 24px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 80px rgba(59, 130, 246, 0.08);
}
.spotlight-inner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%); pointer-events: none;
}
.spotlight-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; z-index: 1; }
.spotlight-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(59, 130, 246, 0.15); border: 1px solid rgba(59, 130, 246, 0.35);
  font-size: var(--badge-size); font-weight: 800; color: #7FA8FF;
  text-transform: uppercase; letter-spacing: 1.6px; margin-bottom: 14px;
}
.spotlight-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: #3B82F6;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.8); animation: livePulse 1.6s ease-in-out infinite;
}
.spotlight-heading { font-family: var(--font-display); font-size: var(--h4-size); font-weight: 900; line-height: 1.0; color: var(--color-heading); margin-bottom: 14px; letter-spacing: -0.5px; }
.spotlight-heading-accent { color: #3B82F6; font-style: italic; }
.spotlight-text { font-size: var(--label-size); color: rgba(240, 244, 248, 0.68); line-height: 1.65; margin-bottom: 18px; }
.spotlight-text strong { color: var(--color-heading); font-weight: 700; }
.spotlight-states { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.spotlight-state-chip {
  flex: 1 1 200px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px 12px 12px; border-radius: 12px;
  background: rgba(245, 166, 35, 0.08); border: 1px solid rgba(245, 166, 35, 0.25);
}
.spotlight-state-chip-flag { width: 28px; height: 20px; border-radius: 4px; background: linear-gradient(180deg, #F5A623 0%, #C57E0B 100%); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: var(--badge-size); color: #0B1221; font-weight: 900; font-family: var(--font-display); }
.spotlight-state-chip-name { font-family: var(--font-display); font-size: var(--btn-size); font-weight: 800; color: var(--color-heading); line-height: 1; }
.spotlight-state-chip-sub { font-size: var(--badge-size); color: rgba(245, 166, 35, 0.8); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-top: 2px; }
.spotlight-visual { display: flex; flex-direction: column; gap: 14px; }
.spotlight-visual-item {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center;
  padding: 14px 18px; border-radius: 14px;
  background: rgba(11, 18, 33, 0.55); border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease;
}
.spotlight-visual-item:hover { border-color: rgba(59, 130, 246, 0.35); }
.spotlight-visual-icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(59, 130, 246, 0.12); color: #7FA8FF; font-size: var(--body-size); flex-shrink: 0;
}
.spotlight-visual-text-title { font-family: var(--font-display); font-size: var(--body-size); font-weight: 800; color: var(--color-heading); line-height: 1.1; margin-bottom: 2px; }
.spotlight-visual-text-desc { font-size: var(--badge-size); color: rgba(240, 244, 248, 0.6); line-height: 1.45; }
@media (min-width: 768px) {
  .spotlight { padding: var(--space-md) 40px 32px; }
  .spotlight-inner { padding: 44px 48px; }
  .spotlight-grid { grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: stretch; }
  /* Rechte Spalte füllt die volle Zeilenhöhe; die 3 Boxen wachsen gleichmäßig. */
  .spotlight-visual { height: 100%; justify-content: space-between; }
  .spotlight-visual-item { flex: 1; }
  .spotlight-heading { font-size: var(--h1-size); }
}
@media (min-width: 1024px) {
  .spotlight-heading { font-size: var(--h3-size); }
}

/* ══════════ SEGMENT TOGGLE ══════════ */
.segment-toggle { padding: 24px 16px 0; max-width: 1200px; margin: 0 auto; }
.segment-toggle-inner {
  display: flex; gap: 8px; padding: 8px; border-radius: 18px;
  background: rgba(21, 34, 56, 0.5); border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  overflow-x: auto; scrollbar-width: none;
}
.segment-toggle-inner::-webkit-scrollbar { display: none; }
.segment-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 12px;
  background: transparent; border: none; color: rgba(240, 244, 248, 0.65);
  font-family: var(--font-body); font-size: var(--table-head-size); line-height: var(--table-head-lh); font-weight: var(--table-head-fw); cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  white-space: nowrap; min-height: 48px; position: relative;
}
.segment-btn i { font-size: var(--badge-size); opacity: 0.7; }
.segment-btn:hover { color: var(--color-heading); background: rgba(255, 255, 255, 0.05); }
.segment-btn.active { color: var(--color-heading); background: rgba(245, 166, 35, 0.15); box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.3), 0 0 20px rgba(245, 166, 35, 0.12); }
.segment-btn.active i { color: #F5A623; opacity: 1; }
.segment-btn-count { font-family: var(--font-mono); font-size: var(--badge-size); background: rgba(255, 255, 255, 0.08); padding: 3px 7px; border-radius: 4px; font-weight: 600; }
.segment-btn.active .segment-btn-count { background: rgba(245, 166, 35, 0.2); color: #F5A623; }
.segment-btn-casino { position: relative; }
.segment-btn-casino::before {
  content: 'LIVE'; position: absolute; top: -8px; right: 10px;
  font-family: var(--font-mono); font-size: var(--badge-size); font-weight: 800;
  padding: 2px 6px; border-radius: 4px;
  background: #3B82F6; color: var(--color-heading); letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.5);
  animation: livePulse 2s ease-in-out infinite;
}
.segment-btn-casino.active { background: rgba(59, 130, 246, 0.12); box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.35), 0 0 24px rgba(59, 130, 246, 0.18); }
.segment-btn-casino.active i { color: #7FA8FF; }
@media (min-width: 768px) {
  .segment-toggle { padding: 32px 40px 0; }
  .segment-toggle-inner { justify-content: center; }
}

/* ══════════ OPERATOR GRID ══════════ */
.op-grid { max-width: 1200px; margin: 0 auto; padding: 24px 16px var(--space-sm); display: grid; grid-template-columns: 1fr; gap: 16px; }
.op-card {
  display: flex; flex-direction: column;
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.7) 0%, rgba(15, 27, 48, 0.7) 100%);
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px); position: relative;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}
.op-card:hover { border-color: rgba(245, 166, 35, 0.25); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(245, 166, 35, 0.08); }
.op-card[hidden] { display: none; }
.op-card.op-collapsed { display: none; }
.op-grid.is-expanded .op-card.op-collapsed { display: flex; animation: opFadeIn 0.35s ease both; }
@keyframes opFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.op-card-live-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
  background: linear-gradient(90deg, #3B82F6 0%, #F5A623 100%);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}
.op-card-thumb { position: relative; overflow: hidden; background: #152238; flex: 0 0 auto; }
.op-card-thumb-logo { width: 100%; height: 150px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; padding: 24px 28px; background: #ffffff; }
.op-card-thumb-logo img { max-width: 78%; max-height: 104px; width: auto; height: auto; object-fit: contain; object-position: center; margin: auto; }
.op-card-thumb-monogram { font-family: var(--font-display); font-weight: 900; font-size: var(--h2-size); color: #0B1221; }
.op-card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; z-index: 2; max-width: calc(100% - 76px); }
.op-badge { display: inline-flex; align-items: center; gap: 4px; max-width: 100%; padding: 3px 8px; border-radius: 5px; font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; backdrop-filter: blur(8px); }
.op-badge-ggl { background: rgba(29, 184, 123, 0.18); color: #34D399; border: 1px solid rgba(29, 184, 123, 0.35); }
.op-badge-live { background: rgba(59, 130, 246, 0.12); color: #9DBBF5; border: 1px solid rgba(59, 130, 246, 0.24); }
.op-badge-live::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #3B82F6; box-shadow: 0 0 5px rgba(59, 130, 246, 0.45); animation: livePulse 1.6s ease-in-out infinite; }
.op-badge-lux { background: rgba(245, 166, 35, 0.18); color: #F5A623; border: 1px solid rgba(245, 166, 35, 0.35); }
.op-card-rank { position: absolute; top: 12px; right: 12px; z-index: 2; font-family: var(--font-display); font-weight: 800; font-size: 13px; line-height: 1; color: rgba(245, 166, 35, 0.85); background: rgba(11, 18, 33, 0.55); padding: 3px 7px; border-radius: 6px; border: 1px solid rgba(245, 166, 35, 0.2); }
.op-card-rank-rating { font-size: var(--label-size); font-weight: 900; color: #F5A623; background: rgba(11, 18, 33, 0.82); padding: 4px 9px; border-color: rgba(245, 166, 35, 0.4); }
.op-card-info { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.op-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.op-card-name { font-family: var(--font-display); font-size: var(--h5-size); font-weight: 800; color: var(--color-heading); line-height: 1.1; margin-bottom: 7px; }
.op-card:hover .op-card-name { color: #F5A623; }
.op-card-meta { font-size: var(--badge-size); color: rgba(240, 244, 248, 0.6); display: flex; align-items: center; gap: 5px; font-weight: 600; }
.op-card-meta i { color: rgba(245, 166, 35, 0.5); font-size: var(--badge-size); }
.op-card-meta-bonus { display: inline-flex; width: fit-content; color: #34D399; font-weight: 800; font-size: var(--label-size); background: rgba(52, 211, 153, 0.1); padding: 5px 11px; border-radius: 8px; margin-top: 3px; }
.op-card-meta-bonus i { color: #34D399; }
.op-card-rating { display: flex; align-items: center; gap: 8px; }
.op-card-rating-num { font-family: var(--font-display); font-weight: 900; font-size: var(--h5-size); color: #F5A623; line-height: 1; }
.op-card-rating-stars { display: flex; gap: 1px; color: #F5A623; font-size: var(--badge-size); }
.op-card-rating-pct { gap: 1px; align-items: baseline; }
.op-card-rating-sign { font-family: var(--font-display); font-weight: 900; font-size: var(--label-size); color: #F5A623; line-height: 1; }
.op-card-checked { font-size: var(--badge-size); color: rgba(240, 244, 248, 0.6); margin-top: 3px; }
.op-card-checked i { color: #1DB87B; margin-right: 3px; }
.op-card-desc-label { color: #F5A623; font-weight: 700; }
.op-card-rating-count { font-size: var(--badge-size); color: rgba(240, 244, 248, 0.6); text-transform: uppercase; letter-spacing: 0.4px; }
.op-card-desc { font-size: var(--badge-size); color: rgba(240, 244, 248, 0.6); line-height: 1.55; order: 1; margin-top: auto; }
.op-card-details { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.op-card-detail { display: flex; flex-direction: column; gap: 2px; font-size: var(--badge-size); }
.op-card-detail-label { color: rgba(240, 244, 248, 0.6); text-transform: uppercase; letter-spacing: 0.5px; font-size: var(--badge-size); font-weight: 700; }
.op-card-detail-value { color: rgba(240, 244, 248, 0.85); font-weight: 600; }
.op-card-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-top: 4px; }
.op-card-tags-icon { color: rgba(240, 244, 248, 0.6); font-size: var(--badge-size); margin-right: 1px; }
.op-card-tag { display: inline-flex; align-items: center; gap: 4px; font-size: var(--badge-size); font-weight: 700; padding: 3px 8px; border-radius: 5px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); color: rgba(240, 244, 248, 0.6); }
.op-card-tag-live { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.25); color: #7FA8FF; }
.op-card-tags-pop-wrap { position: relative; display: inline-flex; }
.op-card-tags-pop { display: none; position: absolute; bottom: calc(100% + 8px); left: 0; z-index: 10; flex-wrap: wrap; gap: 5px; width: max-content; max-width: 260px; padding: 8px; border-radius: 10px; background: #182842; border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5); }
.op-card-tags-pop.is-open { display: flex; }
.op-card-tags-more { display: inline-flex; align-items: center; font-family: inherit; font-size: var(--badge-size); font-weight: 700; padding: 3px 8px; border-radius: 5px; background: rgba(245, 166, 35, 0.12); border: 1px solid rgba(245, 166, 35, 0.3); color: #F5A623; cursor: pointer; }
.op-card-tags-providers .op-card-tag { background: rgba(245, 166, 35, 0.07); border-color: rgba(245, 166, 35, 0.18); color: rgba(245, 200, 130, 0.9); }
.op-card-tags-providers .op-card-tags-icon { color: rgba(245, 166, 35, 0.4); }
.op-card-actions { order: 2; margin-top: 0; display: flex; flex-direction: column; gap: 8px; }
.op-card-soon { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; padding: 10px 16px; border-radius: 12px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); color: rgba(240, 244, 248, 0.6); font-family: inherit; font-size: var(--badge-size); font-weight: 700; cursor: not-allowed; }
.op-card-soon i { opacity: 0.8; }
.op-card-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 12px; background: #1DB87B; color: var(--color-heading); font-size: var(--badge-size); font-weight: 800; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.op-card-cta:hover { background: #22E88F; transform: translateY(-1px); }
.op-card-casino .op-card-cta { background: #3B82F6; }
.op-card-casino .op-card-cta:hover { background: #5B8DEF; box-shadow: 0 8px 22px rgba(59, 130, 246, 0.35); }
@media (min-width: 768px) {
  .op-grid { grid-template-columns: repeat(2, 1fr); padding: 32px 40px var(--space-md); }
}
@media (min-width: 1024px) {
  .op-grid { grid-template-columns: repeat(3, 1fr); }
}
.op-grid-empty { display: block; }
.op-empty { color: rgba(240, 244, 248, 0.6); font-size: var(--label-size); padding: 24px 0; }

/* ══════════ SECTION HEADERS ══════════ */
.section-header { padding: 40px 16px 18px; max-width: 1200px; margin: 0 auto; }
.section-header-label { font-family: var(--font-mono); font-size: var(--badge-size); font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: #F5A623; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.section-header-casino .section-header-label { color: #7FA8FF; }
.section-header-label-line { flex: 1; height: 1px; background: rgba(245, 166, 35, 0.15); max-width: 60px; }
.section-header-title { font-family: var(--font-display); font-size: var(--h2-size); font-weight: 900; color: var(--color-heading); margin-bottom: 6px; letter-spacing: -0.3px; }
.section-header-desc { font-size: var(--label-size); color: rgba(240, 244, 248, 0.6); max-width: none; line-height: 1.6; }
@media (min-width: 768px) {
  .section-header { padding: 56px 40px 24px; }
  .section-header-title { font-size: var(--h4-size); }
}

/* ══════════ GROUP TOGGLE ══════════ */
.op-group-toggle {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; margin: 4px auto 12px;
  background: rgba(245, 166, 35, 0.05);
  border: 1px dashed rgba(245, 166, 35, 0.3); border-radius: 100px;
  color: #F5A623; font-size: var(--badge-size); font-weight: 700; cursor: pointer;
  font-family: inherit; max-width: 360px; width: fit-content;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.op-group-toggle-wrap { display: flex; justify-content: center; }
.op-group-toggle:hover { background: rgba(245, 166, 35, 0.12); border-color: rgba(245, 166, 35, 0.55); border-style: solid; transform: translateY(-1px); }
.op-group-toggle i { transition: transform 0.3s ease; font-size: var(--badge-size); }
.op-group-toggle.is-open i { transform: rotate(180deg); }
.op-group-toggle-count { background: rgba(245, 166, 35, 0.2); color: #F5A623; font-weight: 800; padding: 2px 8px; border-radius: 100px; font-size: var(--badge-size); }
.op-group-toggle-casino { border-color: rgba(59, 130, 246, 0.3); color: #7FA8FF; background: rgba(59, 130, 246, 0.05); }
.op-group-toggle-casino:hover { background: rgba(59, 130, 246, 0.12); border-color: rgba(59, 130, 246, 0.55); }
.op-group-toggle-casino .op-group-toggle-count { background: rgba(59, 130, 246, 0.22); color: #7FA8FF; }

/* ══════════ INFO BOX ══════════ */
.info-box { padding: var(--space-md) 16px var(--space-md); max-width: 1200px; margin: 0 auto; }
.info-box-inner { background: linear-gradient(135deg, rgba(245, 166, 35, 0.06) 0%, rgba(21, 34, 56, 0.5) 100%); border: 1px solid rgba(245, 166, 35, 0.18); border-radius: 18px; padding: 28px 24px; }
.info-box-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.info-box-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(245, 166, 35, 0.12); color: #F5A623; display: flex; align-items: center; justify-content: center; font-size: var(--btn-size); flex-shrink: 0; }
.info-box-heading { font-family: var(--font-display); font-size: var(--h5-size); font-weight: 800; color: var(--color-heading); margin: 0; }
.info-box-text { font-size: var(--label-size); color: rgba(240, 244, 248, 0.55); line-height: 1.7; }
.info-box-text strong { color: var(--color-heading); }
.info-box-text a { color: #F5A623; text-decoration: underline; text-decoration-color: rgba(245, 166, 35, 0.3); text-underline-offset: 3px; }
@media (min-width: 768px) {
  .info-box { padding: var(--space-md) 40px var(--space-lg); }
  .info-box-inner { padding: 40px 48px; }
}

/* ══════════ FAQ BOX ══════════ */
.faq-box { padding: var(--space-sm) 16px; max-width: 1200px; margin: 0 auto; }
.faq-box-heading { font-family: var(--font-display); font-size: var(--h2-size); font-weight: 900; color: var(--color-heading); margin-bottom: 8px; text-align: center; letter-spacing: -0.3px; }
.faq-box-sub { font-size: var(--label-size); color: rgba(240, 244, 248, 0.6); text-align: center; margin-bottom: 32px; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding: 20px 4px; cursor: pointer; }
.faq-item:last-child { border-bottom: none; }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-size: var(--body-size); font-weight: 800; color: var(--color-heading); line-height: 1.3; }
.faq-question i { color: #F5A623; font-size: var(--label-size); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.is-open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; font-size: var(--label-size); color: rgba(240, 244, 248, 0.62); line-height: 1.7; }
.faq-item.is-open .faq-answer { max-height: 600px; padding-top: 14px; }
.faq-answer strong { color: var(--color-heading); }
@media (min-width: 768px) {
  .faq-box { padding: 72px 40px; }
  .faq-box-heading { font-size: var(--h3-size); }
  .faq-question { font-size: var(--h6-size); }
}

/* ── Editierbarer Intro-Text (Page-Content) ── */
.oco-intro { max-width: 1200px; margin: 24px auto 0; padding: 0 16px; }
.oco-intro p { font-size: var(--label-size); line-height: 1.75; color: rgba(240, 244, 248, 0.6); margin: 0 0 12px; }
.oco-intro p:last-child { margin-bottom: 0; }
.oco-intro strong { color: rgba(240, 244, 248, 0.85); }
.oco-intro a { color: #F5A623; text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 768px) {
  .oco-intro { padding: 0 40px; margin-top: 32px; }
}

/* ── E-E-A-T Autor-Byline ── */
.oco-author { max-width: 1200px; margin: 18px auto 0; padding: 14px 16px 0; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.oco-author-photo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(245, 166, 35, 0.45); flex-shrink: 0; background: #152238; }
.oco-author-text { display: flex; flex-direction: column; line-height: 1.25; }
.oco-author-name { font-family: var(--font-display); font-weight: 800; color: var(--color-heading); font-size: var(--label-size); }
.oco-author-role { font-size: var(--badge-size); color: rgba(240, 244, 248, 0.6); }
.oco-author-updated { margin-left: auto; font-family: var(--font-mono); font-size: var(--badge-size); color: rgba(240, 244, 248, 0.6); display: inline-flex; align-items: center; gap: 6px; }
.oco-author-updated i { color: rgba(245, 166, 35, 0.6); }
@media (min-width: 768px) {
  .oco-author { padding: 16px 40px 0; }
}
@media (max-width: 599px) {
  .oco-author-updated { margin-left: 0; width: 100%; padding-left: 56px; }
}

/* ── Segment-Sektionen (per Tab umschaltbar) ── */
.oco-segment[hidden] { display: none; }
