/* ============================================================
   WUNDERINO-OFFIZIELL.DE – Design System
   Brand: Wunderino Casino | Color: #1CBEFF (Wunderino Blue)
   Fonts loaded asynchronously via HTML <link> for performance
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  color-scheme: dark;
  --wu:          #1CBEFF;
  --wu-dark:     #0093CC;
  --wu-light:    #5FD5FF;
  --wu-glow:     rgba(28, 190, 255, 0.28);
  --teal:        #00D4AA;
  --teal-dark:   #009E7F;
  --gold:        #FFD24C;
  --gold-dark:   #E5B800;
  --bg:          #060C18;
  --bg2:         #08101F;
  --bg-card:     #0C1829;
  --bg-card2:    #101E32;
  --bg-glass:    rgba(12, 24, 41, 0.72);
  --border:      rgba(28, 190, 255, 0.13);
  --border-h:    rgba(28, 190, 255, 0.38);
  --white:       #FFFFFF;
  --text:        #E4EEF8;
  --text-body:   #A8BBCF;
  --text-muted:  #6A7F95;
  --text-dim:    #3D5065;
  --green:       #22E06B;
  --red:         #FF4B5A;
  --radius:      10px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --radius-pill: 999px;
  --shadow:      0 8px 40px rgba(0,0,0,0.5);
  --shadow-wu:   0 8px 36px rgba(28,190,255,0.2);
  --trans:       all 0.25s cubic-bezier(.4,0,.2,1);
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --font-display:'Outfit', 'Inter', sans-serif;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--wu); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--wu-light); }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── SKIP LINK ──────────────────────────────────────────── */
.skip-link {
  position: fixed; top: -999px; left: 1rem; z-index: 9999;
  background: var(--wu); color: #000; font-weight: 700;
  padding: 0.5rem 1rem; border-radius: var(--radius);
  font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

/* ── NOSCRIPT ───────────────────────────────────────────── */
.noscript-bar {
  background: var(--gold); color: #000;
  text-align: center; padding: 0.5rem;
  font-size: 0.82rem; font-weight: 600;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 1.25rem; }

/* ── MOBILE TRACKER BAR ─────────────────────────────────── */
.tracker-bar {
  position: relative;
  background: linear-gradient(90deg, var(--wu-dark) 0%, var(--wu) 60%, var(--wu-light) 100%);
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: none;
  z-index: 100;
}
.tracker-bar a { color: #fff; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.tracker-bar .pulse { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.4s infinite; flex-shrink: 0; }
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(6,12,24,0.92);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; gap: 1rem;
  height: 68px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 0.15rem;
  margin-left: 1.5rem; flex: 1;
}
.nav-links a {
  color: var(--text-body); font-size: 0.85rem; font-weight: 600;
  padding: 0.45rem 0.75rem; border-radius: var(--radius);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--wu); background: rgba(28,190,255,0.08); }
.nav-actions { display: flex; align-items: center; gap: 0.6rem; margin-left: auto; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 0.5rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--wu); border-radius: 2px; transition: var(--trans);
}

