@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700&display=swap');

:root {
  --bg-main: #f5f1e9;
  --text-main: #172a3a;
  --selection-bg: #b6d4d0;

  --header-bg: #f5f1e9;
  --header-border: #cad3d2;
  --header-nav: #3e565f;
  --header-nav-hover: #9b3131;

  --brand-bg: #173e55;
  --brand-color: #f5f1e9;

  --hero-bg: #e4ecea;
  --hero-border: #cad3d2;
  --hero-kicker: #557079;
  --hero-kicker-line: #9b3131;
  --hero-title: #173e55;
  --hero-deck: #38535d;
  --hero-meta: #617980;

  --aside-bg: #173e55;
  --aside-text: #f7f3ea;
  --aside-border: #9b3131;
  --aside-kicker: #b6d4d0;
  --aside-kicker-dot: #d9c372;
  --aside-phone: #f7f3ea;
  --aside-phone-hover: #d9e7e3;
  --aside-desc: #d6e1df;

  --section-kicker: #9b3131;
  --section-title: #173e55;
  --section-text: #38535d;

  --toc-bg: #fbf8f1;
  --toc-border: #c8d4d1;
  --toc-kicker: #557079;
  --toc-text: #294754;

  --ranking-bg: #fdfaf3;
  --ranking-border: #d2d8d4;

  --card-bg: #fbfaf5;
  --card-border: #bdcbc8;
  --card-head-bg: #e2eae7;
  --card-head-text: #557079;
  
  --row-hover: #f1f5f1;
  --row-border: #d7dfdc;

  --initial-verified-bg: #d9ebe6;
  --initial-verified-border: #2f746c;
  --initial-verified-text: #18584f;

  --initial-unverified-bg: #edf1ed;
  --initial-unverified-border: #aebfba;
  --initial-unverified-text: #516a6e;

  --status-verified: #23685f;
  --status-verified-dot: #2f746c;
  
  --status-unverified: #8b4a37;
  --status-unverified-dot: #ad6649;
  
  --btn-border: #173e55;
  --btn-text: #173e55;
  --btn-hover-bg: #173e55;
  --btn-hover-text: #fdfaf3;

  --font-sans: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;

  --space-0: 0px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-28: 112px;
  --space-32: 128px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-20);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection,
body *::selection {
  background-color: var(--selection-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--section-kicker);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 20px;
  z-index: 1000;
  background: var(--brand-bg);
  color: var(--brand-color);
  padding: 8px 16px;
  font-weight: 700;
}
.skip-link:focus {
  top: 20px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--header-border);
  background-color: var(--header-bg);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark-wrap {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background-color: var(--brand-bg);
  color: var(--brand-color);
}
.brand-mark-wrap svg {
  width: 20px;
  height: 20px;
}
.brand-copy {
  line-height: 1;
}
.brand-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.brand-subtitle {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--hero-kicker);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--header-nav);
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
.nav-links a {
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--header-nav-hover);
}

.nav-help {
  border-radius: 2px;
  border: 1px solid var(--section-kicker);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #8b2828;
  transition: all 0.2s;
}
.nav-help:hover {
  background-color: var(--section-kicker);
  color: #fdfaf3;
}

/* Hero */
.hero {
  border-bottom: 1px solid var(--hero-border);
  background-color: var(--hero-bg);
}
.hero-grid {
  display: grid;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hero-kicker);
}
.kicker-line {
  height: 1px;
  width: 28px;
  background-color: var(--hero-kicker-line);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.055em;
  color: var(--hero-title);
  max-width: 780px;
  margin: 0;
}
@media (min-width: 640px) { .hero h1 { font-size: 54px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 64px; } }

.hero-deck {
  margin-top: 24px;
  margin-bottom: 0;
  max-width: 680px;
  font-size: 17px;
  line-height: 28px;
  color: var(--hero-deck);
}
.hero-author {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 500;
  color: var(--hero-meta);
}
.hero-author .dot {
  margin: 0 8px;
  color: #9aacaa;
}

/* Sofort Hilfe */
.sofort-hilfe-box {
  align-self: start;
  border-left: 4px solid var(--aside-border);
  background-color: var(--aside-bg);
  padding: 24px;
  color: var(--aside-text);
  box-shadow: 0 12px 24px rgba(23,62,85,0.12);
}
.help-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--aside-kicker);
}
.help-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--aside-kicker-dot);
}
.sofort-hilfe-box .number {
  display: block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-decoration: underline;
  text-decoration-color: #8aaca7;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  color: var(--aside-phone);
  transition: color 0.2s;
}
.sofort-hilfe-box .number:hover {
  color: var(--aside-phone-hover);
}
.sofort-hilfe-box p {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 20px;
  color: var(--aside-desc);
}

