@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── TOKENS ──────────────────────────────────────────────────── */
:root {
  --red:        #c8102e;       /* Schweizer Rot */
  --red-deep:   #9e0b22;
  --red-soft:   rgba(200,16,46,0.08);
  --red-soft2:  rgba(200,16,46,0.14);
  --ink:        #1a1a1a;
  --ink-mid:    #3d3d3d;
  --ink-light:  #6b6b6b;
  --surface:    #f8f7f4;
  --white:      #ffffff;
  --border:     #e2dfda;
  --border-mid: #c9c5bf;
  --card:       #ffffff;
  --table-head: #1a1a1a;
  --radius:     10px;
  --shadow:     0 2px 16px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 30px rgba(0,0,0,0.10);
}

/* ─── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
}

/* ─── HEADER ──────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 10px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo-cross {
  width: 28px; height: 28px; border-radius: 5px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-cross::before {
  content: '+';
  color: #fff; font-size: 1.2rem; font-weight: 300; line-height: 1;
}
.header-meta {
  font-size: 0.78rem; color: var(--ink-light); font-weight: 400;
  display: flex; align-items: center; gap: 6px;
}
.header-meta::before {
  content: ''; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
}

/* ─── BREADCRUMBS ─────────────────────────────────────────────── */
.breadcrumbs {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  font-size: 0.78rem;
}
.breadcrumbs ol {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  list-style: none; display: flex; flex-wrap: wrap; gap: 0;
}
.breadcrumbs li { display: flex; align-items: center; color: var(--ink-light); }
.breadcrumbs li + li::before { content: '›'; margin: 0 8px; color: var(--border-mid); }
.breadcrumbs a { color: var(--ink-light); text-decoration: none; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs li[aria-current="page"] { color: var(--ink-mid); font-weight: 500; }

/* ─── CONTAINER ───────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 34px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; right: -60px; top: -40px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(200,16,46,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}
.hero-label::before {
  content: ''; width: 20px; height: 2px; background: var(--red);
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.55rem);
  font-weight: 400; line-height: 1.3;
  color: var(--ink); margin-bottom: 22px;
  max-width: 780px;
}
.hero h1 em { color: var(--red); font-style: italic; }
.hero-intro {
  font-size: 1.05rem; color: var(--ink-mid); max-width: 680px;
  margin-bottom: 36px; font-weight: 300; line-height: 1.8;
}
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red-soft); color: var(--red);
  font-size: 0.78rem; font-weight: 600; padding: 5px 14px;
  border-radius: 30px; border: 1px solid var(--red-soft2);
}

/* ─── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--ink);
  padding: 0;
}
.stats-grid {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 24px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.1rem; color: #ffffff; line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-lbl { font-size: 0.73rem; color: rgba(255,255,255,0.45); margin-top: 5px; letter-spacing: 0.5px; text-transform: uppercase; }

/* ─── LAYOUT ──────────────────────────────────────────────────── */
.page-body { padding: 56px 0 80px; }

.content-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* ─── SIDEBAR ─────────────────────────────────────────────────── */
.sidebar { position: sticky; top: 80px; }
.toc-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.toc-head {
  background: var(--ink);
  padding: 14px 20px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 8px;
}
.toc-head::before { content: '≡'; font-size: 1rem; color: var(--red); }
.toc-list { list-style: none; padding: 10px 0; }
.toc-list li a {
  display: block; padding: 7px 20px;
  font-size: 0.83rem; color: var(--ink-mid); text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
}
.toc-list li a:hover {
  background: var(--red-soft); color: var(--red);
  border-left-color: var(--red);
}

/* ─── SECTIONS ────────────────────────────────────────────────── */
.section { margin-bottom: 52px; }

h2.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.9rem; font-weight: 400;
  color: var(--ink); margin-bottom: 16px; line-height: 1.25;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
h2.section-title::after {
  content: '';
  display: block;
  width: 42px; height: 3px;
  background: var(--red);
  margin-top: 10px;
  border-radius: 2px;
}

h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--ink); margin: 30px 0 12px;
}

p { margin-bottom: 16px; color: var(--ink-mid); font-weight: 300; line-height: 1.8; }
p strong { color: var(--ink); font-weight: 600; }

/* ─── CASINO CARDS ────────────────────────────────────────────── */
.casino-list { display: flex; flex-direction: column; gap: 18px; margin: 28px 0; }

.casino-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.casino-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.casino-card.top-pick { border-left: 4px solid var(--red); }

.card-inner { display: flex; align-items: stretch; }

.card-rank {
  width: 52px; min-width: 52px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; color: var(--ink-light);
  border-right: 1px solid var(--border);
}
.casino-card.top-pick .card-rank { background: var(--red-soft); color: var(--red); }