/* ── MOBILE NAV ─────────────────────────────────────────── */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: min(320px,100vw);
  height: 100dvh; z-index: 800;
  background: var(--bg2);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 48px rgba(0,0,0,0.6);
  display: flex; flex-direction: column; gap: 0;
  padding: 1rem 0;
  transition: right 0.3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem 1rem; border-bottom: 1px solid var(--border); margin-bottom: 0.75rem;
}
.mobile-nav-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav a {
  display: block; padding: 0.85rem 1.5rem; color: var(--text-body);
  font-weight: 600; font-size: 0.92rem; border-radius: var(--radius);
  margin: 0 0.5rem;
}
.mobile-nav a:hover { color: var(--wu); background: rgba(28,190,255,0.07); }
.mobile-nav-cta {
  margin: 1rem 1.25rem 0 !important;
  background: linear-gradient(135deg, var(--wu-dark), var(--wu)) !important;
  color: #fff !important; text-align: center;
  border-radius: var(--radius-lg) !important; font-size: 0.9rem !important;
  padding: 0.95rem 1.5rem !important;
}
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 799;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(3px);
}
.nav-overlay.show { display: block; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 700; border-radius: var(--radius-lg); transition: var(--trans);
  white-space: nowrap; font-size: 0.9rem; cursor: pointer;
  padding: 0.65rem 1.4rem;
}
.btn:focus-visible { outline: 2px solid var(--wu); outline-offset: 3px; }
.btn-primary {
  background: linear-gradient(135deg, var(--wu-dark) 0%, var(--wu) 55%, var(--wu-light) 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(28,190,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(28,190,255,0.5);
  color: #fff;
}
.btn-outline {
  border: 1.5px solid var(--border-h); color: var(--wu);
  background: rgba(28,190,255,0.06);
}
.btn-outline:hover {
  background: rgba(28,190,255,0.14); color: var(--wu-light);
  border-color: var(--wu);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000; font-weight: 800; box-shadow: 0 4px 20px rgba(255,210,76,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,210,76,0.45); color: #000; }
.btn-lg  { padding: 0.9rem 2rem; font-size: 1rem; border-radius: var(--radius-xl); }
.btn-sm  { padding: 0.4rem 0.9rem; font-size: 0.78rem; border-radius: 8px; }
.btn-xl  { padding: 1.1rem 2.5rem; font-size: 1.1rem; border-radius: var(--radius-xl); }

/* ── SCORE BADGE ────────────────────────────────────────── */
.score-badge {
  display: inline-flex; flex-direction: column; align-items: center;
  background: linear-gradient(135deg, rgba(28,190,255,0.15), rgba(0,212,170,0.1));
  border: 1.5px solid var(--border-h); border-radius: var(--radius-xl);
  padding: 1rem 1.5rem; gap: 0.15rem;
}
.score-badge .score-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--wu), var(--wu-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.score-badge .score-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.score-badge .score-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--trans);
}
.card:hover { border-color: var(--border-h); box-shadow: var(--shadow-wu); }
.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(28,190,255,0.18);
  border-radius: var(--radius-xl);
}

/* ── SECTION HEADINGS ───────────────────────────────────── */
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 0.6rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--wu); background: rgba(28,190,255,0.1); border: 1px solid rgba(28,190,255,0.2);
  padding: 0.3rem 0.8rem; border-radius: var(--radius-pill); margin-bottom: 0.85rem;
}

/* ── GRADIENT TEXT ──────────────────────────────────────── */
.grad-blue {
  background: linear-gradient(135deg, var(--wu), var(--wu-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(28,190,255,0.12) 0%, transparent 65%),
              radial-gradient(ellipse 50% 80% at 80% 20%, rgba(0,212,170,0.08) 0%, transparent 60%),
              var(--bg);
  padding: 5.5rem 0 4.5rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231CBEFF' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 40px 40px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow { margin-bottom: 1rem; }
.hero-content h1 {
  font-family: var(--font-display); font-size: clamp(2rem,4.5vw,3.4rem);
  font-weight: 900; line-height: 1.12; margin-bottom: 1.1rem;
}
.hero-desc { font-size: 1.05rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1.8rem; max-width: 500px; }
.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.8rem; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero-chip {
  font-size: 0.75rem; font-weight: 700; color: var(--text-muted);
  background: var(--bg-card2); border: 1px solid var(--border);
  padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
}
.hero-chip span { color: var(--wu); }
.hero-visual { display: flex; justify-content: center; align-items: center; }

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.stat-item { padding: 0.75rem 1rem; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--wu); line-height: 1; }
.stat-label { font-size: 0.73rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-top: 0.2rem; }

/* ── RATING BARS ────────────────────────────────────────── */
.rating-list { display: flex; flex-direction: column; gap: 1rem; }
.rating-row { display: flex; align-items: center; gap: 1rem; }
.rating-row .label { width: 160px; font-size: 0.87rem; font-weight: 600; color: var(--text-body); flex-shrink: 0; }
.rating-row .bar-wrap { flex: 1; height: 8px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.rating-row .bar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--wu-dark), var(--wu));
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.rating-row .val { width: 36px; text-align: right; font-size: 0.85rem; font-weight: 700; color: var(--wu); flex-shrink: 0; }

