/* =========================================================================
   Diridari Spins — Design System
   Austrian iGaming affiliate. Warm, honest, "local companion" identity.
   Signature device: the red–white–red ribbon (Austrian flag as a UI element).
   Mobile-first. All breakpoints are min-width.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ------------------------------------------------------------------------- */
:root {
  /* Colour — named for the Austrian/alpine world */
  --almrot:        #a5232e;  /* deep alpine red — primary, CTAs        */
  --almrot-dark:   #7e1922;  /* hover / active                         */
  --almrot-tint:   #f7e9ea;  /* soft red wash                          */
  --kreide:        #fbf9f5;  /* warm chalk white — page background     */
  --papier:        #ffffff;  /* card surface                           */
  --nocht:         #1b1a18;  /* ink — primary text                     */
  --loden:         #6c665b;  /* muted warm grey — secondary text       */
  --tann:          #1e5641;  /* forest green — trust / verified         */
  --tann-tint:     #e7f0eb;  /* green wash                             */
  --butter:        #c79a3d;  /* restrained brass — star ratings only    */
  --rand:          #e7e2d8;  /* hairline borders                       */
  --rand-stark:    #d3ccbe;  /* stronger border                        */

  /* Type */
  --font-display: "Bitter", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Scale (mobile-first; hero H1 scales up in media query) */
  --step-xs: 0.8125rem;   /* 13px */
  --step-sm: 0.9375rem;   /* 15px */
  --step-base: 1.0625rem; /* 17px */
  --step-md: 1.25rem;     /* 20px */
  --step-lg: 1.5rem;      /* 24px */
  --step-xl: 1.9375rem;   /* 31px */
  --step-2xl: 2.5rem;     /* 40px */

  /* Space + shape */
  --gutter: 1.25rem;
  --maxw: 1140px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(27, 26, 24, .06), 0 1px 3px rgba(27, 26, 24, .05);
  --shadow-md: 0 4px 14px rgba(27, 26, 24, .09);
  --shadow-lg: 0 12px 34px rgba(27, 26, 24, .14);

  --ribbon-h: 5px;        /* red-white-red ribbon thickness */
}

/* -------------------------------------------------------------------------
   2. Reset + base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--step-base);
  line-height: 1.6;
  color: var(--nocht);
  background: var(--kreide);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--almrot); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding-left: 1.15rem; }
li { margin-bottom: .4rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--nocht);
}

/* Accessibility: visible focus, skip link, reduced motion */
:focus-visible {
  outline: 3px solid var(--almrot);
  outline-offset: 2px;
  border-radius: 3px;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--nocht); color: #fff; padding: .7rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.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;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* -------------------------------------------------------------------------
   3. Layout helpers
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: 3rem; }
.section--tight { padding-block: 2rem; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: var(--step-xs);
  color: var(--almrot);
  margin-bottom: .6rem;
}
.section-head { max-width: 44ch; margin-bottom: 1.75rem; }
.section-head h2 { font-size: var(--step-xl); }
.section-head p { color: var(--loden); margin-top: .6rem; }
.lede { font-size: var(--step-md); color: var(--loden); }

/* The signature: red–white–red ribbon */
.ribbon {
  height: var(--ribbon-h);
  background: linear-gradient(
    to bottom,
    var(--almrot) 0 33.33%,
    #fff 33.33% 66.66%,
    var(--almrot) 66.66% 100%
  );
}

/* -------------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step-sm);
  line-height: 1;
  padding: .85rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background-color .12s ease, box-shadow .12s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--almrot); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--almrot-dark); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--nocht); border-color: var(--rand-stark); }
.btn--ghost:hover { border-color: var(--nocht); background: #fff; }

.btn--sm { padding: .6rem 1rem; font-size: var(--step-xs); }
.btn--block { width: 100%; }

/* -------------------------------------------------------------------------
   5. Header + navigation
   ------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--kreide); }
.site-header .ribbon { position: relative; z-index: 2; }

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: .85rem;
  border-bottom: 1px solid var(--rand);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-lg);
  color: var(--nocht);
  letter-spacing: -.02em;
  margin-right: auto;
}
.brand:hover { text-decoration: none; }
.brand b { color: var(--almrot); }
.brand .brand-dot { color: var(--almrot); }

/* Nav links: hidden behind hamburger on mobile */
.nav-links {
  list-style: none;
  padding: 0; margin: 0;
  display: none;
  gap: .25rem;
}
.nav-links a {
  display: block;
  color: var(--nocht);
  font-weight: 600;
  font-size: var(--step-sm);
  padding: .5rem .7rem;
  border-radius: 6px;
  position: relative;
}
.nav-links a:hover { background: var(--almrot-tint); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--almrot); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: .7rem; right: .7rem; bottom: .15rem;
  height: 3px; border-radius: 3px;
  background: linear-gradient(to right, var(--almrot) 0 40%, #fff 40% 60%, var(--almrot) 60% 100%);
}

/* Search */
.nav-search { position: relative; display: none; }
.nav-search input {
  font-family: var(--font-body);
  font-size: var(--step-sm);
  padding: .55rem .8rem .55rem 2.1rem;
  border: 1.5px solid var(--rand-stark);
  border-radius: 999px;
  background: #fff;
  width: 210px;
  color: var(--nocht);
}
.nav-search input::placeholder { color: var(--loden); }
.nav-search input:focus { border-color: var(--almrot); outline: none; box-shadow: 0 0 0 3px var(--almrot-tint); }
.nav-search svg { position: absolute; left: .65rem; top: 50%; transform: translateY(-50%); color: var(--loden); pointer-events: none; }

/* Hamburger */
.nav-toggle {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1.5px solid var(--rand-stark);
  border-radius: 8px;
  cursor: pointer;
  padding: 0 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--nocht); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown panel */
.mobile-panel {
  display: none;
  border-bottom: 1px solid var(--rand);
  background: var(--papier);
  box-shadow: var(--shadow-md);
}
.mobile-panel.open { display: block; }
.mobile-panel ul { list-style: none; padding: .5rem var(--gutter) .75rem; margin: 0; }
.mobile-panel a {
  display: block; padding: .8rem .2rem; font-weight: 600; color: var(--nocht);
  border-bottom: 1px solid var(--rand);
}
.mobile-panel a[aria-current="page"] { color: var(--almrot); }
.mobile-panel .nav-search { display: block; margin: .75rem var(--gutter); }
.mobile-panel .nav-search input { width: 100%; }

