/* =========================================================
   CasinoEcho.de — Editorial Review Site DE
   Deep blue + amber, clean, mobile-first
   ========================================================= */

:root {
  /* Paleta 02 — Preto + Dourado (Halftone) */
  --paper: #FFFFFF;
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --surface-2: #F5F5F2;
  --bg-alt: #F0F0EC;

  --ink: #0A0A0A;
  --ink-2: #1F1F1F;
  --ink-3: #3D3D3D;
  --mute: #6B6B6B;
  --mute-2: #9A9A9A;

  --hairline: #EAEAEA;
  --hairline-strong: #D0D0D0;

  --primary: #0A0A0A;
  --primary-2: #222222;
  --primary-soft: #F0F0EC;

  --accent: #C8A24C;
  --accent-2: #A8853A;
  --accent-soft: #F5EFD9;

  --pos: #0F8A4D;
  --pos-soft: #E7F6EC;
  --neg: #C8102E;
  --neg-soft: #FEE2E2;

  --glow: 10, 10, 10;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;

  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  --wrap: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.no-scroll { overflow: hidden; }

/* ============== UTILITY BAR ============== */
.utility {
  background: var(--ink); color: rgba(255,255,255,0.78);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
}
.utility .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; gap: 16px; flex-wrap: wrap; }
.u-left, .u-right { display: flex; align-items: center; gap: 14px; }
.live { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.live::before { content: ""; width: 7px; height: 7px; background: var(--pos); border-radius: 50%; box-shadow: 0 0 0 3px rgba(15,138,77,0.25); }
.sep { width: 1px; height: 12px; background: rgba(255,255,255,0.15); }
@media (max-width: 720px) { .hide-sm { display: none !important; } }

/* ============== HEADER ============== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  letter-spacing: -0.025em; color: var(--ink);
  display: flex; align-items: center; gap: 2px;
}
.logo-accent { color: var(--accent); font-style: italic; font-weight: 600; }
.nav-menu { display: flex; gap: 4px; align-items: center; flex: 1; justify-content: center; }
.nav-menu a {
  color: var(--ink-3); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all 0.15s;
}
.nav-menu a:hover { color: var(--ink); background: var(--surface-2); }
.nav-menu a.active { color: var(--primary); background: var(--primary-soft); font-weight: 600; }
.nav-cta {
  background: var(--primary); color: #fff;
  padding: 9px 18px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  box-shadow: 0 6px 16px -8px rgba(var(--glow), 0.5);
  transition: transform .12s, background .15s;
}
.nav-cta:hover { background: var(--primary-2); transform: translateY(-1px); }
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 1px; transition: 0.2s;
}
.menu-btn span::before { transform: translateY(-7px); }
.menu-btn span::after { transform: translateY(5px); }
@media (max-width: 880px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .menu-btn { display: block; }
}

/* ============== MOBILE NAV ============== */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 86%; max-width: 360px; height: 100vh;
  background: var(--bg); z-index: 200;
  transition: right 0.3s ease;
  padding: 24px; overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-nav.open { right: 0; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.close-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--ink); padding: 4px 8px; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 14px 16px; border-radius: 10px;
  color: var(--ink); font-size: 16px; font-weight: 500;
}
.mobile-nav a.active { background: var(--primary-soft); color: var(--primary); }

/* ============== HERO ============== */
.hero { padding: 60px 0 50px; background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 28px; } }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 8px; background: var(--surface);
  border: 1px solid var(--hairline-strong); border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--ink-2); margin-bottom: 24px;
}
.hero-tag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pos);
  box-shadow: 0 0 0 3px var(--pos-soft);
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 5.8vw, 64px);
  line-height: 1.02; letter-spacing: -0.035em; margin-bottom: 18px; color: var(--ink);
}
.hero h1 .accent { color: var(--accent); font-style: italic; font-weight: 600; }
.hero-desc { font-size: 17px; color: var(--ink-3); margin-bottom: 24px; line-height: 1.6; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 14px; font-family: var(--font-mono);
  font-size: 11px; color: var(--mute); letter-spacing: 0.04em;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust span::before { content: "✓"; color: var(--pos); font-weight: 700; }

/* Hero featured (right card) */
.hero-featured {
  position: relative; background: var(--surface);
  border: 1px solid var(--hairline-strong); border-radius: var(--radius-lg);
  padding: 28px 26px 24px; text-align: center;
  box-shadow: 0 20px 50px -25px rgba(15,20,25,0.18);
}
.hf-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px 5px 8px; background: var(--accent); color: var(--ink);
  border-radius: 999px; font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.hf-header { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 18px; }
.hf-logo-wrap {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--surface-2); border: 1px solid var(--hairline);
  display: inline-flex; align-items: center; justify-content: center; overflow: hidden;
}
.hf-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.hf-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; text-align: left; }
.hf-rating { display: flex; align-items: baseline; gap: 4px; text-align: left; font-family: var(--font-mono); }
.hf-rating-value { font-size: 18px; font-weight: 700; color: var(--primary); }
.hf-rating-max { font-size: 12px; color: var(--mute); }
.hf-bonus-box {
  background: var(--primary-soft); border-radius: var(--radius);
  padding: 16px 14px; margin-bottom: 18px;
}
.hf-bonus-label { font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 6px; }
.hf-bonus-value { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 4px; }
.hf-code { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-3); }
.hf-meta { font-family: var(--font-mono); font-size: 11px; color: var(--mute); margin-top: 12px; letter-spacing: 0.04em; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 22px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  letter-spacing: -0.005em; cursor: pointer; border: none;
  text-decoration: none; transition: all 0.15s;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 10px 22px -8px rgba(var(--glow), 0.5);
}
.btn-primary:hover { transform: translateY(-1px); background: var(--primary-2); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-1px); background: var(--ink-2); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--hairline-strong);
}
.btn-outline:hover { background: var(--surface-2); border-color: var(--ink); }
.btn-block { width: 100%; }

