/* ============================================
   Gangsta Casino — gangtacasino.de
   Brand Colors: Navy #0B1929, Gold #C9A84C, White
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-darkest: #060E18;
  --bg-dark: #0B1929;
  --bg-card: #0F2137;
  --bg-card-alt: #132B46;
  --bg-elevated: #16334F;
  --gold: #C9A84C;
  --gold-light: #E2C56D;
  --gold-dark: #A8893A;
  --blue-accent: #1E5FA6;
  --blue-light: #3B82F6;
  --white: #FFFFFF;
  --text-primary: #E8ECF1;
  --text-secondary: #A4B3C6;
  --text-muted: #6B7D95;
  --border: #1A3352;
  --border-light: #234060;
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.25);
  --shadow-md: 0 4px 20px rgba(0,0,0,.35);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.45);
  --transition: .3s ease;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --header-h: 72px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
table { border-collapse: collapse; width: 100%; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darkest); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--white); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .6em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: .5em; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1em; color: var(--text-secondary); }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section--alt { background: var(--bg-dark); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: .95rem; transition: all var(--transition); text-transform: uppercase;
  letter-spacing: .5px; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-darkest); box-shadow: 0 4px 15px rgba(201,168,76,.3);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 6px 25px rgba(201,168,76,.45);
  color: var(--bg-darkest);
}
.btn-outline {
  border: 2px solid var(--gold); color: var(--gold); background: transparent;
}
.btn-outline:hover {
  background: var(--gold); color: var(--bg-darkest);
}
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: absolute; top: 0; left: 0; width: 100%; height: var(--header-h);
  background: rgba(11,25,41,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); z-index: 1000;
  transition: background var(--transition);
}
.header__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.header__logo { display: flex; align-items: center; gap: 10px; }
.header__logo img { height: 44px; width: auto; }
.header__logo-text {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem;
  color: var(--white); text-transform: uppercase; letter-spacing: 1px;
}
.header__logo-text span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: .88rem;
  font-weight: 500; color: var(--text-secondary); transition: all var(--transition);
}
.nav a:hover, .nav a.active { color: var(--gold); background: rgba(201,168,76,.08); }
.header__cta { display: flex; gap: 10px; }
.header__cta .btn { padding: 8px 20px; font-size: .85rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  z-index: 1001;
  background: #0B1929 !important;

  display: none; position: absolute; top: var(--header-h); left: 0; width: 100%;
  background: var(--bg-dark); border-bottom: 1px solid var(--border);
  padding: 20px; flex-direction: column; gap: 4px;
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  transform: translateY(-10px); opacity: 0; transition: all .25s ease;
}
.mobile-nav.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-nav a {
  display: block; padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: .95rem; color: var(--text-secondary);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); background: rgba(201,168,76,.08); }
.mobile-nav__cta { display: flex; gap: 10px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.mobile-nav__cta .btn { flex: 1; text-align: center; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative; padding: 120px 0 80px;
  background: linear-gradient(160deg, var(--bg-darkest) 0%, var(--bg-dark) 40%, #0E2440 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.hero__content { position: relative; z-index: 2; max-width: 640px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 50px; font-size: .8rem;
  background: rgba(201,168,76,.12); color: var(--gold); font-weight: 600;
  margin-bottom: 20px; border: 1px solid rgba(201,168,76,.2);
}
.hero__title { margin-bottom: 18px; }
.hero__title span { color: var(--gold); }
.hero__desc { font-size: 1.08rem; margin-bottom: 28px; max-width: 520px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 40px; margin-top: 40px; padding-top: 30px;
  border-top: 1px solid var(--border);
}
.hero__stat-value { font-size: 1.6rem; font-weight: 700; color: var(--gold); font-family: var(--font-heading); }
.hero__stat-label { font-size: .82rem; color: var(--text-muted); margin-top: 2px; }
/* Upgraded Hero Background */
.hero__image {
  position: absolute; right: 0; left: 0; top: 0; bottom: 0;
  width: 100%; height: 100%; z-index: 0; margin: 0; padding: 0;
  opacity: 0.15;
  object-fit: cover;
  object-position: center;
  display: block !important;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
  transition: all var(--transition);
}
.card:hover { border-color: var(--gold-dark); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(201,168,76,.1); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; font-size: 1.5rem;
}
.card__title { font-size: 1.1rem; margin-bottom: 8px; }
.card__desc { font-size: .92rem; color: var(--text-muted); }