/* -------------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--kreide); }
.hero::before {
  /* subtle alpine ridge motif, very quiet */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 90% -10%, var(--almrot-tint) 0, transparent 55%),
    radial-gradient(90% 70% at -10% 110%, var(--tann-tint) 0, transparent 55%);
  opacity: .8;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; padding-block: 3rem 2.5rem; }
.hero h1 {
  font-size: var(--step-2xl);
  max-width: 15ch;
  margin-bottom: 1rem;
}
.hero .hero-lede { max-width: 46ch; font-size: var(--step-md); color: var(--loden); margin-bottom: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.trust-line {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem;
  font-size: var(--step-xs); font-weight: 600; color: var(--loden);
}
.trust-line .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rand-stark); }
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 26px; height: 26px; padding: 0 6px;
  border: 2px solid var(--almrot); color: var(--almrot);
  border-radius: 50%; font-weight: 800; font-size: .72rem;
}

/* -------------------------------------------------------------------------
   7. Casino comparison table (responsive: table -> cards on mobile)
   ------------------------------------------------------------------------- */
.casino-note {
  font-size: var(--step-xs); color: var(--loden);
  background: var(--tann-tint); border: 1px solid #cfe0d6;
  border-radius: var(--radius-sm); padding: .7rem .9rem; margin-bottom: 1.25rem;
}
.casino-note strong { color: var(--tann); }

.casino-table { width: 100%; border-collapse: collapse; }
.casino-table thead { display: none; } /* hidden on mobile */

.casino-table tr,
.casino-table .row {
  display: block;
  background: var(--papier);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  padding: 1.1rem 1.15rem 1.15rem;
  position: relative;
  overflow: hidden;
}
/* featured row gets the ribbon stripe on the left */
.casino-table .row--featured::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: var(--ribbon-h);
  background: linear-gradient(to bottom, var(--almrot) 0 33.33%, #fff 33.33% 66.66%, var(--almrot) 66.66% 100%);
}
.casino-table td { display: block; padding: 0; }

.c-rank {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--nocht); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  margin-bottom: .6rem;
}
.casino-table .row--featured .c-rank { background: var(--almrot); }
.c-topflag {
  display: inline-block; margin-left: .6rem; vertical-align: middle;
  font-size: var(--step-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--almrot);
}
.c-name { font-family: var(--font-display); font-size: var(--step-md); font-weight: 700; margin-bottom: .15rem; }
.c-tag { font-size: var(--step-xs); color: var(--loden); margin-bottom: .7rem; }

.c-cell-label {
  display: block; font-size: var(--step-xs); text-transform: uppercase;
  letter-spacing: .08em; color: var(--loden); font-weight: 700; margin-bottom: .15rem;
}
.c-bonus { font-weight: 600; margin-bottom: .7rem; }
.c-bonus .amount { color: var(--tann); font-weight: 700; }

.c-rating { display: flex; align-items: center; gap: .5rem; margin-bottom: .9rem; }
.stars { color: var(--butter); letter-spacing: 1px; font-size: 1rem; }
.stars .empty { color: var(--rand-stark); }
.rating-num { font-weight: 700; }
.rating-num small { color: var(--loden); font-weight: 500; }

.c-cta { display: flex; flex-direction: column; gap: .4rem; }
.c-cta .fineprint { font-size: 11px; color: var(--loden); text-align: center; }

/* -------------------------------------------------------------------------
   8. "Warum mia" feature cards
   ------------------------------------------------------------------------- */
.feature-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.feature-card {
  background: var(--papier);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.feature-card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--almrot-tint); color: var(--almrot);
  margin-bottom: .9rem;
}
.feature-card h3 { font-size: var(--step-md); margin-bottom: .4rem; }
.feature-card p { color: var(--loden); font-size: var(--step-sm); }

/* -------------------------------------------------------------------------
   9. Bands / strips / CTA sections
   ------------------------------------------------------------------------- */