/* ============== SECTIONS ============== */
.section { padding: 70px 0; }
.section-tight { padding: 45px 0; }
.section-alt { background: var(--surface-2); }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.03em;
  line-height: 1.1; text-align: center; margin-bottom: 14px; color: var(--ink);
}
.section-subtitle {
  text-align: center; color: var(--ink-3);
  max-width: 680px; margin: 0 auto 40px; font-size: 17px; line-height: 1.6;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute);
}
.eyebrow::before { content: ""; width: 14px; height: 1px; background: var(--primary); }

/* ============== STATS STRIP ============== */
.stats-strip { background: var(--ink); color: #fff; padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.stat-value {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px);
  font-weight: 800; line-height: 1; margin-bottom: 4px;
}
.stat-accent { color: var(--accent); }
.stat-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}

/* ============== CASINO CARDS ============== */
.casino-list { display: flex; flex-direction: column; gap: 18px; }
.casino-card {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--radius-lg); padding: 24px;
  display: grid; grid-template-columns: 56px 1fr auto auto;
  gap: 24px; align-items: center; transition: all 0.2s;
  position: relative;
}
.casino-card:hover { border-color: var(--hairline-strong); box-shadow: 0 12px 30px -15px rgba(15,20,25,0.12); }
.casino-card.featured {
  border-color: var(--primary); border-width: 2px;
  box-shadow: 0 18px 40px -20px rgba(var(--glow), 0.25);
}
.cc-rank {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: var(--hairline-strong); text-align: center; width: 44px;
}
.casino-card.featured .cc-rank { color: var(--primary); }
.cc-main { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: center; }
.cc-logo {
  width: 72px; height: 72px; border-radius: 14px;
  background: var(--surface-2); border: 1px solid var(--hairline);
  display: inline-flex; align-items: center; justify-content: center; overflow: hidden;
  position: relative;
}
.cc-logo img { max-width: 80%; max-height: 80%; object-fit: contain; opacity: 0; transition: opacity 0.2s; }
.cc-logo.img-loaded img { opacity: 1; }
.cc-logo::after {
  content: attr(data-letter); position: absolute;
  font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--mute);
}
.cc-logo.img-loaded::after { display: none; }
.cc-info { min-width: 0; }
.cc-name-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; flex-wrap: wrap; }
.cc-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.015em; }
.cc-flag {
  display: inline-flex; align-items: center; padding: 3px 8px;
  background: var(--accent); color: var(--ink);
  border-radius: 999px; font-family: var(--font-mono);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.cc-subtitle { font-size: 12.5px; color: var(--mute); line-height: 1.4; margin-bottom: 8px; }
.cc-features { display: flex; flex-wrap: wrap; gap: 6px; }
.cc-features li {
  display: inline-flex; align-items: center;
  padding: 3px 8px; background: var(--surface-2);
  border-radius: 6px; font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-3);
}
.cc-right { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 160px; }
.cc-rating-big { display: flex; align-items: baseline; gap: 4px; justify-content: center; font-family: var(--font-mono); }
.cc-rating-value { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1; }
.cc-rating-max { font-size: 13px; color: var(--mute); }
.cc-bonus { text-align: center; padding: 8px 12px; background: var(--primary-soft); border-radius: 10px; min-width: 140px; }
.cc-bonus-label { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 2px; }
.cc-bonus-value { font-family: var(--font-display); font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.cc-bonus-sub { font-family: var(--font-mono); font-size: 10.5px; color: var(--mute); margin-top: 2px; }
.cc-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 18px; border-radius: 10px;
  background: var(--primary); color: #fff;
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 6px 14px -8px rgba(var(--glow), 0.45);
  transition: all 0.15s; min-height: 48px; min-width: 160px;
}
.cc-cta:hover { background: var(--primary-2); transform: translateY(-1px); }
.cc-cta-exclusive {
  background: var(--primary); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 10px 22px -8px rgba(var(--glow), 0.6);
}

