/* ============================================================
   style.css — Roostino-Casinos.de
   Brand: Roostino Casino | Dark Red + Gold Theme
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --ro:       #C03030;   /* brand red */
  --ro-d:     #8B1A1A;   /* dark red */
  --ro-dd:    #5C0F0F;   /* deeper red */
  --gold:     #D49000;   /* gold */
  --gold-l:   #F0B420;   /* bright gold */
  --amber:    #E07820;   /* amber/orange */
  --bg:       #0A0605;   /* deep dark bg */
  --bg2:      #130C0A;   /* slightly lighter bg */
  --surface:  #1E1210;   /* card surface */
  --surface2: #2A1715;   /* elevated card */
  --border:   #3D2020;   /* border */
  --border-l: #5A2E2E;   /* lighter border */
  --text:     #FFFBF2;   /* warm white */
  --text-m:   #D4BFB0;   /* muted text */
  --text-dim: #8A7060;   /* dim text */
  --white:    #FFFFFF;
  --success:  #2DBF6A;
  --warn:     #F0B420;
  --danger:   #E03030;
  --radius:   12px;
  --radius-lg:20px;
  --radius-sm:8px;
  --shadow:   0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:0 8px 48px rgba(0,0,0,0.7);
  --glow-red: 0 0 20px rgba(192,48,48,0.3);
  --glow-gold:0 0 20px rgba(212,144,0,0.3);
  color-scheme: dark;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-l); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