/* Bonus card */
.bonus-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-alt));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; position: relative; overflow: hidden;
}
.bonus-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,.15), transparent 70%);
}
.bonus-card__tag {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  background: var(--gold); color: var(--bg-darkest); margin-bottom: 14px;
}
.bonus-card__amount { font-size: 2rem; font-weight: 800; color: var(--gold); font-family: var(--font-heading); }
.bonus-card__info { color: var(--text-muted); font-size: .9rem; margin: 10px 0 18px; }

/* Feature card — different style */
.feature-card {
  background: var(--bg-card); border-radius: var(--radius-md);
  padding: 24px 20px; text-align: center; border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--gold); }
.feature-card__num {
  font-size: 2rem; font-weight: 800; color: var(--gold);
  font-family: var(--font-heading);
}
.feature-card__label { font-size: .85rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================
   TABLES
   ============================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }

/* Style 1: Standard */
.table-standard { width: 100%; }
.table-standard th {
  background: var(--bg-elevated); color: var(--gold); font-weight: 600;
  text-align: left; padding: 14px 18px; font-size: .88rem;
  text-transform: uppercase; letter-spacing: .5px;
}
.table-standard td { padding: 14px 18px; border-top: 1px solid var(--border); font-size: .92rem; }
.table-standard tr:hover td { background: rgba(201,168,76,.04); }
.table-standard .highlight { color: var(--gold); font-weight: 600; }
.table-standard .badge {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  font-size: .75rem; font-weight: 600;
}
.badge--green { background: rgba(34,197,94,.15); color: var(--success); }
.badge--gold { background: rgba(201,168,76,.15); color: var(--gold); }
.badge--blue { background: rgba(59,130,246,.15); color: var(--blue-light); }
.badge--red { background: rgba(239,68,68,.15); color: var(--error); }

/* Style 2: Striped */
.table-striped th {
  background: var(--gold); color: var(--bg-darkest); font-weight: 700;
  text-align: left; padding: 14px 18px; font-size: .85rem; text-transform: uppercase;
}
.table-striped td { padding: 12px 18px; font-size: .9rem; }
.table-striped tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.table-striped tr:nth-child(odd) td { background: var(--bg-card); }

/* Style 3: Compact */
.table-compact th {
  background: var(--bg-card-alt); color: var(--text-primary); font-weight: 600;
  text-align: left; padding: 10px 14px; font-size: .82rem; text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
}
.table-compact td { padding: 10px 14px; font-size: .88rem; border-bottom: 1px solid var(--border); }

/* Style 4: Bordered */
.table-bordered th {
  background: var(--bg-elevated); color: var(--gold); font-weight: 600;
  text-align: center; padding: 12px 16px; font-size: .85rem;
  border: 1px solid var(--border);
}
.table-bordered td { padding: 12px 16px; text-align: center; border: 1px solid var(--border); font-size: .9rem; }

/* ============================================
   CHARTS (CSS-only)
   ============================================ */