.band { background: var(--nocht); color: #fff; }
.band h2 { color: #fff; }
.band p { color: #d9d5cd; }
.band a { color: #fff; text-decoration: underline; }
.band .btn--primary { background: var(--almrot); color: #fff; }

.rg-strip {
  background: var(--tann-tint);
  border-block: 1px solid #cfe0d6;
}
.rg-strip .container { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.rg-strip .rg-icon { color: var(--tann); flex: none; }
.rg-strip h3 { font-size: var(--step-md); color: var(--tann); }
.rg-strip p { color: #33564a; font-size: var(--step-sm); }

/* Simple two-column split used on content pages */
.split { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }

/* -------------------------------------------------------------------------
   10. Prose / authority + placeholder pages
   ------------------------------------------------------------------------- */
.page-hero { background: var(--papier); border-bottom: 1px solid var(--rand); }
.page-hero .container { padding-block: 2.5rem; }
.page-hero h1 { font-size: var(--step-xl); }
.page-hero p { color: var(--loden); margin-top: .5rem; max-width: 60ch; }
.breadcrumb { font-size: var(--step-xs); color: var(--loden); margin-bottom: .6rem; }
.breadcrumb a { color: var(--loden); }

.prose { max-width: 68ch; }
.prose h2 { font-size: var(--step-lg); margin-top: 2rem; margin-bottom: .6rem; }
.prose h3 { font-size: var(--step-md); margin-top: 1.4rem; margin-bottom: .4rem; }
.prose p { margin-bottom: 1rem; color: #2c2a26; }
.prose ul { margin-bottom: 1rem; }

.placeholder-note {
  border: 1px dashed var(--rand-stark);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: .9rem 1rem;
  font-size: var(--step-sm);
  color: var(--loden);
  margin: 1rem 0 1.5rem;
}
.placeholder-note strong { color: var(--nocht); }

.toc {
  background: #fff; border: 1px solid var(--rand); border-radius: var(--radius);
  padding: 1rem 1.2rem; margin-bottom: 1.5rem;
}
.toc strong { display: block; margin-bottom: .5rem; font-family: var(--font-display); }
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc a { font-size: var(--step-sm); }

/* Category tiles (games page) */
.tile-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.tile {
  background: var(--papier); border: 1px solid var(--rand); border-radius: var(--radius);
  padding: 1.1rem; box-shadow: var(--shadow-sm); text-align: left;
}
.tile:hover { box-shadow: var(--shadow-md); text-decoration: none; }
.tile .emoji { font-size: 1.6rem; }
.tile h3 { font-size: var(--step-md); margin: .5rem 0 .2rem; }
.tile p { font-size: var(--step-xs); color: var(--loden); }

/* -------------------------------------------------------------------------
   11. Footer
   ------------------------------------------------------------------------- */
.site-footer { background: var(--nocht); color: #cfcabf; margin-top: 1rem; }
.site-footer .ribbon { }
.footer-main { padding-block: 2.5rem; }
.footer-grid { display: grid; gap: 1.75rem; grid-template-columns: 1fr; }
.footer-brand .brand { color: #fff; }
.footer-brand p { font-size: var(--step-sm); color: #a8a297; margin-top: .6rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: var(--step-xs); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .7rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .45rem; }
.footer-col a { color: #cfcabf; font-size: var(--step-sm); }
.footer-col a:hover { color: #fff; }

.footer-disclaimer {
  border-top: 1px solid #333029;
  padding-block: 1.5rem;
  font-size: var(--step-xs);
  color: #9a948a;
  line-height: 1.65;
}
.footer-disclaimer .badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: .9rem; }
.footer-disclaimer .pill {
  display: inline-flex; align-items: center; gap: .35rem;
  border: 1px solid #444038; border-radius: 999px; padding: .25rem .7rem;
  font-weight: 600; color: #cfcabf;
}
.footer-disclaimer .pill--18 { border-color: var(--almrot); color: #f0c9cc; }
.footer-bottom { border-top: 1px solid #333029; padding-block: 1.1rem; font-size: var(--step-xs); color: #7f7a70; display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; justify-content: space-between; }

/* -------------------------------------------------------------------------
   12. Cookie banner
   ------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 150;
  background: var(--papier); border: 1px solid var(--rand-stark);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1.1rem; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: var(--step-sm); color: var(--nocht); margin-bottom: .9rem; }
.cookie-banner .cookie-actions { display: flex; flex-wrap: wrap; gap: .6rem; }

/* Empty-state for search */
.no-results {
  display: none;
  text-align: center; color: var(--loden);
  background: #fff; border: 1px dashed var(--rand-stark);
  border-radius: var(--radius); padding: 1.5rem;
}
.no-results.show { display: block; }

/* -------------------------------------------------------------------------
   13. Breakpoints (min-width — mobile-first)
   ------------------------------------------------------------------------- */
@media (min-width: 560px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner { left: auto; right: 1.5rem; max-width: 420px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 760px) {
  :root { --gutter: 1.75rem; }
  .section { padding-block: 4rem; }
  .hero h1 { font-size: 3.1rem; }
  .hero .container { padding-block: 4rem 3rem; }
  .split { grid-template-columns: 2fr 1fr; }
  .tile-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* Desktop nav + real table layout */
@media (min-width: 940px) {
  .nav-toggle { display: none; }
  .mobile-panel { display: none !important; }
  .nav-links { display: flex; }
  .nav-search { display: block; }

  .hero h1 { font-size: 3.4rem; }
  .feature-grid { grid-template-columns: repeat(4, 1fr); }

  /* Casino table becomes a real table */
  .casino-table { border-collapse: separate; border-spacing: 0 .75rem; }
  .casino-table thead { display: table-header-group; }
  .casino-table thead th {
    text-align: left; font-family: var(--font-body);
    font-size: var(--step-xs); text-transform: uppercase; letter-spacing: .08em;
    color: var(--loden); font-weight: 700; padding: 0 1rem .25rem;
  }
  .casino-table tbody, .casino-table tr { }
  .casino-table tr, .casino-table .row {
    display: table-row; margin: 0; box-shadow: none; border: 0; padding: 0;
    background: transparent;
  }
  .casino-table td {
    display: table-cell; vertical-align: middle;
    background: var(--papier);
    border-top: 1px solid var(--rand); border-bottom: 1px solid var(--rand);
    padding: 1rem;
  }
  .casino-table td:first-child { border-left: 1px solid var(--rand); border-radius: var(--radius) 0 0 var(--radius); }
  .casino-table td:last-child  { border-right: 1px solid var(--rand); border-radius: 0 var(--radius) var(--radius) 0; }
  .casino-table .row { box-shadow: var(--shadow-sm); }
  .casino-table .row--featured td:first-child { position: relative; }
  .casino-table .row--featured td:first-child::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--ribbon-h);
    background: linear-gradient(to bottom, var(--almrot) 0 33.33%, #fff 33.33% 66.66%, var(--almrot) 66.66% 100%);
    border-radius: var(--radius) 0 0 var(--radius);
  }
  .c-rank { margin-bottom: 0; }
  .c-cell-label { display: none; }         /* labels only needed in mobile card mode */
  .c-bonus, .c-tag { margin-bottom: 0; }
  .c-rating { margin-bottom: 0; }
  .c-cta { min-width: 150px; }
}

@media (min-width: 1040px) {
  .hero h1 { font-size: 3.8rem; }
}

/* =========================================================================
   14. Casino review pages (reusable across every single-casino review)
   ========================================================================= */

/* Layout: content + sticky sidebar on wide screens */
.review-layout { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1000px) {
  .review-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 2.5rem; }
  .review-aside { position: sticky; top: 90px; }
}

/* Verdict / score hero card */
.verdict-card {
  background: var(--papier);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.verdict-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--ribbon-h);
  background: linear-gradient(to bottom, var(--almrot) 0 33.33%, #fff 33.33% 66.66%, var(--almrot) 66.66% 100%);
}
.verdict-top { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; }
.score-ring {
  --pct: 94;
  flex: none;
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  background:
    radial-gradient(closest-side, #fff 78%, transparent 79% 100%),
    conic-gradient(var(--tann) calc(var(--pct) * 1%), var(--rand) 0);
  box-shadow: var(--shadow-sm);
}
.score-ring b { font-family: var(--font-display); font-size: 1.45rem; color: var(--nocht); line-height: 1; }
.score-ring b small { display: block; font-size: .62rem; color: var(--loden); font-weight: 600; letter-spacing: .06em; text-align: center; }
.verdict-headline { flex: 1; min-width: 200px; }
.verdict-headline .stars { font-size: 1.15rem; }
.verdict-headline h2 { font-size: var(--step-lg); margin: .2rem 0 .15rem; }
.verdict-headline p { font-size: var(--step-xs); color: var(--loden); }
.verdict-card .btn { margin-top: 1.1rem; }
.verdict-card .fineprint { display: block; text-align: center; font-size: 11px; color: var(--loden); margin-top: .45rem; }

/* Chips / tag rows (providers, categories, currencies) */
.chip-row { display: flex; flex-wrap: wrap; gap: .4rem; margin: .5rem 0 0; padding: 0; list-style: none; }
.chip-row li { margin: 0; }
.chip {
  display: inline-block; font-size: var(--step-xs); font-weight: 600;
  color: var(--nocht); background: var(--kreide);
  border: 1px solid var(--rand-stark); border-radius: 999px; padding: .28rem .7rem;
}
.chip--green { color: var(--tann); background: var(--tann-tint); border-color: #cfe0d6; }
.chip--red { color: var(--almrot); background: var(--almrot-tint); border-color: #edd3d5; }

/* Quick facts definition table */
.facts {
  width: 100%; border-collapse: collapse;
  background: var(--papier); border: 1px solid var(--rand);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.facts th, .facts td { text-align: left; padding: .7rem .9rem; font-size: var(--step-sm); vertical-align: top; }
.facts th { width: 42%; color: var(--loden); font-family: var(--font-body); font-weight: 700; background: var(--kreide); }
.facts tr + tr th, .facts tr + tr td { border-top: 1px solid var(--rand); }

/* Rating breakdown bars */
.rating-bars { display: grid; gap: .8rem; margin: 1rem 0 0; }
.bar-row { display: grid; grid-template-columns: 1fr auto; gap: .2rem .8rem; align-items: center; }
.bar-row .bar-label { font-size: var(--step-sm); font-weight: 600; }
.bar-row .bar-score { font-weight: 700; font-family: var(--font-display); }
.bar-track { grid-column: 1 / -1; height: 8px; border-radius: 999px; background: var(--rand); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(to right, var(--tann), #2f7a5c); }

/* Pros & cons */
.proscons { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 1rem 0; }
@media (min-width: 620px) { .proscons { grid-template-columns: 1fr 1fr; } }
.pc-card { border: 1px solid var(--rand); border-radius: var(--radius); padding: 1.1rem 1.2rem; background: var(--papier); box-shadow: var(--shadow-sm); }
.pc-card h3 { font-size: var(--step-md); margin-bottom: .6rem; display: flex; align-items: center; gap: .45rem; }
.pc-card ul { list-style: none; padding: 0; margin: 0; }
.pc-card li { position: relative; padding-left: 1.5rem; margin-bottom: .5rem; font-size: var(--step-sm); color: #2c2a26; }
.pc-card li::before { position: absolute; left: 0; top: .05rem; font-weight: 800; }
.pc-card--pro { border-top: 3px solid var(--tann); }
.pc-card--pro h3 { color: var(--tann); }
.pc-card--pro li::before { content: "✓"; color: var(--tann); }
.pc-card--con { border-top: 3px solid var(--almrot); }
.pc-card--con h3 { color: var(--almrot); }
.pc-card--con li::before { content: "–"; color: var(--almrot); }

/* Bonus deposit steps */
.bonus-steps { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 1rem 0; counter-reset: step; }
@media (min-width: 620px) { .bonus-steps { grid-template-columns: 1fr 1fr; } }
.bonus-step {
  position: relative; background: var(--papier); border: 1px solid var(--rand);
  border-radius: var(--radius); padding: 1.1rem 1.2rem 1.1rem 1.2rem; box-shadow: var(--shadow-sm);
}
.bonus-step .step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px; background: var(--almrot); color: #fff;
  font-family: var(--font-display); font-weight: 700; margin-bottom: .5rem;
}
.bonus-step h3 { font-size: var(--step-md); margin-bottom: .2rem; }
.bonus-step .big { color: var(--tann); font-weight: 700; font-family: var(--font-display); font-size: var(--step-md); }
.bonus-step ul { margin: .5rem 0 0; padding-left: 1.1rem; }
.bonus-step li { font-size: var(--step-xs); color: var(--loden); }

/* Info cards (payments, support etc.) */
.info-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 1rem 0; }
@media (min-width: 620px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-card { background: var(--papier); border: 1px solid var(--rand); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: var(--step-md); margin-bottom: .5rem; }
.info-card p, .info-card li { font-size: var(--step-sm); color: #2c2a26; }
.info-card ul { margin: 0; padding-left: 1.15rem; }

/* Inline CTA band inside prose */
.cta-inline {
  background: var(--almrot-tint); border: 1px solid #edd3d5; border-radius: var(--radius);
  padding: 1.3rem 1.4rem; margin: 1.5rem 0; text-align: center;
}
.cta-inline h3 { font-size: var(--step-lg); margin-bottom: .3rem; }
.cta-inline p { color: var(--loden); font-size: var(--step-sm); margin-bottom: .9rem; }
.cta-inline .fineprint { display: block; font-size: 11px; color: var(--loden); margin-top: .5rem; }

/* FAQ (native <details>, no JS) */
.faq { display: grid; gap: .6rem; margin: 1rem 0; }
.faq details {
  background: var(--papier); border: 1px solid var(--rand); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: .95rem 1.1rem; font-weight: 700;
  font-family: var(--font-display); font-size: var(--step-base);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--almrot); font-size: 1.4rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--rand); }
.faq .faq-body { padding: .5rem 1.1rem 1.1rem; }
.faq .faq-body p { color: #2c2a26; font-size: var(--step-sm); }

/* Sticky mobile CTA bar */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: var(--papier); border-top: 1px solid var(--rand-stark);
  box-shadow: 0 -6px 20px rgba(27,26,24,.12);
  padding: .6rem var(--gutter); display: flex; align-items: center; gap: .8rem;
}
.sticky-cta .sc-info { flex: 1; min-width: 0; }
.sticky-cta .sc-name { font-weight: 700; font-family: var(--font-display); font-size: var(--step-sm); }
.sticky-cta .sc-bonus { font-size: var(--step-xs); color: var(--tann); font-weight: 600; }
.sticky-cta .btn { flex: none; }
@media (min-width: 1000px) { .sticky-cta { display: none; } }

/* Verdict callout at the end */
.final-verdict {
  background: var(--nocht); color: #e9e5dc; border-radius: var(--radius);
  padding: 1.6rem; margin: 1.5rem 0;
}
.final-verdict h2 { color: #fff; }
.final-verdict p { color: #cfcabf; font-size: var(--step-sm); margin-top: .5rem; }
.final-verdict .btn { margin-top: 1rem; }

/* =========================================================================
   15. Brand logos (review pages + comparison tables)
   ========================================================================= */
.brand-plate {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .55rem 1rem; border-radius: 10px;
  background: #fff; border: 1px solid var(--rand);
  margin-bottom: 1rem; max-width: 240px;
}
.brand-plate img { height: 46px; width: auto; display: block; }
.brand-plate--dark { background: var(--nocht); border-color: #333029; }

.c-logo-plate {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--rand); border-radius: 6px;
  padding: 3px 8px; margin-bottom: .45rem;
}
.c-logo-plate--dark { background: var(--nocht); border-color: #333029; }
.c-logo-plate img { height: 22px; width: auto; display: block; }

/* =========================================================================
   16. Bonus calculator (interactive, reusable via data attributes)
   ========================================================================= */
.calc {
  background: var(--papier); border: 1px solid var(--rand);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 1.4rem; margin: 1.5rem 0; position: relative; overflow: hidden;
}
.calc::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--ribbon-h);
  background: linear-gradient(to bottom, var(--almrot) 0 33.33%, #fff 33.33% 66.66%, var(--almrot) 66.66% 100%);
}
.calc-head h3 { font-size: var(--step-lg); margin-bottom: .2rem; }
.calc-head p { font-size: var(--step-sm); color: var(--loden); }
.calc-field { margin: 1.1rem 0 .3rem; }
.calc-field label { display: block; font-weight: 700; font-size: var(--step-sm); margin-bottom: .5rem; }
.calc-input-row { display: flex; align-items: center; gap: .6rem; }
.calc-input-row .calc-cur {
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-md); color: var(--loden);
}
.calc-input-row input[type="number"] {
  font-family: var(--font-body); font-size: var(--step-md); font-weight: 700;
  padding: .55rem .8rem; border: 1.5px solid var(--rand-stark); border-radius: var(--radius-sm);
  width: 140px; color: var(--nocht); background: #fff;
}
.calc-input-row input[type="number"]:focus { border-color: var(--almrot); outline: none; box-shadow: 0 0 0 3px var(--almrot-tint); }
input[type="range"].calc-range { width: 100%; margin-top: .8rem; accent-color: var(--almrot); }
.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.2rem; }
@media (min-width: 620px) { .calc-results { grid-template-columns: repeat(4, 1fr); } }
.calc-stat {
  background: var(--kreide); border: 1px solid var(--rand); border-radius: var(--radius-sm);
  padding: .8rem .9rem;
}
.calc-stat span {
  display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--loden); font-weight: 700; margin-bottom: .25rem;
}
.calc-stat b { font-family: var(--font-display); font-size: var(--step-lg); color: var(--nocht); line-height: 1.1; }
.calc-stat--accent { background: var(--tann-tint); border-color: #cfe0d6; }
.calc-stat--accent b { color: var(--tann); }
.calc-note { font-size: var(--step-xs); color: var(--loden); margin-top: .9rem; }
.calc-note strong { color: var(--nocht); }
.calc-warn { color: var(--almrot); font-weight: 600; margin-top: .5rem; font-size: var(--step-xs); }

/* =========================================================================
   17. Homepage — conversion sections
   ========================================================================= */
/* Hero layout with spotlight card */
.hero-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 2.5rem; } }

.hero-spotlight {
  background: var(--papier); border: 1px solid var(--rand); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.4rem; position: relative; overflow: hidden;
}
.hero-spotlight::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: var(--ribbon-h);
  background: linear-gradient(to right, var(--almrot) 0 33.33%, #fff 33.33% 66.66%, var(--almrot) 66.66% 100%);
}
.hero-spotlight .flag {
  display: inline-block; font-size: var(--step-xs); font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: var(--almrot); background: var(--almrot-tint);
  border: 1px solid #edd3d5; border-radius: 999px; padding: .25rem .7rem; margin-bottom: .9rem;
}
.hero-spotlight .sl-logo { display: inline-flex; background: #fff; border: 1px solid var(--rand); border-radius: 8px; padding: .4rem .8rem; margin-bottom: .8rem; }
.hero-spotlight .sl-logo--dark { background: var(--nocht); border-color: #333029; }
.hero-spotlight .sl-logo img { height: 30px; width: auto; display: block; }
.hero-spotlight .sl-bonus { font-family: var(--font-display); font-size: var(--step-xl); color: var(--tann); line-height: 1.1; margin-bottom: .2rem; }
.hero-spotlight .sl-sub { font-size: var(--step-sm); color: var(--loden); margin-bottom: .9rem; }
.hero-spotlight .sl-rate { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.hero-spotlight .sl-rate .stars { color: var(--butter); font-size: 1.05rem; }
.hero-spotlight .sl-rate b { font-weight: 700; }
.hero-spotlight .fineprint { display: block; text-align: center; font-size: 11px; color: var(--loden); margin-top: .5rem; }

/* USP / trust bar */
.usp-bar { background: var(--nocht); }
.usp-bar .container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px 0; }
@media (min-width: 760px) { .usp-bar .container { grid-template-columns: repeat(4, 1fr); } }
.usp { display: flex; align-items: center; gap: .7rem; padding: 1.1rem .5rem; color: #e9e5dc; }
.usp svg { color: var(--butter); flex: none; }
.usp b { display: block; font-family: var(--font-display); font-size: var(--step-md); color: #fff; line-height: 1.1; }
.usp span { font-size: var(--step-xs); color: #a8a297; }

/* Best-for category cards */
.bestfor-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .bestfor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .bestfor-grid { grid-template-columns: repeat(3, 1fr); } }
.bestfor-card {
  display: flex; flex-direction: column; gap: .5rem;
  background: var(--papier); border: 1px solid var(--rand); border-radius: var(--radius);
  padding: 1.2rem; box-shadow: var(--shadow-sm); transition: box-shadow .12s ease, transform .12s ease;
}
.bestfor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.bestfor-card .bf-label { font-size: var(--step-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--almrot); }
.bestfor-card .bf-name { font-family: var(--font-display); font-size: var(--step-md); font-weight: 700; color: var(--nocht); }
.bestfor-card .bf-desc { font-size: var(--step-sm); color: var(--loden); flex: 1; }
.bestfor-card .bf-go { font-size: var(--step-sm); font-weight: 700; color: var(--almrot); }

/* Latest review cards */
.rev-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .rev-grid { grid-template-columns: repeat(3, 1fr); } }
.rev-card {
  display: flex; flex-direction: column;
  background: var(--papier); border: 1px solid var(--rand); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.rev-card .rev-top { display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding: 1rem 1.1rem; border-bottom: 1px solid var(--rand); }
.rev-card .rev-logo { display: inline-flex; background: #fff; border: 1px solid var(--rand); border-radius: 7px; padding: .35rem .7rem; }
.rev-card .rev-logo--dark { background: var(--nocht); border-color: #333029; }
.rev-card .rev-logo img { height: 26px; width: auto; display: block; }
.rev-card .rev-score { text-align: right; flex: none; }
.rev-card .rev-score b { font-family: var(--font-display); font-size: var(--step-lg); color: var(--nocht); line-height: 1; }
.rev-card .rev-score .stars { display: block; color: var(--butter); font-size: .85rem; }
.rev-card .rev-body { padding: 1.1rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.rev-card .rev-bonus { font-size: var(--step-sm); }
.rev-card .rev-bonus b { color: var(--tann); }
.rev-card .rev-tags { font-size: var(--step-xs); color: var(--loden); flex: 1; }
.rev-card .rev-cta { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .3rem; }

/* =========================================================================
   18. Mega-menu ("Online Casinos" dropdown)
   ========================================================================= */
.nav-mega { position: relative; }
.nav-mega-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--font-body); font-weight: 600; font-size: var(--step-sm);
  color: var(--nocht); background: transparent; border: 0; cursor: pointer;
  padding: .5rem .7rem; border-radius: 6px;
}
.nav-mega-btn:hover { background: var(--almrot-tint); }
.nav-mega-btn svg { transition: transform .15s ease; }
.nav-mega:hover .nav-mega-btn svg,
.nav-mega.open .nav-mega-btn svg { transform: rotate(180deg); }
.mega-panel {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 120;
  display: none; grid-template-columns: repeat(3, minmax(180px, 1fr)); gap: 1.2rem;
  background: var(--papier); border: 1px solid var(--rand); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.3rem 1.4rem; width: max-content; max-width: 640px;
}
.mega-panel::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: var(--ribbon-h);
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(to right, var(--almrot) 0 33.33%, #fff 33.33% 66.66%, var(--almrot) 66.66% 100%);
}
.nav-mega:hover .mega-panel,
.nav-mega:focus-within .mega-panel,
.nav-mega.open .mega-panel { display: grid; }
.mega-col h4 {
  font-family: var(--font-body); font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--almrot); margin-bottom: .5rem; padding-bottom: .4rem; border-bottom: 1px solid var(--rand);
}
.mega-col a {
  display: block; color: var(--nocht); font-size: var(--step-sm); font-weight: 500;
  padding: .35rem 0; border-radius: 4px;
}
.mega-col a:hover { color: var(--almrot); text-decoration: none; padding-left: .3rem; }
/* Mobile grouped list inside the panel */
.m-group { margin-top: .4rem; border-top: 1px solid var(--rand); padding-top: .5rem; }
.m-group > span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--almrot); font-weight: 700; padding: .5rem .2rem .2rem; }
.m-group a { display: block; padding: .55rem .2rem; font-weight: 600; color: var(--nocht); border-bottom: 1px solid var(--rand); }
@media (min-width: 940px) { .m-group { display: none; } }

/* =========================================================================
   19. Category / silo pages
   ========================================================================= */
.cat-intro { max-width: 74ch; }
.cat-intro p { margin-bottom: 1rem; color: #2c2a26; }

/* Ranked casino list */
.rank-list { display: grid; gap: 1.1rem; margin: 1.5rem 0; }
.rank-item {
  position: relative; background: var(--papier); border: 1px solid var(--rand);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.3rem;
  display: grid; gap: 1rem; grid-template-columns: 1fr;
}
@media (min-width: 760px) { .rank-item { grid-template-columns: 200px 1fr auto; align-items: center; } }
.rank-item--top { border-color: var(--almrot); box-shadow: var(--shadow-md); }
.rank-item .rk-head { display: flex; align-items: center; gap: .8rem; }
.rank-item .rk {
  flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--nocht); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
}
.rank-item--top .rk { background: var(--almrot); }
.rank-item .rk-logo { display: inline-flex; background: #fff; border: 1px solid var(--rand); border-radius: 7px; padding: .35rem .7rem; }
.rank-item .rk-logo--dark { background: var(--nocht); border-color: #333029; }
.rank-item .rk-logo img { height: 26px; width: auto; display: block; }
.rank-item .rk-mid h3 { font-size: var(--step-md); margin-bottom: .2rem; }
.rank-item .rk-mid .rk-rate { display: flex; align-items: center; gap: .4rem; margin-bottom: .4rem; }
.rank-item .rk-mid .rk-rate .stars { color: var(--butter); font-size: .95rem; }
.rank-item .rk-mid .rk-rate b { font-weight: 700; }
.rank-item .rk-mid p { font-size: var(--step-sm); color: #2c2a26; }
.rank-item .rk-bonus { font-size: var(--step-sm); margin-top: .3rem; }
.rank-item .rk-bonus b { color: var(--tann); }
.rank-item .rk-cta { display: flex; flex-direction: column; gap: .45rem; min-width: 160px; }
.rank-item .rk-cta .fineprint { font-size: 11px; color: var(--loden); text-align: center; }

/* Category badge */
.cat-badge {
  position: absolute; top: -11px; left: 1.3rem;
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  color: #fff; background: var(--almrot); border-radius: 999px; padding: .28rem .8rem;
}
.cat-badge--green { background: var(--tann); }
.cat-badge--gold { background: var(--butter); color: #3a2c05; }

/* Tool / recommendation callout */
.tool-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--tann-tint); border: 1px solid #cfe0d6; border-radius: var(--radius);
  padding: 1.2rem 1.3rem; margin: 1.25rem 0;
}
.tool-card .tc-ic { flex: none; width: 44px; height: 44px; border-radius: 10px; background: #fff; color: var(--tann); display: grid; place-items: center; }
.tool-card h3 { font-size: var(--step-md); color: var(--tann); margin-bottom: .2rem; }
.tool-card p { font-size: var(--step-sm); color: #33564a; }

/* Pill row (feature chips at top of silo pages) */
.silo-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 0; }
.silo-pills .pill2 { font-size: var(--step-xs); font-weight: 600; color: var(--nocht); background: var(--papier); border: 1px solid var(--rand-stark); border-radius: 999px; padding: .3rem .8rem; }

/* =========================================================================
   20. Enhanced ranked casino cards (category pages) — conversion redesign
   ========================================================================= */
.rank-item { grid-template-columns: 1fr !important; gap: 1.1rem; padding: 1.4rem 1.3rem 1.3rem; }
@media (min-width: 860px) {
  .rank-item { grid-template-columns: 208px 1fr 210px !important; align-items: stretch; }
}
.rank-item .cat-badge { top: -12px; box-shadow: var(--shadow-sm); }

/* Left column */
.rk-left { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
@media (min-width: 860px) { .rk-left { border-right: 1px solid var(--rand); padding-right: 1.1rem; } }
.rk-left .rk-head { margin-bottom: .1rem; }
.rk-scorebox { display: flex; align-items: center; gap: .6rem; }
.rk-scorebox .rk-score { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--tann); line-height: 1; }
.rk-scorebox .rk-score small { font-size: .9rem; color: var(--loden); font-weight: 600; }
.rk-scorebox .rk-stars { display: block; color: var(--butter); font-size: .95rem; line-height: 1; }
.rk-scorebox .rk-votes { display: block; font-size: 11px; color: var(--loden); margin-top: .1rem; }
.rk-facts { list-style: none; padding: 0; margin: .3rem 0 0; display: grid; gap: .35rem; width: 100%; }
.rk-facts li { font-size: var(--step-xs); color: #2c2a26; display: flex; align-items: center; gap: .45rem; }
.rk-facts li svg { color: var(--almrot); flex: none; }
.rk-facts li b { font-weight: 700; }

/* Middle column */
.rk-mid { display: flex; flex-direction: column; }
.rk-mid h3 { font-size: var(--step-lg); margin-bottom: .5rem; }
.rk-bonusbox { background: var(--tann-tint); border: 1px solid #cfe0d6; border-radius: var(--radius-sm); padding: .55rem .8rem; margin-bottom: .7rem; }
.rk-bonusbox .rk-bonus-label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: var(--tann); font-weight: 800; }
.rk-bonusbox b { font-family: var(--font-display); font-size: var(--step-md); color: var(--nocht); }
.rk-why { font-size: var(--step-sm); color: #2c2a26; margin-bottom: .7rem; }
.rk-why strong { color: var(--almrot); }
.rk-highlights { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.rk-highlights li { position: relative; padding-left: 1.5rem; font-size: var(--step-sm); color: #2c2a26; }
.rk-highlights li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--tann); font-weight: 800; }

/* Right column (CTA) */
.rank-item .rk-cta { justify-content: center; gap: .5rem; }
@media (min-width: 860px) { .rank-item .rk-cta { border-left: 1px solid var(--rand); padding-left: 1.1rem; } }
.rank-item .rk-cta .btn { width: 100%; }
.rank-item .rk-cta .rk-cta-note { font-size: 11px; color: var(--tann); font-weight: 700; text-align: center; }
.rank-item .rk-cta .fineprint { font-size: 10px; color: var(--loden); text-align: center; }

/* =========================================================================
   21. Responsive polish & fixes
   ========================================================================= */
/* Keep the mega-menu panel on-screen (open toward the left edge of its item) */
.mega-panel { left: auto; right: 0; max-width: min(560px, 92vw); }
/* Nav is light (3 dropdowns) — search shows on all desktop widths */
/* Interactive related-topic pills */
.silo-pills a.pill2 { transition: border-color .12s ease, color .12s ease; }
.silo-pills a.pill2:hover { border-color: var(--almrot); color: var(--almrot); text-decoration: none; }
/* Reading column: comfortable, left-aligned prose inside the container */
.section > .container > .prose { margin-inline: 0; }
/* Category CTA band buttons keep full width on mobile */
.band .split .btn { width: 100%; }
/* Ranked card: tighten spacing on very small screens */
@media (max-width: 460px) {
  .rank-item { padding: 1.3rem 1rem 1.1rem; }
  .rk-scorebox .rk-score { font-size: 1.7rem; }
  .cat-badge { left: 1rem; }
}
                                                                                              
/* =========================================================================
   22. Banking mega-menu (wider, 6 groups) + payment page bits
   ========================================================================= */
.mega-panel--pay { max-width: min(720px, 92vw); grid-template-columns: repeat(3, minmax(150px, 1fr)); }
.mega-panel--pay .mega-col a { padding: .28rem 0; }
.mega-foot { grid-column: 1 / -1; border-top: 1px solid var(--rand); padding-top: .6rem; margin-top: .2rem; }
.mega-foot a { font-weight: 700; color: var(--almrot); font-size: var(--step-sm); }
/* Payment method chips (hub + method pages) */
.pay-tiles { display: grid; gap: .6rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 620px) { .pay-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 940px) { .pay-tiles { grid-template-columns: repeat(4, 1fr); } }
.pay-tile { display: block; background: var(--papier); border: 1px solid var(--rand); border-radius: var(--radius-sm); padding: .7rem .9rem; box-shadow: var(--shadow-sm); font-weight: 600; font-size: var(--step-sm); color: var(--nocht); transition: border-color .12s ease, box-shadow .12s ease; }
.pay-tile:hover { border-color: var(--almrot); box-shadow: var(--shadow-md); text-decoration: none; color: var(--almrot); }
.pay-group-h { font-family: var(--font-display); font-size: var(--step-lg); margin: 1.6rem 0 .8rem; }

/* Global check-list (used on payment & guide pages) */
.check-list { list-style: none; padding: 0; margin: 1rem 0; }
.check-list li { position: relative; padding-left: 1.7rem; margin-bottom: .55rem; font-size: var(--step-sm); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--tann); font-weight: 800; }

/* Mega-panel: never taller than viewport on short screens */
.mega-panel { max-height: calc(100vh - 90px); overflow-y: auto; }

/* ===== Homepage authority & conversion add-ons ===== */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin: 0; padding: 1.4rem 0;
}
.stat-strip .stat { text-align: center; padding: .2rem .4rem; }
.stat-strip .stat-num {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 1.1rem + 2.2vw, 2.6rem); color: var(--tann); line-height: 1;
}
.stat-strip .stat-label {
  display: block; margin-top: .4rem; font-size: var(--step-xs);
  color: var(--loden); font-weight: 600; line-height: 1.3;
}
.stat-strip .stat + .stat { border-left: 1px solid var(--rand); }
@media (max-width: 640px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 1.1rem .4rem; }
  .stat-strip .stat:nth-child(3) { border-left: 0; }
}

/* Byline / freshness meta */
.byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem;
  font-size: var(--step-xs); color: var(--loden); font-weight: 600;
  margin: .2rem 0 1rem;
}
.byline .by-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rand-stark); display: inline-block; }
.byline b { color: var(--nocht); }
.byline .by-check { color: var(--green, #2f7d4f); }

/* Editorial authority card */
.author-box {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem 1.3rem;
  align-items: start; background: var(--papier); border: 1px solid var(--rand);
  border-radius: var(--radius); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
}
.author-box .ab-avatar {
  width: 58px; height: 58px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--tann); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
}
.author-box h3 { margin: 0 0 .1rem; font-size: var(--step-md); }
.author-box .ab-role { font-size: var(--step-xs); color: var(--tann); font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
.author-box p { color: var(--loden); font-size: var(--step-sm); margin: .5rem 0 .8rem; }
.author-box .ab-meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: var(--step-xs); color: var(--loden); font-weight: 600; }
.author-box .ab-meta a { color: var(--tann); }
@media (max-width: 560px) {
  .author-box { grid-template-columns: 1fr; }
  .author-box .ab-avatar { width: 50px; height: 50px; font-size: 1.15rem; }
}

/* 3-step start guide */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; counter-reset: step; }
.steps .step {
  position: relative; background: #fff; border: 1px solid var(--rand);
  border-radius: var(--radius); padding: 1.6rem 1.4rem 1.4rem; box-shadow: var(--shadow-sm);
}
.steps .step-num {
  position: absolute; top: -18px; left: 1.4rem;
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--tann); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}
.steps .step h3 { margin: .4rem 0 .35rem; font-size: var(--step-md); }
.steps .step p { color: var(--loden); font-size: var(--step-sm); margin: 0; }
.steps .step .step-tip { display: block; margin-top: .6rem; font-size: var(--step-xs); color: var(--tann); font-weight: 600; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ===== Homepage pillar: casino profiles & long-form ===== */
.prof-list { display: grid; gap: 1.1rem; }
.prof {
  background: #fff; border: 1px solid var(--rand); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm);
}
.prof-head { display: flex; align-items: center; gap: .9rem; margin-bottom: .5rem; }
.prof-rank {
  flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--tann); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
}
.prof-head h3 { margin: 0; font-size: var(--step-md); line-height: 1.15; }
.prof-tag { font-size: var(--step-xs); color: var(--tann); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.prof p { color: #2c2a26; font-size: var(--step-sm); margin: 0 0 1rem; }
.prof-cta { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; }
/* long-form readability in pillar sections */
#boni h3, #zahlung h3, #spielarten h3, #sicherheit h3 {
  font-family: var(--font-display); font-size: var(--step-md); margin: 1.4rem 0 .4rem; color: var(--nocht);
}
#boni p, #zahlung p, #spielarten p, #sicherheit p,
.container > p { font-size: var(--step-base); }

/* ===== Conversion elements ===== */
.hero-micro { display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; margin: .9rem 0 0; font-size: var(--step-xs); color: var(--loden); font-weight: 600; }
.hero-micro span { white-space: nowrap; }

.deal-ribbon-wrap { padding: 1rem 0 .2rem; }
.deal-ribbon {
  display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
  background: linear-gradient(90deg, #fff7e6, #ffeccb);
  border: 1px solid #e6c583; border-radius: var(--radius);
  padding: .75rem 1rem; box-shadow: var(--shadow-sm);
}
.deal-ribbon .dr-badge {
  flex: none; background: var(--almrot); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: var(--step-xs);
  letter-spacing: .05em; padding: .3rem .6rem; border-radius: 6px;
}
.deal-ribbon .dr-text { flex: 1; min-width: 210px; margin: 0; font-size: var(--step-sm); color: #4a3a15; }
.deal-ribbon .dr-text strong { color: var(--nocht); }
.deal-ribbon .btn { flex: none; }
@media (max-width: 560px) { .deal-ribbon { justify-content: center; text-align: center; } .deal-ribbon .btn { width: 100%; } }

.band-reassure { margin-top: .7rem; font-size: var(--step-xs); font-weight: 600; opacity: .9; }