@media (max-width: 880px) {
  .casino-card {
    grid-template-columns: 1fr; padding: 20px;
    gap: 18px; text-align: center;
  }
  .cc-rank { text-align: left; width: auto; font-size: 16px; }
  .cc-main { grid-template-columns: 1fr; text-align: center; }
  .cc-logo { margin: 0 auto; }
  .cc-name-row, .cc-features { justify-content: center; }
  .cc-right { width: 100%; }
  .cc-cta { width: 100%; padding: 16px; font-size: 15px; min-height: 52px; }
}

/* ============== METHOD GRID ============== */
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 880px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .method-grid { grid-template-columns: 1fr; } }
.method-item {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 22px;
}
.method-num { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 10px; }
.method-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.method-desc { font-size: 14px; color: var(--ink-3); line-height: 1.6; }

/* ============== FAQ ============== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 18px 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--primary); font-size: 22px; font-weight: 300; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-content { padding: 0 20px 20px; font-size: 14.5px; color: var(--ink-3); line-height: 1.7; }
.faq-content a { color: var(--primary); text-decoration: underline; }

/* ============== ARTICLE PAGES ============== */
.article-header { padding: 50px 0 30px; background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%); border-bottom: 1px solid var(--hairline); }
.article-content { max-width: 760px; margin: 0 auto; }
.article-content > h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 5vw, 48px); letter-spacing: -0.035em; line-height: 1.05; margin: 8px 0 16px; color: var(--ink); }
.article-content > h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.4vw, 30px); letter-spacing: -0.025em; line-height: 1.15; margin: 36px 0 14px; color: var(--ink); }
.article-content > h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; margin: 24px 0 10px; color: var(--ink); }
.article-content > p { font-size: 16px; color: var(--ink-3); line-height: 1.7; margin-bottom: 16px; }
.article-content > p.lead { font-size: 18.5px; line-height: 1.55; color: var(--ink-2); margin-bottom: 20px; }
.article-content > ul, .article-content > ol { padding-left: 24px; margin-bottom: 18px; }
.article-content > ul li, .article-content > ol li { font-size: 15.5px; color: var(--ink-3); line-height: 1.7; margin-bottom: 8px; }
.article-content strong { color: var(--ink); font-weight: 700; }
.article-content > p a, .article-content > ul a, .article-content > ol a, .article-content > li a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; color: var(--mute); margin-top: 18px; }

/* ============== FOOTER ============== */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 56px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; display: inline-block; margin-bottom: 12px; }
.footer-logo .logo-accent { color: var(--accent); }
.footer p { font-size: 13.5px; line-height: 1.6; }
.footer h4 { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul a { font-size: 13.5px; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer ul a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,0.5); font-family: var(--font-mono); letter-spacing: 0.02em; }
.age-badge { display: inline-flex; align-items: center; gap: 8px; padding: 4px 10px; border: 1px solid rgba(255,255,255,0.18); border-radius: 6px; color: rgba(255,255,255,0.7); }

/* ============== STICKY CTA (mobile) ============== */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  background: var(--ink); color: #fff;
  border-radius: 14px; padding: 12px 14px;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  transform: translateY(120%); transition: transform 0.3s;
}
.sticky-cta.show { transform: translateY(0); display: flex; }
.sticky-cta-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.sticky-cta .sc-logo {
  width: 38px; height: 38px; border-radius: 8px;
  background: #fff; padding: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.sticky-cta .sc-logo img { width: 100%; height: 100%; object-fit: contain; }
.sticky-cta .sc-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sticky-cta .sc-t { font-family: var(--font-display); font-weight: 700; font-size: 13px; line-height: 1.2; }
.sticky-cta .sc-s { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }
.sticky-cta a.sc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 14px; background: var(--accent); color: var(--ink);
  border-radius: 10px; font-family: var(--font-display);
  font-size: 13.5px; font-weight: 700;
}
@media (min-width: 720px) { .sticky-cta { display: none !important; } }
.has-sticky-cta { padding-bottom: 80px; }
