/* Ethereum Casino DE – hell, mobile-first (Basis = schmale Viewports, min-width für größer) */
:root {
  --bg: #f4f6f9;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-hover: #eef1f6;
  --border: #e1e6ef;
  --border-strong: #c8d0e0;
  --text: #171a21;
  --muted: #4b5568;
  --muted-soft: #6b7280;
  --accent: #3d4ab8;
  --accent-hover: #323da0;
  --accent-soft: rgba(61, 74, 184, 0.1);
  --accent-glow: rgba(61, 74, 184, 0.18);
  --success: #047857;
  --warning: #b45309;
  --danger: #b91c1c;
  --radius: 14px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 58rem;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(ellipse 100% 60% at 50% -15%, rgba(61, 74, 184, 0.09), transparent 50%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(4, 120, 87, 0.05), transparent 42%);
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__inner {
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .site-header__inner {
    padding: 0.85rem 1.5rem;
    gap: 1rem;
  }
}

.logo {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #5b67d6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.nav a:hover {
  background: var(--accent-soft);
  color: var(--text);
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
}

.nav__sep {
  width: 1px;
  height: 1rem;
  background: var(--border);
  margin: 0 0.15rem;
}

main {
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  padding: 1.25rem 1rem 3rem;
}

@media (min-width: 640px) {
  main {
    padding: 1.75rem 1.25rem 3.5rem;
  }
}

@media (min-width: 900px) {
  main {
    padding: 2rem 1.5rem 4rem;
  }
}

/* Homepage: label + H1 + content-width hero image */
.page-intro {
  margin-bottom: 1.75rem;
}

.page-intro .hero__tested {
  margin-bottom: 0.35rem;
}

.page-intro h1 {
  margin-bottom: 1.25rem;
}

.page-intro__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(23, 26, 33, 0.08), 0 2px 8px rgba(23, 26, 33, 0.04);
}

.page-intro__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2rem 0 0.85rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