*:focus-visible { outline: 2px solid var(--gold-l); outline-offset: 3px; border-radius: 4px; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Outfit', 'Inter', sans-serif;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--text-m); }

.grad-red { background: linear-gradient(135deg, var(--ro), var(--amber)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-gold { background: linear-gradient(135deg, var(--gold), var(--gold-l)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; contain: layout style; }
.section--sm { padding: 40px 0; contain: layout style; }
.section--lg { padding: 100px 0; contain: layout style; }
.section-title { text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-dim); margin-bottom: 48px; font-size: .95rem; }
.section-title .label-tag {
  display: inline-block; background: var(--ro); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link { position: absolute; top: -100px; left: 20px; background: var(--gold); color: #000; padding: 8px 18px; border-radius: 6px; font-weight: 700; z-index: 9999; }
.skip-link:focus { top: 20px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 700;
  font-size: .95rem; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s;
  text-decoration: none; line-height: 1;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--ro), var(--amber)); color: #fff; box-shadow: 0 4px 20px rgba(192,48,48,0.4); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-l)); color: #000; box-shadow: 0 4px 20px rgba(212,144,0,0.4); }
.btn-outline { background: transparent; color: var(--gold-l); border: 2px solid var(--gold-l); }
.btn-outline:hover { background: var(--gold-l); color: #000; }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--border-l); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-xl { padding: 16px 36px; font-size: 1.05rem; }
.btn-lg { padding: 14px 28px; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border-l); }
.card--glow:hover { box-shadow: var(--shadow), var(--glow-red); }
.card--gold:hover { box-shadow: var(--shadow), var(--glow-gold); }
.glass {
  background: rgba(30,18,16,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Badge / Tag ────────────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.badge-red { background: rgba(192,48,48,0.2); color: var(--ro); border: 1px solid rgba(192,48,48,0.3); }
.badge-gold { background: rgba(212,144,0,0.2); color: var(--gold-l); border: 1px solid rgba(212,144,0,0.3); }
.badge-green { background: rgba(45,191,106,0.2); color: var(--success); border: 1px solid rgba(45,191,106,0.3); }
.badge-amber { background: rgba(224,120,32,0.2); color: var(--amber); border: 1px solid rgba(224,120,32,0.3); }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(10,6,5,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
  height: 70px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.header-logo img { height: 42px; width: auto; }
.header-logo span { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--text); }
.header-logo span em { color: var(--ro); font-style: normal; }
.site-nav { display: flex; align-items: center; gap: 4px; flex: 1; margin-left: 16px; }
.site-nav a {
  color: var(--text-m); font-size: .88rem; font-weight: 600;
  padding: 6px 12px; border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--text); background: var(--surface2); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.header-cta { display: flex; align-items: center; gap: 8px; }
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 850; }
.nav-overlay.show { display: block; }
.mobile-nav {
  position: fixed; top: 0; right: -300px; width: 300px; height: 100vh;
  background: var(--bg2); border-left: 1px solid var(--border);
  z-index: 890; transition: right .3s cubic-bezier(.4,0,.2,1);
  padding: 80px 24px 40px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-nav.open { right: 0; }
.mobile-nav a { color: var(--text); font-size: 1rem; font-weight: 600; padding: 12px 16px; border-radius: var(--radius-sm); display: block; border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { background: var(--surface); color: var(--gold-l); }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; background: var(--surface); border: 1px solid var(--border); color: var(--text); font-size: 1.3rem; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mobile-nav-cta { margin-top: 24px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139,26,26,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(212,144,0,0.12) 0%, transparent 50%),
              var(--bg);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(192,48,48,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { margin-bottom: 16px; }
.eyebrow-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,48,48,0.15); border: 1px solid rgba(192,48,48,0.3);
  color: var(--amber); font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  padding: 6px 14px; border-radius: 20px; text-transform: uppercase;
}
.hero h1 { margin-bottom: 20px; }
.hero-desc { font-size: 1.05rem; color: var(--text-m); margin-bottom: 32px; max-width: 500px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--gold-l); font-family: 'Outfit', sans-serif; }
.hero-stat span { font-size: .78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; }
.hero-stat-sep { width: 1px; background: var(--border); }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg), var(--glow-red); width: 100%; }
.hero-badge {
  position: absolute; top: -16px; right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  color: #000; font-weight: 900; font-size: .8rem;
  padding: 16px; border-radius: 50%; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; line-height: 1.2; box-shadow: var(--glow-gold);
  animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse { 0%,100%{box-shadow:var(--glow-gold)} 50%{box-shadow:0 0 40px rgba(212,144,0,0.6)} }

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center; padding: 8px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 900; font-family: 'Outfit', sans-serif; color: var(--gold-l); line-height: 1; }
.stat-label { font-size: .78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* ── Score Card ────────────────────────────────────────────── */
.score-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.score-item { text-align: center; }
.score-label { font-size: .82rem; color: var(--text-dim); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.score-bar-wrap { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.score-bar { height: 100%; border-radius: 4px; background: linear-gradient(to right, var(--ro), var(--amber)); width: 0; transition: width 1.4s cubic-bezier(.4,0,.2,1); }
.score-val { font-size: .95rem; font-weight: 800; color: var(--gold-l); }

/* ── Tables ─────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; min-width: 580px; border-collapse: collapse; }
thead th { background: var(--surface2); color: var(--text); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 14px 16px; border-bottom: 1px solid var(--border); text-align: left; white-space: nowrap; }
tbody td { padding: 13px 16px; border-bottom: 1px solid rgba(61,32,32,0.5); font-size: .9rem; color: var(--text-m); vertical-align: middle; white-space: nowrap; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,0.03); }
tbody tr:nth-child(even) td { background: rgba(0,0,0,0.15); }
.td-highlight { color: var(--gold-l) !important; font-weight: 700; }
.td-check { color: var(--success); font-weight: 700; }
.td-cross { color: var(--danger); }

/* ── Charts ─────────────────────────────────────────────────── */
.chart-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.chart-bar-label { font-size: .85rem; color: var(--text-m); min-width: 150px; font-weight: 600; }
.chart-bar-bg { flex: 1; height: 10px; background: rgba(255,255,255,0.08); border-radius: 5px; overflow: hidden; }
.chart-bar-fill { height: 100%; border-radius: 5px; width: 0; transition: width 1.4s cubic-bezier(.4,0,.2,1); }
.chart-bar-fill--red { background: linear-gradient(to right, var(--ro-d), var(--ro)); }
.chart-bar-fill--gold { background: linear-gradient(to right, var(--gold), var(--gold-l)); }
.chart-bar-fill--amber { background: linear-gradient(to right, var(--amber), var(--gold-l)); }
.chart-bar-fill--green { background: linear-gradient(to right, #1A9B50, var(--success)); }
.chart-bar-val { font-size: .85rem; font-weight: 700; color: var(--gold-l); min-width: 36px; text-align: right; }

/* Donut chart */
.donut-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.donut-svg { overflow: visible; }
.donut-track { fill: none; stroke: rgba(255,255,255,0.08); }
.donut-ring { fill: none; stroke-linecap: round; stroke-dasharray: 251; stroke-dashoffset: 251; transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1); }
.donut-ring--red { stroke: url(#grad-red-donut); }
.donut-ring--gold { stroke: url(#grad-gold-donut); }
.donut-label { font-family: 'Outfit', sans-serif; font-weight: 900; fill: var(--text); font-size: 1.4rem; }
.donut-sub { fill: var(--text-dim); font-size: .55rem; font-weight: 600; letter-spacing: .05em; }
.donuts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.donut-title { font-size: .82rem; color: var(--text-m); text-align: center; font-weight: 600; }

/* Gauge */
.gauge-wrap { text-align: center; }
.gauge-svg { overflow: visible; }
.gauge-bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-linecap: round; }
.gauge-fill { fill: none; stroke-linecap: round; stroke: url(#gauge-grad); stroke-dasharray: 220; stroke-dashoffset: 220; transition: stroke-dashoffset 1.6s cubic-bezier(.4,0,.2,1); }
.gauge-val { font-family: 'Outfit', sans-serif; font-weight: 900; fill: var(--text); }
.gauge-label-txt { fill: var(--text-dim); font-size: .6rem; }

/* Radar / Spider */
.radar-svg { overflow: visible; }

/* ── Bonus Cards ────────────────────────────────────────────── */
.bonus-hero-card {
  background: linear-gradient(135deg, var(--surface2), rgba(139,26,26,0.3));
  border: 1px solid var(--ro-d);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.bonus-hero-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(192,48,48,0.15), transparent 70%);
  pointer-events: none;
}
.bonus-amount { font-size: 3.5rem; font-weight: 900; font-family: 'Outfit', sans-serif; color: var(--gold-l); line-height: 1; }
.bonus-desc { color: var(--text-m); margin-top: 8px; }
.bonus-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.bonus-chip { background: rgba(255,255,255,0.08); border: 1px solid var(--border-l); border-radius: 20px; padding: 5px 14px; font-size: .8rem; font-weight: 600; }

/* Bonus steps */
.bonus-steps { display: flex; gap: 0; overflow-x: auto; }
.bonus-step {
  flex: 1; min-width: 160px; text-align: center; padding: 28px 20px;
  position: relative;
}
.bonus-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.2rem; z-index: 1;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ro), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; margin: 0 auto 14px; color: #fff;
  box-shadow: var(--glow-red);
}
.step-title { font-size: .9rem; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: .78rem; color: var(--text-dim); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-size: .95rem; font-weight: 700; color: var(--text); text-align: left; gap: 12px;
  transition: background .2s;
}
.faq-question:hover { background: rgba(255,255,255,0.04); }
.faq-icon { font-size: 1.2rem; color: var(--ro); transition: transform .3s; font-weight: 900; flex-shrink: 0; }
.faq-answer { display: none; padding: 0 22px 18px; color: var(--text-m); font-size: .9rem; line-height: 1.7; }
.faq-answer.open { display: block; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

/* ── Payment Grid ───────────────────────────────────────────── */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
.payment-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 12px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.payment-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.payment-icon { font-size: 1.8rem; margin-bottom: 6px; }
.payment-name { font-size: .75rem; font-weight: 700; color: var(--text-m); }

/* ── Game Grid ──────────────────────────────────────────────── */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 200px)); gap: 16px; justify-content: center; }
.game-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.game-thumb { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.game-thumb-wrap { width: 100%; height: 160px; overflow: hidden; background: var(--surface2); flex-shrink: 0; }
.game-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-info { padding: 10px 12px; }
.game-name { font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-provider { font-size: .72rem; color: var(--text-dim); }
.game-badge { font-size: .65rem; }

/* ── Provider Grid ──────────────────────────────────────────── */
.provider-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.provider-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; text-align: center; font-size: .85rem; font-weight: 700; color: var(--text-m);
  transition: border-color .2s, color .2s;
}
.provider-card:hover { border-color: var(--ro); color: var(--text); }

/* ── Review / Rating ────────────────────────────────────────── */
.stars { color: var(--gold-l); font-size: 1.2rem; letter-spacing: 2px; }
.rating-big { font-size: 4rem; font-weight: 900; font-family: 'Outfit', sans-serif; color: var(--gold-l); line-height: 1; }
.rating-max { font-size: 1.5rem; color: var(--text-dim); }

/* ── Pros/Cons ──────────────────────────────────────────────── */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-card { background: rgba(45,191,106,0.06); border: 1px solid rgba(45,191,106,0.2); border-radius: var(--radius); padding: 24px; }
.cons-card { background: rgba(192,48,48,0.06); border: 1px solid rgba(192,48,48,0.2); border-radius: var(--radius); padding: 24px; }
.pros-card h4 { color: var(--success); margin-bottom: 16px; }
.cons-card h4 { color: var(--ro); margin-bottom: 16px; }
.pro-item, .con-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: .9rem; color: var(--text-m); }
.pro-item::before { content: '✓'; color: var(--success); font-weight: 900; flex-shrink: 0; }
.con-item::before { content: '✗'; color: var(--ro); font-weight: 900; flex-shrink: 0; }

/* ── Author Bio ─────────────────────────────────────────────── */
.author-block {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.author-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--ro); flex-shrink: 0; }
.author-name { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.author-role { font-size: .8rem; color: var(--ro); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.author-text { font-size: .88rem; color: var(--text-dim); }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 16px 0; }
.breadcrumb a { color: var(--text-dim); font-size: .82rem; }
.breadcrumb a:hover { color: var(--gold-l); }
.breadcrumb span { color: var(--text-dim); font-size: .82rem; }
.breadcrumb span.current { color: var(--text-m); }

/* ── Page Hero (sub-pages) ──────────────────────────────────── */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(139,26,26,0.1) 50%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192,48,48,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero-badge { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero-desc { color: var(--text-m); max-width: 640px; margin-bottom: 24px; }
.page-hero-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.page-hero-meta-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-dim); }
.page-hero-meta-item strong { color: var(--text-m); }

/* ── Feature list ───────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.feature-card { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.feature-card h4 { margin-bottom: 6px; }
.feature-card p { font-size: .88rem; color: var(--text-dim); }

/* ── Comparison Table ───────────────────────────────────────── */
.compare-table thead th:first-child { min-width: 180px; }
.compare-table .feature-col { font-weight: 700; color: var(--text); }
.check-icon { color: var(--success); font-size: 1.1rem; }
.cross-icon { color: var(--danger); }

/* ── Security Badges ────────────────────────────────────────── */
.security-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.security-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.security-icon { font-size: 2.5rem; margin-bottom: 12px; }
.security-card h4 { font-size: .95rem; margin-bottom: 8px; }
.security-card p { font-size: .82rem; color: var(--text-dim); }

/* ── Mobile device mockup ───────────────────────────────────── */
.device-frame {
  border: 3px solid var(--border-l); border-radius: 32px;
  overflow: hidden; box-shadow: var(--shadow-lg), var(--glow-red);
  max-width: 280px; margin: 0 auto;
}
.device-screen { display: block; width: 100%; aspect-ratio: 9/19; object-fit: cover; }

/* ── Timeline ───────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot { position: absolute; left: -32px; top: 4px; width: 24px; height: 24px; background: linear-gradient(135deg, var(--ro), var(--amber)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .65rem; color: #fff; font-weight: 900; }
.timeline-date { font-size: .78rem; color: var(--text-dim); font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.timeline-title { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.timeline-text { font-size: .88rem; color: var(--text-dim); }

/* ── Noscript Bar ───────────────────────────────────────────── */
.noscript-bar { background: var(--warn); color: #000; text-align: center; padding: 10px 20px; font-weight: 700; font-size: .88rem; }

/* ── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--surface2); border-top: 1px solid var(--border);
  padding: 16px 20px; display: none;
}
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: .85rem; color: var(--text-m); }
.cookie-text a { color: var(--gold-l); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: .88rem; color: var(--text-dim); margin-top: 12px; line-height: 1.7; }
.footer-logo { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-logo span { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.15rem; }
.footer-logo em { color: var(--ro); font-style: normal; }
.footer-col h4 { font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: .88rem; color: var(--text-dim); transition: color .2s; }
.footer-col ul a:hover { color: var(--gold-l); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-legal { font-size: .78rem; color: var(--text-dim); max-width: 700px; line-height: 1.6; }
.footer-badges { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer-badge { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; font-size: .78rem; color: var(--text-dim); font-weight: 700; }
.footer-copyright { font-size: .78rem; color: var(--text-dim); margin-top: 16px; }
.footer-payments { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.footer-pay-icon { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 6px 12px; font-size: .8rem; color: var(--text-dim); font-weight: 600; }
.gambling-warn { background: rgba(224,120,32,0.1); border: 1px solid rgba(224,120,32,0.3); border-radius: var(--radius-sm); padding: 12px 16px; font-size: .8rem; color: var(--amber); margin-top: 16px; }

/* ── Legal pages ────────────────────────────────────────────── */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; font-weight: 800; margin: 2.5rem 0 0.75rem; }
.legal-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-m); margin: 1.75rem 0 0.5rem; }
.legal-content p, .legal-content li { font-size: .9rem; color: var(--text-m); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-content ul { list-style: disc; padding-left: 1.4rem; }
.legal-content a { color: var(--gold-l); }

/* ── Login/Register ─────────────────────────────────────────── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 20px 60px; }
.auth-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 420px; }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-card h1 { font-size: 1.6rem; text-align: center; margin-bottom: 8px; }
.auth-sub { text-align: center; color: var(--text-dim); font-size: .9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 8px; color: var(--text-m); }
.form-input {
  width: 100%; background: var(--bg); border: 1px solid var(--border-l);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: .95rem; color: var(--text); transition: border-color .2s;
}
.form-input:focus { border-color: var(--ro); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; }
.auth-footer { text-align: center; margin-top: 20px; font-size: .88rem; color: var(--text-dim); }
.auth-footer a { color: var(--gold-l); }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-checkbox input[type="checkbox"] { margin-top: 3px; accent-color: var(--ro); }
.form-checkbox label { font-size: .82rem; color: var(--text-dim); }

/* ── AOS ────────────────────────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .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; }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos="zoom-in"].aos-animate { transform: none; }

/* ── Utilities ──────────────────────────────────────────────── */
.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; }
.text-center { text-align: center; }
.text-gold { color: var(--gold-l); }
.text-red { color: var(--ro); }
.text-dim { color: var(--text-dim); }
.text-muted { color: var(--text-m); }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gap-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Divider ────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 48px 0; }

/* ── Highlighted Box ────────────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(139,26,26,0.15), rgba(212,144,0,0.08));
  border: 1px solid rgba(192,48,48,0.3);
  border-radius: var(--radius); padding: 24px;
}
.info-box {
  background: rgba(45,191,106,0.07);
  border: 1px solid rgba(45,191,106,0.25);
  border-radius: var(--radius); padding: 20px;
}
.warn-box {
  background: rgba(224,120,32,0.08);
  border: 1px solid rgba(224,120,32,0.25);
  border-radius: var(--radius); padding: 20px;
  font-size: .88rem; color: var(--text-m);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .score-grid { grid-template-columns: 1fr 1fr; }
  .donuts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav, .header-actions .btn-outline { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 0 60px; min-height: unset; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 400px; margin: 0 auto; }
  .hero-badge { right: 10px; top: -10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .gap-grid-2, .gap-grid-3 { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .section, .section--sm, .section--lg { padding: 50px 0; }
  .bonus-steps { flex-direction: column; }
  .bonus-step:not(:last-child)::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -16px; transform: translateX(-50%); }
  .donuts-grid { grid-template-columns: repeat(2, 1fr); }
  table { min-width: 500px; }
  .table-wrap { margin-left: -20px; margin-right: -20px; border-radius: 0; border-left: none; border-right: none; }
  .score-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .donuts-grid { grid-template-columns: repeat(2, 1fr); }
  .score-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .provider-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-badge { display: none; }
  .bonus-hero-card { padding: 24px; }
  .bonus-amount { font-size: 2.5rem; }
  table { min-width: 440px; }
}

@media (max-width: 380px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .cookie-banner, .hamburger, .mobile-nav { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: inherit; }
  .section { padding: 20px 0; }
}

/* ── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* Horizontal tab scroll on mobile */
@media (max-width: 600px) {
  .tabs-row { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .tabs-row::-webkit-scrollbar { height: 3px; }
  .tabs-row::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
}

/* -- Auth page extras --------------------- */
.auth-redirect-note { font-size: .88rem; color: var(--text-dim); line-height: 1.7; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 18px; }
.auth-footer-warn { font-size: .78rem; color: var(--amber); margin-top: 8px; }
.auth-card--wide { max-width: 520px; }

/* -- Page hero small ---------------------- */
.page-hero--sm { padding: 100px 0 40px; }
.page-hero--sm h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* ── Back-to-top button ─────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  background: linear-gradient(135deg, var(--ro), var(--amber));
  color: #fff; border: none; border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; cursor: pointer; box-shadow: 0 4px 20px rgba(192,48,48,.45);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }
@media (max-width: 480px) {
  .back-to-top { bottom: 16px; right: 16px; width: 42px; height: 42px; font-size: 1.1rem; }
}

/* ── form-input focus ───────────────────────────────────────── */
.form-input:focus        { border-color: var(--ro); outline: none; }
.form-input:focus-visible{ border-color: var(--ro); outline: 2px solid var(--gold-l); outline-offset: 2px; }

/* ── Touch targets ──────────────────────────────────────────── */
.btn, .site-nav a, .mobile-nav a, .faq-question, .back-to-top,
.mobile-nav-close, .hamburger { touch-action: manipulation; }

/* ── Cookie banner a11y heading ─────────────────────────────── */
.cookie-title { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }

/* ── Noscript AOS fallback (JS disabled) ───────────────────── */
@media (scripting: none) {
  [data-aos] { opacity: 1 !important; transform: none !important; }
}