.card-body { flex: 1; padding: 18px 22px; }
.card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.card-name { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--ink); }
.card-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
  font-size: 0.68rem; font-weight: 700; padding: 2px 9px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.b-mga  { background: #e8f5ee; color: #2a7a4a; border: 1px solid #b3d9c3; }
.b-cur  { background: #fef5e4; color: #9a6c1a; border: 1px solid #f5d89a; }
.b-krypto { background: #edf2fc; color: #2d5fb0; border: 1px solid #b4c8f0; }
.b-hot  { background: var(--red-soft); color: var(--red); border: 1px solid var(--red-soft2); }

.card-bonus { font-size: 0.95rem; font-weight: 600; color: var(--red); margin-bottom: 8px; }
.card-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.card-meta-item { font-size: 0.8rem; color: var(--ink-light); }
.card-meta-item strong { color: var(--ink-mid); font-weight: 500; }
.card-desc { margin-top: 10px; font-size: 0.86rem; color: var(--ink-light); line-height: 1.65; }

.card-cta {
  padding: 18px 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; background: var(--surface); min-width: 120px;
  border-left: 1px solid var(--border);
}
.btn-primary {
  display: inline-block; padding: 9px 20px;
  background: var(--red); color: #fff;
  font-weight: 600; font-size: 0.86rem; border-radius: 7px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-deep); }
.casino-card.top-pick .btn-primary { background: var(--ink); }
.casino-card.top-pick .btn-primary:hover { background: #333; }
.btn-ghost { font-size: 0.74rem; color: var(--ink-light); text-decoration: none; }
.btn-ghost:hover { color: var(--red); }

/* ─── TABLES ──────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto; margin: 22px 0;
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
table { width: 100%; border-collapse: collapse; font-size: 0.86rem; background: var(--white); }
thead th {
  background: var(--table-head); color: #fff;
  padding: 12px 16px; text-align: left;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.5px; text-transform: uppercase;
  white-space: nowrap;
}
thead th:first-child { border-radius: var(--radius) 0 0 0; }
thead th:last-child  { border-radius: 0 var(--radius) 0 0; }
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--surface); }
tbody td { padding: 11px 16px; color: var(--ink-mid); vertical-align: top; }
tbody td:first-child { font-weight: 600; color: var(--ink); }
.check { color: #2a7a4a; font-weight: 700; }
.cross { color: var(--red); font-weight: 700; }

/* ─── CALLOUT BOXES ───────────────────────────────────────────── */
.callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 22px 0;
  box-shadow: var(--shadow);
}
.callout p { margin-bottom: 0; font-size: 0.9rem; }
.callout strong { color: var(--ink); }
.callout.info { border-left-color: #2a7a4a; background: #f5fbf7; }
.callout.info strong { color: #2a7a4a; }
.callout.warn { border-left-color: #d97706; background: #fffbf0; }
.callout.warn strong { color: #a05a00; }

/* ─── STEPS ───────────────────────────────────────────────────── */
.steps { margin: 22px 0; counter-reset: step-counter; }
.step {
  display: flex; gap: 18px; margin-bottom: 14px;
  padding: 16px 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.step-num {
  width: 32px; min-width: 32px; height: 32px;
  background: var(--red); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.step-text { font-size: 0.9rem; color: var(--ink-mid); }
.step-text strong { display: block; color: var(--ink); margin-bottom: 3px; font-weight: 600; }

/* ─── PROS / CONS ─────────────────────────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 22px 0; }
.pros, .cons {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px;
  box-shadow: var(--shadow);
}
.pros { border-top: 3px solid #2a7a4a; }
.cons { border-top: 3px solid var(--red); }
.pros h4, .cons h4 {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
}
.pros h4 { color: #2a7a4a; }
.cons h4 { color: var(--red); }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li, .cons li {
  padding: 5px 0; font-size: 0.88rem; color: var(--ink-mid);
  display: flex; gap: 9px; border-bottom: 1px solid var(--border);
}
.pros li:last-child, .cons li:last-child { border-bottom: none; }
.pros li::before { content: '✓'; color: #2a7a4a; font-weight: 700; flex-shrink: 0; }
.cons li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ─── CHECK LIST ──────────────────────────────────────────────── */
.check-list { list-style: none; padding: 0; margin: 16px 0; }
.check-list li {
  padding: 9px 0 9px 28px; position: relative;
  font-size: 0.9rem; color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--red); font-weight: 700; font-size: 1.1rem; line-height: 1.4;
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq { margin: 24px 0; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 10px;
  overflow: hidden; box-shadow: var(--shadow);
}
.faq-q {
  padding: 16px 20px; cursor: pointer;
  font-weight: 600; color: var(--ink); font-size: 0.93rem;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-q::after { content: '+'; color: var(--red); font-size: 1.3rem; line-height: 1; font-weight: 300; }
.faq-item.open .faq-q { border-bottom: 1px solid var(--border); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 14px 20px; font-size: 0.88rem; color: var(--ink-mid); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ─── HIGHLIGHT BOX ───────────────────────────────────────────── */
.highlight-box {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 28px 30px; margin: 28px 0;
  color: rgba(255,255,255,0.85);
}
.highlight-box h3 { color: #fff; font-size: 1.2rem; margin: 0 0 12px; }
.highlight-box p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 0; }
.highlight-box .hl-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px;
}
.hl-item {
  font-size: 0.83rem; color: rgba(255,255,255,0.6);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: flex-start; gap: 8px;
}
.hl-item::before { content: '›'; color: var(--red); flex-shrink: 0; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 44px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-col h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem; color: var(--ink); margin-bottom: 10px;
}
.footer-col p { font-size: 0.8rem; color: var(--ink-light); line-height: 1.7; margin-bottom: 0; }
.footer-bottom {
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: var(--ink-light); flex-wrap: wrap; gap: 8px;
}
.footer-bottom .meta { display: flex; align-items: center; gap: 6px; }
.footer-bottom .meta::before { content: ''; width: 5px; height: 5px; background: var(--red); border-radius: 50%; }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .card-inner { flex-direction: column; }
  .card-rank { width: 100%; min-width: auto; height: 36px; border-right: none; border-bottom: 1px solid var(--border); }
  .card-cta { flex-direction: row; justify-content: flex-start; border-left: none; border-top: 1px solid var(--border); padding: 14px 20px; }
  .pros-cons { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .highlight-box .hl-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