@media (min-width: 640px) {
  h2 {
    margin: 2.75rem 0 1rem;
  }
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.75rem 0 0.5rem;
  color: var(--text);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

p strong,
li strong {
  color: var(--text);
  font-weight: 600;
}

.lead {
  font-size: clamp(1.06rem, 2.1vw, 1.22rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.72;
  letter-spacing: -0.018em;
  max-width: 62ch;
}

.hero .lead {
  text-wrap: balance;
}

.lead--sub {
  margin-top: 1rem;
  padding: 1rem 1.2rem 1.1rem;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
  letter-spacing: -0.01em;
  background: linear-gradient(165deg, rgba(61, 74, 184, 0.07) 0%, rgba(255, 255, 255, 0.55) 100%);
  border: 1px solid rgba(225, 230, 239, 0.95);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.hero__content .lead + .lead--sub {
  margin-top: 1.125rem;
}

/* Ranking page: lead block — card stack, less “wall of text” */
.hero--ranking-intro .lead-stack {
  padding: 1.2rem 1.35rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 14px rgba(23, 26, 33, 0.05);
}

.hero--ranking-intro .lead-stack__lead {
  max-width: none;
  margin: 0;
}

.hero--ranking-intro .lead-stack__lead:first-child {
  font-weight: 500;
  color: var(--text);
}

.hero--ranking-intro .lead-stack__lead strong {
  font-weight: 600;
  color: var(--text);
}

.hero--ranking-intro .lead-stack__lead + .lead-stack__lead {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-weight: 400;
  color: var(--muted);
}

.hero--ranking-intro .lead-stack + .lead--sub {
  margin-top: 1.15rem;
}

.stand-hint {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.stand-hint--flush {
  margin-top: 0;
}

.note-footnote {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.list-tight {
  margin-bottom: 0;
}

.page-meta {
  font-size: 0.88rem;
  color: var(--muted-soft);
  margin: -0.5rem 0 1.25rem;
}

.page-meta time {
  font-weight: 600;
  color: var(--muted);
}

.trust-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 12px rgba(23, 26, 33, 0.04);
}

.trust-block h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

.trust-block--accent {
  border-left: 4px solid var(--accent);
}

.trust-block--critical {
  border-left: 4px solid #c2410c;
  background: linear-gradient(135deg, #fff7ed 0%, var(--surface) 48%);
}

.hero__tested {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.expert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
}

.expert-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
}

.expert-flow__arrow {
  color: var(--accent);
  font-weight: 700;
}

.expert-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
}

.help-links {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.help-links li {
  margin-bottom: 0.45rem;
}

.case-study {
  margin: 0;
}

.case-study li {
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.personal-pick {
  background: linear-gradient(135deg, var(--accent-soft), transparent 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  margin: 1.5rem 0;
}

.personal-pick h2 {
  margin-top: 0;
}

.h2-compact {
  font-size: 1.2rem;
  line-height: 1.35;
}

.h3-like {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.trust-block--tight-col {
  margin-bottom: 0;
}

.bonus-vs-row {
  margin: 1rem 0 1.25rem;
}

.bonus-vs-row .trust-block {
  margin-top: 0;
  margin-bottom: 0;
}

.meta-contact {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.meta-contact a {
  font-weight: 600;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted-soft);
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs span[aria-current="page"] {
  color: var(--text);
}

.hero {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }

  .hero--single {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.hero__content {
  min-width: 0;
}

.hero--single .hero__content {
  width: 100%;
  max-width: 100%;
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(61, 74, 184, 0.12), transparent 65%);
  opacity: 1;
  z-index: 0;
}

.screen-shot {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(23, 26, 33, 0.08), 0 2px 8px rgba(23, 26, 33, 0.04);
}

.screen-shot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.screen-shot__caption {
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  color: var(--muted-soft);
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.inline-shot {
  margin: 1.75rem 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

.chip--accent {
  border-color: rgba(61, 74, 184, 0.28);
  color: var(--text);
  background: var(--accent-soft);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 2rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.stat-card__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-soft);
  margin-bottom: 0.35rem;
}

.stat-card__value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.card:hover {
  border-color: var(--border-strong);
}

.card h3 {
  margin-top: 0;
}

.meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.casino-grid {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 640px) {
  .casino-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.casino-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #5b67d6);
  opacity: 0.9;
}

.casino-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.casino-card__logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0f12;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  object-fit: contain;
  padding: 10px;
  flex-shrink: 0;
}

.casino-card__title {
  flex: 1;
  min-width: 0;
}

.casino-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.35rem 0 0.65rem;
}

.casino-card__tags + .casino-card__desc {
  margin-top: 0;
}

.casino-card__compare {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin: 0.5rem 0 0;
  padding: 0.5rem 0.65rem;
  background: var(--bg-elevated);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.casino-card__compare--warn {
  border-left-color: #c2410c;
  background: #fff7ed;
  color: var(--text);
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
}

.casino-card__title h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.casino-card__desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.wallet-row {
  margin: 0;
}

.wallet-row__label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-soft);
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.wallet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.wallet-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
}

.wallet-grid {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 700px) {
  .wallet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wallet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(23, 26, 33, 0.05);
}

.wallet-card__shot {
  margin: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.wallet-card__shot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.wallet-card__body {
  padding: 1rem 1.15rem 1.15rem;
}

.wallet-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.wallet-card__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.wallet-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.35rem 0 0.65rem;
}

.wallet-card__tip {
  margin-top: 0.75rem !important;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
  font-size: 0.88rem !important;
  color: var(--muted);
}

.wallet-card__tip strong {
  color: var(--text);
}

.wallet-card__caption {
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-soft);
  background: var(--bg-elevated);
}

.intro-bullets {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.intro-bullets li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.intro-bullets__icon {
  flex: 0 0 auto;
  width: 1.65rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.45;
  padding-top: 0.08rem;
}

.intro-bullets__body {
  flex: 1;
  min-width: 0;
}

.intro-bullets__label {
  display: block;
  font-weight: 700;
  color: var(--text);
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.process-track {
  margin: 2rem 0;
}

.process-steps {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
  }
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 0.85rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-height: 100%;
}

.process-step__icon {
  font-size: 1.75rem;
  line-height: 1;
}

.process-step__title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}

.process-step__text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  text-align: left;
  width: 100%;
}

.gas-panel {
  margin: 2rem 0;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.gas-time-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

@media (min-width: 560px) {
  .gas-time-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.gas-time-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.gas-time-card--good {
  background: rgba(4, 120, 87, 0.06);
  border-color: rgba(4, 120, 87, 0.2);
}

.gas-time-card--busy {
  background: rgba(180, 83, 9, 0.06);
  border-color: rgba(180, 83, 9, 0.2);
}

.gas-time-card__icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.35rem;
}

.gas-time-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.gas-time-card p {
  margin: 0;
  font-size: 0.88rem;
}

.gas-range {
  margin-top: 1.25rem;
}

.gas-range__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-soft);
  margin-bottom: 0.45rem;
}

.gas-range__bar {
  position: relative;
  height: 2rem;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(4, 120, 87, 0.35) 0%, rgba(61, 74, 184, 0.35) 45%, rgba(185, 28, 28, 0.35) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.gas-range__fill {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.gas-range__ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted-soft);
}

.gas-range__hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted-soft);
}

.tip-warning {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(180, 83, 9, 0.35);
  background: #fffbeb;
  color: var(--text);
  font-size: 0.95rem;
}

.tip-warning strong {
  color: var(--warning);
}

.mm-wc-block {
  margin: 2rem 0;
  padding: 1.25rem 1.35rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.mm-wc-block h2 {
  margin-top: 0;
}

.row-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.65rem;
}

.row-stat {
  background: var(--bg-elevated);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
}

.row-stat span {
  display: block;
  color: var(--muted-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.row-stat strong {
  color: var(--text);
  font-size: 0.95rem;
}

.pros-cons {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-cons__box {
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-size: 0.92rem;
}

.pros-cons__box--pro {
  background: rgba(61, 214, 140, 0.08);
  border: 1px solid rgba(61, 214, 140, 0.25);
}

.pros-cons__box--con {
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.22);
}

.pros-cons__box h4 {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.pros-cons__box ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.pros-cons__box--pro h4 {
  color: var(--success);
}

.pros-cons__box--con h4 {
  color: var(--danger);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.btn:hover {
  text-decoration: none;
  background: var(--surface-hover);
  border-color: var(--border-strong);
}

.btn--primary {
  background: linear-gradient(135deg, #4d59c4, var(--accent));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), #4d59c4);
  color: #fff;
}

.btn--ghost {
  background: transparent;
}

.btn--block {
  width: 100%;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text);
}

.rating__stars {
  color: var(--warning);
  letter-spacing: 0.05em;
  font-size: 1rem;
}

.rating__num {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  vertical-align: middle;
}

.two-col {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.note-box {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.15rem;
  background: var(--accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 1.5rem 0;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.table-wrap--tight {
  margin-top: 1rem;
  margin-bottom: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

th {
  background: var(--bg-elevated);
  color: var(--text);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

tr:last-child td {
  border-bottom: none;
}

.table-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: #0d0f12;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 5px;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.table-casino-name {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  padding: 0.85rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  margin-bottom: 0.5rem;
}

.faq details p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 1rem;
  margin-top: 2.5rem;
  background: linear-gradient(180deg, #eef1f6 0%, #e8ecf3 100%);
}

@media (min-width: 640px) {
  .site-footer {
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
  }
}

.site-footer__inner {
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .site-footer__grid:not(.site-footer__grid--3) {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (min-width: 900px) {
  .site-footer__grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.site-footer__legal {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.site-footer__legal a {
  font-weight: 600;
  margin-right: 0.75rem;
}

.site-footer h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-soft);
  margin: 0 0 0.65rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.site-footer .footer-casinos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
}

.disclaimer {
  font-size: 0.8rem;
  line-height: 1.55;
  opacity: 0.9;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.related-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.related-list li {
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

.related-list a {
  font-weight: 600;
}

/* Startseite: Hero, TOC, Case Studies, Lessons, Technik, Autor */
.page-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  padding: 0.85rem 1rem;
  margin: 0 0 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
}

.page-toc__label {
  font-weight: 700;
  color: var(--text);
  margin-right: 0.25rem;
}

.page-toc a {
  color: var(--accent);
  white-space: nowrap;
}

.why-eth {
  margin: 1.25rem 0 1rem;
}

.why-eth__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.why-eth-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.why-eth-list li {
  margin-bottom: 0.35rem;
}

.hero-cta {
  margin: 0 0 1.25rem;
}

.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
}

.case-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
}

.case-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.case-block > p {
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.case-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px dashed var(--border);
  padding-top: 0.65rem;
}

.case-checklist li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

@media (max-width: 480px) {
  .case-checklist li {
    grid-template-columns: 1fr;
  }
}

.case-checklist__k {
  font-weight: 600;
  color: var(--text);
}

.lessons-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .lessons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lesson-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.lesson-card strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.real-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: rgba(4, 120, 87, 0.12);
  color: var(--success);
  margin-bottom: 0.75rem;
}

.tech-stack {
  margin: 1.5rem 0;
}

.tech-stack h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0 0.5rem;
  font-size: 1.08rem;
}

.tech-stack h3:first-child {
  margin-top: 0;
}

.tech-stack__icon {
  font-size: 1.25rem;
  line-height: 1;
}

.tech-stack h4 {
  margin: 1rem 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.wallet-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
}

.wallet-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
}

.bullet-tight {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.bullet-tight li {
  margin-bottom: 0.4rem;
}

.payout-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.payout-badge--fast {
  color: var(--success);
}

.payout-badge--mid {
  color: var(--warning);
}

.payout-badge--slow {
  color: var(--muted);
}

.faq-teaser {
  margin-bottom: 0.5rem !important;
}

.faq-more {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.faq-block {
  margin-top: 2rem;
}

.author-card {
  display: grid;
  gap: 1rem;
  margin: 2.5rem 0 0;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(23, 26, 33, 0.06);
}

@media (min-width: 560px) {
  .author-card {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}

.author-card__photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--accent-soft), var(--surface-hover));
  border: 2px solid var(--border);
}

.author-card__placeholder {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--accent);
  background: var(--accent-soft);
  border: 2px solid var(--border);
}

.author-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.author-card p {
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.trust-mini {
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  border-radius: var(--radius);
  background: rgba(61, 74, 184, 0.06);
  border: 1px solid rgba(61, 74, 184, 0.15);
  color: var(--muted);
}

.trust-mini--gambling {
  background: rgba(185, 28, 28, 0.06);
  border: 1px solid rgba(185, 28, 28, 0.2);
}

.pros-cons__box--pro h4::before {
  content: "✓ ";
}

.pros-cons__box--con h4::before {
  content: "✗ ";
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