/* Kurzantwort + TOC */
.kurzantwort-toc-section {
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .kurzantwort-toc-section { padding: 56px 0; }
}
.kt-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .kt-grid {
    grid-template-columns: 1fr 300px;
    gap: 56px;
  }
}
.kurzantwort {
  border-top: 2px solid var(--section-title);
  padding-top: 20px;
}
.kt-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--section-kicker);
}
.kurzantwort h2 {
  margin-top: 12px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--section-title);
}
.kurzantwort p {
  max-width: 770px;
  font-size: 15px;
  line-height: 28px;
  color: var(--section-text);
  margin: 0 0 12px;
}
.kurzantwort p:last-child { margin-bottom: 0; }
.kurzantwort strong {
  font-weight: 700;
  color: var(--section-title);
}

.toc-block {
  border: 1px solid var(--toc-border);
  background-color: var(--toc-bg);
  padding: 20px;
}
.toc-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--toc-kicker);
}
.toc-nav-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--toc-text);
}
.toc-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: color 0.2s;
}
.toc-nav-list a svg {
  width: 16px;
  height: 16px;
}
.toc-nav-list a:hover {
  color: var(--section-kicker);
}

/* Ranking / Cards */
.casino-ranking-section {
  border-top: 1px solid var(--ranking-border);
  border-bottom: 1px solid var(--ranking-border);
  background-color: var(--ranking-bg);
  padding: 40px 0;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .casino-ranking-section { padding: 56px 0; margin-bottom: 80px; }
}
.ranking-header {
  max-width: 780px;
}
.ranking-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--section-kicker);
}
.ranking-header h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--section-title);
}
.ranking-desc {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: #4d646a;
}

.notices-grid {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}
@media (min-width: 1024px) {
  .notices-grid { grid-template-columns: 1fr 1.05fr; }
}
.achtung-box {
  border-left: 4px solid var(--section-kicker);
  background-color: #f6e7e0;
  padding: 16px 20px;
}
.achtung-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8b2828;
}
.achtung-statement {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #672525;
}
.achtung-box p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 20px;
  color: #793c38;
}
.phone-link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.transparenz-hinweis {
  border: 1px solid #d6ddda;
  background-color: #edf2ef;
  padding: 16px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #45606a;
}
.transparenz-kicker {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #294754;
}
.transparenz-hinweis p { margin: 4px 0 0; }

.table-container {
  margin-top: 32px;
  border: 1px solid var(--card-border);
  background-color: var(--card-bg);
  overflow: hidden;
}
.table-header {
  display: none;
  grid-template-columns: minmax(205px,1.25fr) minmax(180px,1fr) minmax(170px,1fr) 148px;
  border-bottom: 1px solid var(--card-border);
  background-color: var(--card-head-bg);
  padding: 12px 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--card-head-text);
}
@media (min-width: 768px) {
  .table-header { display: grid; }
}
.text-right { text-align: right; }

.table-body {
  display: flex;
  flex-direction: column;
}
.casino-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  transition: background-color 0.2s;
}
.casino-card:not(:last-child) {
  border-bottom: 1px solid var(--row-border);
}
.casino-card:hover {
  background-color: var(--row-hover);
}
@media (min-width: 768px) {
  .casino-card {
    grid-template-columns: minmax(205px,1.25fr) minmax(180px,1fr) minmax(170px,1fr) 148px;
    align-items: center;
  }
}
.c-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-initial {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid;
}
.c-initial.verified {
  border-color: var(--initial-verified-border);
  background-color: var(--initial-verified-bg);
  color: var(--initial-verified-text);
}
.c-initial.unverified {
  border-color: var(--initial-unverified-border);
  background-color: var(--initial-unverified-bg);
  color: var(--initial-unverified-text);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--section-title);
}

.c-mobile-label {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #758986;
}
@media (min-width: 768px) {
  .c-mobile-label { display: none; }
}

.c-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}
.c-status-badge.verified { color: var(--status-verified); }
.c-status-badge.unverified { color: var(--status-unverified); }

.c-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.c-status-badge.verified .c-status-dot { background-color: var(--status-verified-dot); }
.c-status-badge.unverified .c-status-dot { background-color: var(--status-unverified-dot); }

.c-verf-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--section-text);
}

.c-action .btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--btn-border);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--btn-text);
  transition: all 0.2s;
  width: 100%;
}
.c-action .btn svg {
  width: 14px;
  height: 14px;
}
.c-action .btn:hover {
  background-color: var(--btn-hover-bg);
  color: var(--btn-hover-text);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .c-action .btn {
    width: auto;
    float: right; /* text-right parent */
  }
}