/* Donut Chart */
.donut-chart {
  width: 200px; height: 200px; border-radius: 50%; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.donut-chart__center {
  position: absolute; width: 120px; height: 120px; border-radius: 50%;
  background: var(--bg-card); display: flex; align-items: center;
  justify-content: center; flex-direction: column;
}
.donut-chart__value { font-size: 1.8rem; font-weight: 800; color: var(--gold); font-family: var(--font-heading); }
.donut-chart__label { font-size: .72rem; color: var(--text-muted); }

/* Bar Chart */
.bar-chart { display: flex; align-items: flex-end; gap: 12px; height: 220px; padding: 20px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.bar-chart__col { flex: 1; min-width: 36px; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.bar-chart__bar {
  width: 100%; max-width: 48px; border-radius: 6px 6px 0 0;
  transition: height .8s ease; position: relative;
}
.bar-chart__bar--gold { background: linear-gradient(180deg, var(--gold-light), var(--gold-dark)); }
.bar-chart__bar--blue { background: linear-gradient(180deg, var(--blue-light), var(--blue-accent)); }
.bar-chart__bar--green { background: linear-gradient(180deg, #4ade80, #16a34a); }
.bar-chart__label { font-size: .72rem; color: var(--text-muted); text-align: center; }
.bar-chart__value { font-size: .78rem; font-weight: 600; color: var(--text-primary); }

/* Horizontal Bar Chart */
.hbar-chart { display: flex; flex-direction: column; gap: 16px; }
.hbar-chart__item { display: flex; align-items: center; gap: 14px; }
.hbar-chart__label { width: 120px; font-size: .85rem; color: var(--text-secondary); flex-shrink: 0; }
.hbar-chart__track { flex: 1; height: 28px; background: var(--bg-elevated); border-radius: 14px; overflow: hidden; position: relative; }
.hbar-chart__fill {
  height: 100%; border-radius: 14px; transition: width 1s ease;
  display: flex; align-items: center; padding-left: 12px; font-size: .78rem;
  font-weight: 600; color: var(--bg-darkest);
}
.hbar-chart__fill--gold { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }
.hbar-chart__fill--blue { background: linear-gradient(90deg, var(--blue-accent), var(--blue-light)); }
.hbar-chart__fill--green { background: linear-gradient(90deg, #16a34a, #4ade80); }

/* Progress Circle */
.progress-circle {
  width: 100px; height: 100px; border-radius: 50%; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.progress-circle__inner {
  width: 76px; height: 76px; border-radius: 50%; background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.progress-circle__value { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.progress-circle__label { font-size: .6rem; color: var(--text-muted); }

/* Gauge */
.gauge { width: 180px; height: 100px; position: relative; overflow: hidden; }
.gauge__bg {
  width: 180px; height: 180px; border-radius: 50%; position: absolute; top: 0;
  border: 16px solid var(--bg-elevated); border-bottom-color: transparent;
  border-left-color: transparent; transform: rotate(-45deg);
}
.gauge__fill {
  width: 180px; height: 180px; border-radius: 50%; position: absolute; top: 0;
  border: 16px solid transparent; border-top-color: var(--gold);
  border-right-color: var(--gold); transform: rotate(-45deg);
  transition: transform 1s ease;
}
.gauge__value {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  font-size: 1.4rem; font-weight: 800; color: var(--gold); font-family: var(--font-heading);
}

/* Star Rating */
.stars { display: flex; gap: 3px; }
.stars .star { font-size: 1.1rem; color: var(--border); }
.stars .star.filled { color: var(--gold); }
.stars .star.half { background: linear-gradient(90deg, var(--gold) 50%, var(--border) 50%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Rating Bar */
.rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rating-bar__label { font-size: .85rem; color: var(--text-secondary); width: 90px; }
.rating-bar__track { flex: 1; height: 10px; background: var(--bg-elevated); border-radius: 5px; overflow: hidden; }
.rating-bar__fill { height: 100%; border-radius: 5px; background: var(--gold); transition: width .8s ease; }
.rating-bar__value { font-size: .85rem; font-weight: 600; color: var(--gold); width: 40px; text-align: right; }

/* Chart Legend */
.chart-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.chart-legend__item { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--text-secondary); }
.chart-legend__dot { width: 10px; height: 10px; border-radius: 50%; }

/* ============================================
   AUTHOR SECTION
   ============================================ */
.author-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; gap: 24px; align-items: flex-start;
}
.author-box__photo {
  width: 80px; height: 80px; border-radius: 50%;
  border: 3px solid var(--gold); overflow: hidden; flex-shrink: 0;
}
.author-box__photo img { width: 100%; height: 100%; object-fit: cover; }
.author-box__info { flex: 1; }
.author-box__name { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.author-box__role { font-size: .82rem; color: var(--gold); margin-bottom: 10px; }
.author-box__bio { font-size: .9rem; color: var(--text-muted); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-item__q {
  padding: 16px 20px; background: var(--bg-card); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: .95rem; color: var(--text-primary);
  transition: background var(--transition);
}
.faq-item__q:hover { background: var(--bg-card-alt); }
.faq-item__q::after { content: '+'; font-size: 1.3rem; color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-item__q::after { content: '−'; }
.faq-item__a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px; font-size: .9rem; color: var(--text-muted);
}
.faq-item.open .faq-item__a { max-height: 300px; padding: 0 20px 18px; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb { padding: 100px 0 0; }
.breadcrumb__list { display: flex; align-items: center; gap: 8px; font-size: .85rem; }
.breadcrumb__list li { color: var(--text-muted); }
.breadcrumb__list li a { color: var(--text-secondary); }
.breadcrumb__list li a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--text-muted); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.section-header__tag {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  background: rgba(201,168,76,.1); color: var(--gold); margin-bottom: 12px;
  border: 1px solid rgba(201,168,76,.15);
}
.section-header h2 { margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: .95rem; }

/* ============================================
   PROS / CONS
   ============================================ */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-list, .cons-list { padding: 24px; border-radius: var(--radius-md); }
.pros-list { background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.15); }
.cons-list { background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.15); }
.pros-list h4 { color: var(--success); margin-bottom: 14px; }
.cons-list h4 { color: var(--error); margin-bottom: 14px; }
.pros-list li, .cons-list li { padding: 6px 0; font-size: .9rem; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 8px; }
.pros-list li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.cons-list li::before { content: '✗'; color: var(--error); font-weight: 700; flex-shrink: 0; }

/* ============================================
   INFO BOX
   ============================================ */
.info-box {
  background: rgba(201,168,76,.06); border: 1px solid rgba(201,168,76,.2);
  border-left: 4px solid var(--gold); border-radius: var(--radius-sm);
  padding: 18px 22px; margin: 20px 0;
}
.info-box__title { font-size: .9rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.info-box p { font-size: .88rem; margin-bottom: 0; }

/* ============================================
   STEPS
   ============================================ */
.steps { display: flex; flex-direction: column; gap: 24px; counter-reset: step; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  counter-increment: step;
}
.step__num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-darkest); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
}
.step__content h4 { margin-bottom: 4px; }
.step__content p { font-size: .9rem; margin-bottom: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
}
.testimonial__text { font-style: italic; color: var(--text-secondary); font-size: .92rem; margin-bottom: 14px; }
.testimonial__author { display: flex; align-items: center; gap: 10px; }
.testimonial__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gold); font-size: .85rem; }
.testimonial__name { font-size: .85rem; font-weight: 600; color: var(--text-primary); }
.testimonial__date { font-size: .75rem; color: var(--text-muted); }

/* ============================================
   GAME / PAYMENT CARDS
   ============================================ */
.game-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all var(--transition);
}
.game-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.game-card__img { width: 100%; height: 160px; object-fit: cover; background: var(--bg-elevated); }
.game-card__body { padding: 16px; }
.game-card__title { font-size: .95rem; margin-bottom: 4px; }
.game-card__meta { font-size: .8rem; color: var(--text-muted); }

.payment-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px;
  display: flex; align-items: center; gap: 16px;
  transition: all var(--transition);
}
.payment-card:hover { border-color: var(--gold-dark); }
.payment-card__icon { width: 50px; height: 50px; border-radius: var(--radius-sm); background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.4rem; }
.payment-card__name { font-weight: 600; color: var(--white); font-size: .95rem; }
.payment-card__detail { font-size: .82rem; color: var(--text-muted); }

/* ============================================
   TOC (Table of Contents)
   ============================================ */
.toc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px; margin-bottom: 32px;
}
.toc__title { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.toc ol { counter-reset: toc; padding-left: 0; }
.toc li { counter-increment: toc; padding: 6px 0; }
.toc li a { color: var(--text-secondary); font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.toc li a::before { content: counter(toc) '.'; color: var(--gold); font-weight: 600; min-width: 20px; }
.toc li a:hover { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark); border-top: 1px solid var(--border);
  padding: 50px 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}
.footer__brand p { font-size: .88rem; color: var(--text-muted); margin-top: 12px; max-width: 300px; }
.footer__title { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { color: var(--text-muted); font-size: .88rem; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--text-muted); flex-wrap: wrap; gap: 10px;
}
.footer__disclaimer {
  background: var(--bg-darkest); border-radius: var(--radius-md);
  padding: 18px 22px; margin-bottom: 30px;
  border: 1px solid var(--border);
}
.footer__disclaimer p { font-size: .78rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.6; }
.footer__age { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--error); color: var(--error); font-weight: 800; font-size: .85rem; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 18px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; z-index: 9999;
  transform: translateY(100%); transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: .85rem; color: var(--text-muted); margin: 0; }
.cookie-banner p a { color: var(--gold); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================
   PAGE-SPECIFIC: image placeholders (SVG-based)
   ============================================ */
.img-placeholder {
  width: 100%; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.img-placeholder svg { width: 100%; height: 100%; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---- Tablet landscape ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  /* Upgraded Hero Background */
.hero__image {
  position: absolute; right: 0; left: 0; top: 0; bottom: 0;
  width: 100%; height: 100%; z-index: 0; margin: 0; padding: 0;
  opacity: 0.15;
  object-fit: cover;
  object-position: center;
  display: block !important;
}

  /* Tables: allow horizontal scroll, prevent text wrapping issues */
  .table-wrap { -webkit-overflow-scrolling: touch; }
  .table-wrap table { min-width: 580px; }
}

/* ---- Tablet portrait / large phones ---- */
@media (max-width: 768px) {
  /* Navigation */
  .nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav {
  z-index: 1001;
  background: #0B1929 !important;
 display: none; }
  .mobile-nav.open { display: flex; }

  /* Grids → single column */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }

  /* Hero */
  .hero { padding: 100px 0 50px; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .hero__stat { min-width: 0; }

  /* Sections */
  .section { padding: 40px 0; }

  /* Author box */
  .author-box { flex-direction: column; align-items: center; text-align: center; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* ---- CHARTS: Adaptive sizing ---- */

  /* Bar chart: reduce height, narrower bars */
  .bar-chart { height: 170px; gap: 6px; padding: 10px 0; }
  .bar-chart__col { min-width: 0; }
  .bar-chart__bar { max-width: 28px; }
  .bar-chart__label { font-size: .65rem; word-break: break-word; hyphens: auto; }
  .bar-chart__value { font-size: .7rem; }

  /* Horizontal bar chart: stack label above bar on small screens */
  .hbar-chart { gap: 12px; }
  .hbar-chart__item { flex-wrap: wrap; gap: 4px 14px; }
  .hbar-chart__label { width: 100%; font-size: .8rem; font-weight: 600; }
  .hbar-chart__track { width: 100%; min-width: 0; }
  .hbar-chart__fill { font-size: .72rem; padding-left: 10px; }

  /* Donut chart: scale down */
  .donut-chart { width: 150px; height: 150px; margin: 0 auto; }
  .donut-chart__center { width: 90px; height: 90px; }
  .donut-chart__value { font-size: 1.5rem; }

  /* Progress circles: smaller on phones */
  .progress-circle { width: 80px; height: 80px; }
  .progress-circle__inner { width: 60px; height: 60px; }
  .progress-circle__value { font-size: .95rem; }
  .progress-circle__label { font-size: .55rem; }

  /* Gauge: smaller */
  .gauge { width: 140px; height: 78px; }
  .gauge__bg, .gauge__fill { width: 140px; height: 140px; border-width: 12px; }
  .gauge__value { font-size: 1.1rem; }

  /* Rating bars: tighter */
  .rating-bar { gap: 8px; }
  .rating-bar__label { width: 75px; font-size: .8rem; }
  .rating-bar__value { width: 35px; font-size: .8rem; }

  /* Chart legend: wrap nicely */
  .chart-legend { gap: 10px; }
  .chart-legend__item { font-size: .76rem; }

  /* ---- TABLES: ensure scrollability ---- */
  .table-wrap { margin-left: -20px; margin-right: -20px; border-radius: 0; border-left: none; border-right: none; }
  .table-wrap table { min-width: 520px; }
  .table-standard th, .table-standard td,
  .table-striped th, .table-striped td,
  .table-compact th, .table-compact td,
  .table-bordered th, .table-bordered td { padding: 10px 12px; font-size: .82rem; white-space: nowrap; }

  /* Steps: tighter */
  .steps { gap: 18px; }
  .step__num { width: 38px; height: 38px; font-size: .95rem; }
  .step { gap: 14px; }

  /* Bonus cards: smaller text */
  .bonus-card { padding: 24px 20px; }
  .bonus-card__amount { font-size: 1.7rem; }

  /* Feature cards in grid-4: 2 columns on tablet */
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* TOC: tighter */
  .toc { padding: 18px; }
  .toc li a { font-size: .85rem; }

  /* Cookie banner */
  .cookie-banner { flex-direction: column; text-align: center; padding: 14px 20px; }

  /* Payment cards: full width items */
  .payment-card { padding: 16px; gap: 12px; }
  .payment-card__icon { width: 42px; height: 42px; font-size: 1.2rem; }

  /* Inline flex layouts (like on erfahrungen hero): stack */
  .flex.items-center.gap-4 { flex-direction: column; gap: 24px; }

  /* Testimonials */
  .testimonial { padding: 18px; }
  .testimonial__text { font-size: .88rem; }

  /* Info box */
  .info-box { padding: 14px 16px; }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
  :root { --header-h: 62px; }

  /* Buttons: full-width on small screens */
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .btn-lg { padding: 14px 24px; font-size: .95rem; }
  .btn-sm { padding: 7px 14px; font-size: .8rem; }

  /* Hero: compact */
  .hero { padding: 85px 0 40px; }
  .hero__badge { font-size: .72rem; padding: 5px 12px; }
  .hero__desc { font-size: .95rem; }
  .hero__stats { gap: 16px; margin-top: 24px; padding-top: 20px; }
  .hero__stat-value { font-size: 1.3rem; }
  .hero__stat-label { font-size: .75rem; }

  /* Typography tighter */
  h2 { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  h3 { font-size: clamp(1.1rem, 4vw, 1.3rem); }
  p { font-size: .92rem; }

  /* Bonus card */
  .bonus-card__amount { font-size: 1.5rem; }
  .bonus-card__info { font-size: .82rem; }

  /* Charts: further downscale */
  .donut-chart { width: 130px; height: 130px; }
  .donut-chart__center { width: 78px; height: 78px; }
  .donut-chart__value { font-size: 1.3rem; }

  .bar-chart { height: 140px; gap: 4px; }
  .bar-chart__bar { max-width: 22px; border-radius: 3px 3px 0 0; }
  .bar-chart__label { font-size: .6rem; }
  .bar-chart__value { font-size: .65rem; }

  .progress-circle { width: 70px; height: 70px; }
  .progress-circle__inner { width: 52px; height: 52px; }
  .progress-circle__value { font-size: .85rem; }

  /* Grid-4 items: single column on tiny screens */
  .grid-4 { grid-template-columns: 1fr 1fr; }

  /* Tables: even smaller cells */
  .table-standard th, .table-standard td,
  .table-striped th, .table-striped td,
  .table-compact th, .table-compact td,
  .table-bordered th, .table-bordered td { padding: 8px 10px; font-size: .78rem; }

  /* Rating bar labels: smaller */
  .rating-bar__label { width: 65px; font-size: .75rem; }
  .rating-bar__track { height: 8px; }

  /* Steps: compact */
  .step__num { width: 34px; height: 34px; font-size: .85rem; }
  .step__content h4 { font-size: .95rem; }
  .step__content p { font-size: .85rem; }

  /* Author box: tighter */
  .author-box { padding: 20px; gap: 16px; }
  .author-box__photo { width: 64px; height: 64px; }
  .author-box__name { font-size: .95rem; }
  .author-box__bio { font-size: .82rem; }

  /* Footer */
  .footer { padding: 36px 0 0; }
  .footer__grid { gap: 24px; }
  .footer__brand p { font-size: .82rem; }
  .footer__title { font-size: .82rem; margin-bottom: 10px; }
  .footer__links a { font-size: .82rem; }
  .footer__disclaimer p { font-size: .72rem; }

  /* Mobile nav: support safe area insets (notch phones) */
  .mobile-nav {
  z-index: 1001;
  background: #0B1929 !important;
 padding: 16px; padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }

  /* Breadcrumb */
  .breadcrumb { padding: 80px 0 0; }
  .breadcrumb__list { font-size: .78rem; gap: 6px; flex-wrap: wrap; }

  /* Inline [style] flex overrides for very small screens */
  [style*="min-width:300px"] { min-width: 0 !important; }
  [style*="max-width:700px"],
  [style*="max-width:650px"],
  [style*="max-width:600px"],
  [style*="max-width:800px"] { max-width: 100% !important; }
}

/* ---- Safety: prevent horizontal overflow on all screens ---- */
html, body { overflow-x: hidden; max-width: 100vw; }
.container { overflow-wrap: break-word; word-wrap: break-word; }
img, svg, video, iframe { max-width: 100%; height: auto; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---- Touch targets: minimum 44px for interactive elements ---- */
@media (pointer: coarse) {
  .nav a { min-height: 44px; display: inline-flex; align-items: center; }
  .mobile-nav a { min-height: 44px; display: flex; align-items: center; }
  .faq-item__q { min-height: 48px; }
  .toc li a { min-height: 44px; }
  .footer__links a { display: inline-flex; min-height: 40px; align-items: center; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: all .6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-alt) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* Pulse for CTA */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,.4); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
.btn-pulse { animation: pulse 2s infinite; }