/* ── PROS CONS ──────────────────────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pros-cons-box { background: var(--bg-card); border-radius: var(--radius-lg); padding: 1.5rem; }
.pros-cons-box h3 { font-size: 0.9rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.pros-cons-box.pros h3 { color: var(--green); }
.pros-cons-box.cons h3 { color: var(--red); }
.pros-cons-box li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text-body); padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.pros-cons-box li:last-child { border-bottom: none; }
.pros-cons-box li::before { content: ''; font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }
.pros-cons-box.pros li::before { content: '✓'; color: var(--green); font-weight: 700; }
.pros-cons-box.cons li::before { content: '✕'; color: var(--red); font-weight: 700; }

/* ── TABLES ─────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; min-width: 520px; }
thead th {
  background: var(--bg-card2); color: var(--wu);
  font-size: 0.78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--border); transition: var(--trans); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(28,190,255,0.04); }
tbody td { padding: 0.9rem 1rem; font-size: 0.88rem; color: var(--text-body); }
tbody td strong { color: var(--white); }
td .tag {
  display: inline-block; padding: 0.2rem 0.6rem; border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 700;
}
.tag-green { background: rgba(34,224,107,0.12); color: var(--green); }
.tag-blue  { background: rgba(28,190,255,0.12); color: var(--wu); }
.tag-gold  { background: rgba(255,210,76,0.12); color: var(--gold); }
.tag-red   { background: rgba(255,75,90,0.12); color: var(--red); }

/* ── FAQ ACCORDION ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem; font-size: 0.95rem; font-weight: 700; color: var(--text);
  cursor: pointer; text-align: left; background: none;
  transition: var(--trans);
}
.faq-question:hover { color: var(--wu); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-card2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--trans); font-size: 0.8rem; color: var(--wu); }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--wu); color: #000; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-body); line-height: 1.7; }
.faq-answer.open { max-height: 400px; }

/* ── PAYMENT ICONS GRID ─────────────────────────────────── */
.payment-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.payment-icon {
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.5rem 1rem; display: flex; align-items: center; justify-content: center;
  transition: var(--trans); height: 44px;
}
.payment-icon:hover { border-color: var(--border-h); }
.payment-icon span { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); }

/* ── AUTHOR BOX ─────────────────────────────────────────── */
.author-box {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.author-photo { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--wu); }
.author-meta .name { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.15rem; }
.author-meta .role { font-size: 0.78rem; color: var(--wu); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 0.5rem; }
.author-meta .bio { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }
.author-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.author-badge {
  font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill); background: rgba(28,190,255,0.1);
  border: 1px solid rgba(28,190,255,0.2); color: var(--wu);
}

/* ── CSS BAR CHART ──────────────────────────────────────── */
.bar-chart { display: flex; flex-direction: column; gap: 0.85rem; }
.bar-chart-row { display: flex; align-items: center; gap: 0.75rem; }
.bar-chart-label { width: 150px; font-size: 0.82rem; color: var(--text-body); font-weight: 600; flex-shrink: 0; }
.bar-chart-track { flex: 1; height: 28px; background: var(--bg-card2); border-radius: 6px; overflow: hidden; position: relative; }
.bar-chart-fill {
  height: 100%; border-radius: 6px; display: flex; align-items: center; padding-left: 0.7rem;
  font-size: 0.75rem; font-weight: 700; color: #fff;
  background: linear-gradient(90deg, var(--wu-dark), var(--wu));
  transition: width 1.2s ease;
}
.bar-chart-val { width: 45px; text-align: right; font-size: 0.83rem; font-weight: 700; color: var(--wu); flex-shrink: 0; }

/* ── SVG DONUT ──────────────────────────────────────────── */
.donut-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.donut-wrap .donut-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ── STEP LIST ──────────────────────────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 0; counter-reset: steps; }
.step-item { display: flex; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--wu-dark), var(--wu));
  color: #fff; font-weight: 900; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.step-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.step-body p { font-size: 0.87rem; color: var(--text-body); line-height: 1.6; }

/* ── COMPARISON CARDS ───────────────────────────────────── */
.compare-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1rem; }
.compare-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem; text-align: center;
  transition: var(--trans);
}
.compare-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.compare-card.featured { border-color: var(--wu); background: linear-gradient(135deg, rgba(28,190,255,0.07), var(--bg-card)); }
.compare-card .name { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.5rem; }
.compare-card .score-big { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--wu); }

/* ── REVIEW STARS ───────────────────────────────────────── */
.stars { color: var(--gold); letter-spacing: 2px; }

/* ── FEATURE LIST ───────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.25rem; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--trans);
}
.feature-card:hover { border-color: var(--border-h); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(28,190,255,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.feature-body h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.feature-body p { font-size: 0.82rem; color: var(--text-body); }

/* ── SPARKLE DECORATION ─────────────────────────────────── */
.sparkle {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--wu); opacity: 0; animation: sparkle 3s infinite;
  pointer-events: none;
}
@keyframes sparkle {
  0%,100% { opacity: 0; transform: scale(0); }
  50%      { opacity: 0.6; transform: scale(1); }
}