/* Rest of the content pages */
.content-area {
  max-width: 840px;
  margin: 0 auto;
}
.content-section {
  margin-bottom: 56px;
}
.content-section h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--section-title);
  margin: 0 0 24px;
  padding-top: 40px;
  border-top: 1px solid #cad3d2;
  display: flex;
  gap: 16px;
  align-items: baseline;
}
@media (min-width: 640px) {
  .content-section h2 { font-size: 32px; }
}
.section-num {
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--section-kicker);
  font-weight: 700;
  flex: 0 0 auto;
}
.content-section h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 16px;
  color: var(--section-title);
}
.content-section p,
.content-section ul,
.content-section ol {
  font-size: 17px;
  line-height: 28px;
  color: var(--section-text);
  margin: 0 0 20px;
}
.content-section ul,
.content-section ol {
  padding-left: 24px;
}
.content-section li {
  margin-bottom: 8px;
}
.content-section strong {
  font-weight: 700;
  color: var(--section-title);
}
.text-link {
  color: var(--section-kicker);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.text-link:hover {
  color: #672525;
}

/* Tables */
.table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
  border: 1px solid var(--card-border);
  background-color: var(--card-bg);
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th, td {
  padding: 16px 20px;
  border-bottom: 1px solid #d7dfdc;
}
th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--card-head-text);
  background-color: var(--card-head-bg);
  white-space: nowrap;
}
td {
  font-size: 15px;
  color: var(--section-text);
}

/* FAQ Details */
.faq-item {
  border: 1px solid var(--card-border);
  background-color: var(--card-bg);
  margin-bottom: -1px;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 17px;
  color: var(--section-title);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .indicator::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--section-kicker);
}
.faq-item[open] summary .indicator::after { content: "−"; }
.faq-body {
  padding: 0 24px 24px;
  font-size: 16px;
  color: var(--section-text);
}
.faq-body p { margin: 0; }

/* Authors box */
.autorenbox {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background-color: #e4ecea;
  border-left: 4px solid var(--section-kicker);
  margin-top: 64px;
}
.autor-photo-col svg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.autor-photo {
  fill: var(--section-title);
}
.autor-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--section-title);
  margin: 0 0 4px;
}
.autor-bio {
  font-size: 14px;
  color: var(--section-text);
  margin: 0;
}

/* Methodik page overrides */
.methodik-hero {
  background-color: var(--hero-bg);
  border-bottom: 1px solid var(--hero-border);
  padding: 64px 0;
  text-align: center;
}
.methodik-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 16px 0 24px;
  color: var(--hero-title);
}
.methodik-page h2 {
  overflow-wrap: anywhere;
}
.methodik-hero p {
  font-size: 18px;
  line-height: 28px;
  color: var(--hero-deck);
  max-width: 680px;
  margin: 0 auto 24px;
}

/* Footer */
.site-footer {
  background-color: #e4ecea;
  color: var(--text-main);
  padding: 64px 0;
  border-top: 1px solid var(--hero-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--section-title);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--section-text);
}
.footer-col a:hover {
  color: var(--section-kicker);
}
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  color: #5d7777;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.age-gate {
  border: 1px solid var(--card-border);
  padding: 4px 8px;
  font-weight: 700;
  color: var(--section-text);
  display: inline-block;
}

/* Mobile Sticky Hotline */
.mobile-sticky-hotline {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: calc(100dvw - 40px);
  max-width: 400px;
  margin-inline: 0;
  background-color: var(--brand-bg);
  border: 1px solid #124045;
  color: var(--brand-color);
  padding: 12px 20px;
  box-shadow: 0 8px 24px rgba(23, 62, 85, 0.25);
  border-radius: 2px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .mobile-sticky-hotline { display: none; }
}
.mobile-sticky-hotline span {
  font-size: 13px;
  color: #cde2dc;
}
.mobile-sticky-hotline strong {
  font-size: 15px;
}
.mobile-sticky-hotline {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.sticky-hotline-visible .mobile-sticky-hotline {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.autor-info,
.autor-meta {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 767px) {
  .autorenbox {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    gap: 12px 16px;
    max-width: 100%;
    min-width: 0;
    padding: 20px 16px;
  }

  .autor-photo-col {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .autor-info {
    grid-column: 2;
    grid-row: 1;
  }

  .autor-meta {
    grid-column: 2;
    grid-row: 2;
  }

  .autor-name,
  .autor-bio,
  .autor-links,
  .autor-meta,
  .autor-meta span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}