/* ── BONUS CARD ─────────────────────────────────────────── */
.bonus-card {
  position: relative; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  transition: var(--trans);
}
.bonus-card:hover { border-color: var(--border-h); box-shadow: var(--shadow-wu); transform: translateY(-4px); }
.bonus-card.hero-card { border-color: var(--wu); background: linear-gradient(135deg, rgba(28,190,255,0.1), var(--bg-card)); }
.bonus-card .ribbon {
  position: absolute; top: 0; right: 0;
  background: linear-gradient(135deg, var(--wu-dark), var(--wu));
  color: #fff; font-size: 0.68rem; font-weight: 800;
  padding: 0.3rem 1rem; border-radius: 0 var(--radius-xl) 0 var(--radius);
  letter-spacing: .04em; text-transform: uppercase;
}
.bonus-amount {
  font-family: var(--font-display); font-size: 4rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--wu), var(--wu-light)); 
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── COOKIE BANNER ──────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--bg-card2); border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem; transform: translateY(100%);
  transition: transform 0.4s ease; box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 0.83rem; color: var(--text-body); min-width: 200px; }
.cookie-text a { color: var(--wu); }
.cookie-actions { display: flex; gap: 0.65rem; flex-shrink: 0; flex-wrap: wrap; }

/* ── FOCUS VISIBLE ──────────────────────────────────────── */
*:focus-visible { outline: 2px solid var(--wu); outline-offset: 3px; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .logo-wrap { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.87rem; color: var(--text-muted); }
.footer-col a:hover { color: var(--wu); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer-disclaimer {
  font-size: 0.78rem; color: var(--text-dim); line-height: 1.7;
  padding: 1rem; background: rgba(255,255,255,0.02); border-radius: var(--radius);
  border: 1px solid var(--border); margin-bottom: 1.5rem;
}
.footer-disclaimer a { color: var(--text-muted); }
.footer-badges { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.footer-badge {
  font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill); border: 1px solid var(--border);
  color: var(--text-dim); background: var(--bg-card);
}

/* ── 18+ INFO ────────────────────────────────────────────── */
.gambling-warning {
  background: rgba(255,75,90,0.07); border: 1px solid rgba(255,75,90,0.15);
  border-radius: var(--radius); padding: 0.75rem 1rem; font-size: 0.78rem;
  color: var(--text-muted); display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1rem;
}
.gambling-warning .age-badge {
  background: var(--red); color: #fff; font-weight: 900; font-size: 0.72rem;
  padding: 0.1rem 0.4rem; border-radius: 4px; flex-shrink: 0;
}

/* ── SECTIONS ────────────────────────────────────────────── */
.alt-bg { background: var(--bg2); }
.blue-bg { background: linear-gradient(135deg, rgba(28,190,255,0.08), rgba(0,212,170,0.05)); }
/* Performance: allow browser to skip rendering off-screen sections */
.section, .section--sm, .section--lg { contain: layout style; }

/* ── PROGRESS CIRCLES ────────────────────────────────────── */
.score-circles { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.score-circle { text-align: center; }
.score-circle svg { overflow: visible; }
.score-circle .circle-val { font-family: var(--font-display); font-size: 0.95rem; font-weight: 900; fill: var(--white); }
.score-circle .circle-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.4rem; font-weight: 600; }

/* ── AOS (Animate on scroll) ────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-right"].aos-animate { transform: none; }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate { transform: none; }

/* ── GAME CARD ──────────────────────────────────────────── */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 1rem; }
.game-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--trans);
}
.game-card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: var(--shadow-wu); }
.game-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.game-card-body { padding: 0.75rem; }
.game-card-body .game-name { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card-body .game-meta { font-size: 0.72rem; color: var(--text-muted); }

/* ── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* ── PRINT ──────────────────────────────────────────────── */
@media print {
  .tracker-bar, .site-header, .mobile-nav, .cookie-banner, .btn-primary, .btn-gold { display: none !important; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: .75em; color: #555; }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════ */

/* ── 1024px ─────────────────────────────────────────────── */
@media (max-width:1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(4, 1fr); }
  .hero-inner  { gap: 2rem; }
}

/* ── 768px ──────────────────────────────────────────────── */
@media (max-width:768px) {
  .tracker-bar { display: block; }
  .nav-links   { display: none !important; }
  .hamburger   { display: flex; }
  .nav-actions .btn-outline { display: none; }

  .hero { padding: 3.5rem 0 3rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2),
  .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }

  .section { padding: 3.5rem 0; }
  .section--lg { padding: 4rem 0; }

  .rating-row .label { width: 110px; }
  .table-wrap { margin-left: -1.25rem; margin-right: -1.25rem; border-radius: 0; border-left: none; border-right: none; }

  .author-box { flex-direction: column; }
  .bar-chart-label { width: 100px; }
}

/* ── 480px ──────────────────────────────────────────────── */
@media (max-width:480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:nth-child(3),
  .footer-col:nth-child(4) { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .pros-cons-box li { font-size: 0.83rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .score-circles { gap: 0.75rem; }
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .bonus-amount { font-size: 3rem; }
  table { min-width: 440px; }
  .bar-chart-label { width: 85px; font-size: 0.76rem; }
  .games-grid { grid-template-columns: repeat(2,1fr); }
  .method-cards { grid-template-columns: 1fr 1fr !important; }
  .app-features { grid-template-columns: 1fr !important; }
  .category-tabs { gap: 0.4rem; }
  .tab-btn { padding: 0.5rem 0.9rem; font-size: 0.78rem; }
  .two-col-grid { grid-template-columns: 1fr !important; }
}

/* ── EXTRA PAGE COMPONENTS ──────────────────────────────── */

/* Check list (security/bonus) */
.check-list { display: flex; flex-direction: column; gap: 0.65rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.9rem 1.1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--trans); }
.check-item:hover { border-color: var(--border-h); }
.check-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; margin-top: .05rem; }
.check-icon.ok { background: rgba(34,224,107,0.15); color: var(--green); }
.check-icon.warn { background: rgba(255,210,76,0.15); color: var(--gold); }
.check-icon.info { background: rgba(28,190,255,0.15); color: var(--wu); }
.check-body strong { display: block; font-size: 0.9rem; margin-bottom: 0.15rem; }
.check-body p { font-size: 0.82rem; color: var(--text-body); line-height: 1.5; }

/* Provider grid (spiele) */
.provider-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); gap: 0.75rem; }
.provider-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.85rem 1rem; display: flex; align-items: center; justify-content: center; gap: 0.6rem; transition: var(--trans); cursor: default; }
.provider-card:hover { border-color: var(--border-h); }
.provider-card span { font-size: 0.82rem; font-weight: 700; color: var(--text-body); white-space: nowrap; }

/* Category tabs (spiele) */
.category-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.tab-btn { padding: 0.55rem 1.25rem; border-radius: var(--radius-pill); font-size: 0.83rem; font-weight: 700; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-muted); transition: var(--trans); cursor: pointer; }
.tab-btn.active, .tab-btn:hover { background: rgba(28,190,255,0.1); border-color: var(--wu); color: var(--wu); }

/* Method cards (zahlungsmethoden) */
.method-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 1.25rem; }
.method-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; text-align: center; transition: var(--trans); }
.method-card:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: var(--shadow-wu); }
.method-card .m-icon { font-size: 2.5rem; margin-bottom: 0.65rem; }
.method-card .m-name { font-weight: 800; font-size: 0.95rem; margin-bottom: 0.75rem; }
.method-card .m-meta { font-size: 0.78rem; color: var(--text-muted); }
.method-card .m-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.55rem; border-radius: var(--radius-pill); margin-top: 0.5rem; }

/* App feature row (mobile-app) */
.app-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.app-feature-row { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--trans); }
.app-feature-row:hover { border-color: var(--border-h); }
.app-feat-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; background: rgba(28,190,255,0.12); }
.app-feat-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.app-feat-body p { font-size: 0.83rem; color: var(--text-body); line-height: 1.55; }

/* Score dashboard (erfahrungen) */
.score-dashboard { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center; }
.score-big-num { font-family: var(--font-display); font-size: 6rem; font-weight: 900; line-height: 1; color: var(--wu); }
.score-out-of { font-size: 1.1rem; color: var(--text-muted); font-weight: 600; }

/* License badge (sicherheit) */
.license-badge-box { background: linear-gradient(135deg, rgba(34,224,107,0.08), rgba(28,190,255,0.08)); border: 1.5px solid rgba(34,224,107,0.3); border-radius: var(--radius-xl); padding: 2rem; display: flex; gap: 1.5rem; align-items: center; }
.license-icon { font-size: 3rem; flex-shrink: 0; }
.license-meta h3 { font-size: 1.2rem; font-weight: 800; color: var(--green); margin-bottom: 0.35rem; }
.license-meta p { font-size: 0.88rem; color: var(--text-body); max-width: 500px; }
.license-meta .lic-id { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.5rem; }

/* two-col utility */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
@media (max-width:768px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 2rem; }
  .app-features { grid-template-columns: 1fr; }
  .method-cards { grid-template-columns: repeat(2,1fr); }
  .provider-grid { grid-template-columns: repeat(3,1fr); }
  .score-dashboard { grid-template-columns: 1fr; gap: 1.5rem; }
  .score-big-num { font-size: 4rem; }
  .license-badge-box { flex-direction: column; text-align: center; }
}

/* Review cards */
.review-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.25rem; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.review-card .rc-header { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1rem; }
.review-card .rc-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(28,190,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.review-card .rc-name { font-weight: 700; font-size: 0.9rem; }
.review-card .rc-date { font-size: 0.72rem; color: var(--text-muted); }
.review-card .rc-body { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }

/* Page hero (subpages) */
.page-hero { padding: 4.5rem 0 3.5rem; background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(28,190,255,0.1) 0%, transparent 65%), var(--bg); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231CBEFF' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat; background-size:40px 40px; pointer-events:none; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 900; margin-bottom: 0.8rem; }
.page-hero p { font-size: 1.02rem; color: var(--text-body); max-width: 600px; line-height: 1.7; }
.page-hero-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.25rem; }
.page-hero-stat { display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem; }
.page-hero-stat .ph-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--wu); line-height: 1; }
.page-hero-stat .ph-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing:.05em; }

/* Form styles (login/registrierung) */
.form-card { max-width: 460px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.82rem; font-weight: 700; color: var(--text-body); }
.form-control {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 0.8rem 1rem; color: var(--text); font-size: 0.92rem; font-family: var(--font);
  transition: var(--trans); width: 100%;
}
.form-control:focus { outline: none; border-color: var(--wu); box-shadow: 0 0 0 3px rgba(28,190,255,0.15); }
.form-control::placeholder { color: var(--text-dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.75rem; color: var(--text-muted); }
.form-divider { display: flex; align-items: center; gap: 1rem; margin: 1.25rem 0; }
.form-divider::before, .form-divider::after { content:''; flex: 1; height: 1px; background: var(--border); }
.form-divider span { font-size: 0.75rem; color: var(--text-dim); }

/* Legal pages */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; font-weight: 800; color: var(--white); margin: 2.5rem 0 0.75rem; }
.legal-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 1.75rem 0 0.6rem; }
.legal-content p, .legal-content li { font-size: 0.9rem; color: var(--text-body); line-height: 1.75; margin-bottom: 0.75rem; }
.legal-content ul { list-style: disc; padding-left: 1.4rem; }
.legal-content a { color: var(--wu); }

/* Horizontal scroll tabs on mobile */
@media (max-width:600px) {
  .category-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; }
  .category-tabs::-webkit-scrollbar { height: 3px; }
  .category-tabs::-webkit-scrollbar-track { background: transparent; }
  .category-tabs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
  .provider-grid { grid-template-columns: repeat(3,1fr); }
  .review-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-meta { gap: 0.75rem; }
}

/* Screen-reader only utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- DEEP MOBILE ADAPTATION FOR CARDS, DIAGRAMS & TABLES --- */
@media (max-width: 500px) {
  /* Tables */
  table { min-width: unset; width: 100%; }
  th, td { padding: 0.75rem 0.5rem; font-size: 0.85rem; }
  .table-wrap { margin-left: -1rem; margin-right: -1rem; display: block; overflow-x: auto; width: calc(100% + 2rem); }
  
  /* Diagrams/Charts */
  .bar-chart-row { display: flex; flex-direction: column; gap: 0.25rem; align-items: flex-start; margin-bottom: 1.5rem; }
  .bar-chart-label { width: 100%; font-size: 0.9rem; margin-bottom: 2px; }
  .bar-chart-track { width: 100%; height: 12px; }
  .bar-chart-val { align-self: flex-end; font-size: 0.85rem; position: relative; top: -5px; }
  .score-dashboard { grid-template-columns: 1fr !important; gap: 1.5rem !important; text-align: center; }
  .score-circle { margin: 0 auto; }
  
  /* Cards Grid */
  .games-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem; }
  .provider-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 0.5rem; }
  .method-cards { grid-template-columns: 1fr 1fr !important; gap: 0.75rem; }
  .app-features { grid-template-columns: 1fr !important; }
  .game-card .game-name { font-size: 0.85rem; padding: 0.75rem; }
  
  /* Layout utilities */
  .two-col-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  div[style*="grid-template-columns:1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 360px) {
  .games-grid { grid-template-columns: 1fr !important; }
}
