/* =========================================================
   Casino ohne OASIS — Stylesheet
   Lesbare Klassennamen, abgestimmt auf den Seiteninhalt.
   Bootstrap 5 wird zusätzlich geladen (Grid, Utilities).
   ========================================================= */

/* ---------- Page layout (min. one viewport) ---------- */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
  color: #1c1917;
  background: #fff;
  margin: 0;
}

.site-header {
  flex-shrink: 0;
}

.site-main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.site-main > .content {
  flex: 1;
}

.site-main > .hero:only-child {
  flex: 1;
}

.footer {
  flex-shrink: 0;
}

/* ---------- Site header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e7e5e4;
  padding: .65rem 0;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-logo img {
  display: block;
  width: auto;
  max-width: 220px;
  height: 44px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .site-header { padding: .5rem 0; }
  .site-logo img { max-width: 170px; height: 36px; }
}

/* ---------- Base ---------- */
h1, h2, h3, h4 { color: #1c1917; }
a        { color: #e11d48; }
a:hover  { color: #be123c; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  color: #fff;
}
.hero-eyebrow { font-size: .85rem;  color: #e11d48; font-weight: 600; }
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .35rem 1rem;
}
.hero-eeat {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: .4rem .55rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}
.hero-eeat li {
  font-size: .72rem;
  font-weight: 600;
  color: #d6d3d1;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  padding: .2rem .6rem;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .hero-eyebrow-row { justify-content: flex-start; }
  .hero-eeat { justify-content: flex-start; margin-left: 0; }
}
.hero-title   { font-size: 2.1rem;  line-height: 1.15; color: #fff; }
.hero-lead    { font-size: 1.05rem; color: #d6d3d1; line-height: 1.55; }
.hero-note    { font-size: .88rem;  color: #a8a29e; }

@media (max-width: 768px) {
  .hero { padding: .5rem 0 !important; }
  .hero .container { padding-top: .75rem !important; padding-bottom: .75rem !important; }
  .hero-title { font-size: 1.3rem !important; margin-bottom: .35rem !important; line-height: 1.25; }
  .hero-lead  { font-size: .82rem !important; margin-bottom: .4rem !important; line-height: 1.4; }
  .hero-note  { font-size: .74rem !important; margin-bottom: 0 !important; line-height: 1.35; }
}

/* ---------- Content / Article ---------- */
.content { display: block; }

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1c1917;
  margin: 2rem 0 .85rem;
}
.section-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1c1917;
  margin: 1.4rem 0 .55rem;
}
.body-text {
  color: #1c1917;
  line-height: 1.6;
  margin: 0 0 1rem;
}

/* ---------- Review team ---------- */
/* Bootstrap liefert .card / .row / .col-md-4 / Spacing. */
.team-name { font-size: 1rem; font-weight: 700; color: #1c1917; }
.team-role { font-size: .82rem; color: #e11d48; font-weight: 600; }

/* ---------- Expert quote ---------- */
/* Bootstrap liefert .alert / .border-start / .rounded-3 / Spacing;
   hier nur Farbe, Akzentrand und Schriftgröße. */
.expert-quote {
  border-color: #e11d48 !important;
  background: #fff1f2;
}
.text-sm {
  font-size: .88rem;
  color: #1c1917;
}

/* ---------- Lists ---------- */
.content-list {
  color: #1c1917;
  line-height: 1.6;
  margin: 0 0 1.15rem;
  padding-left: 1.3rem;
}
.content-list li { margin-bottom: .4rem; }

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  margin: 0 0 1.4rem;
  -webkit-overflow-scrolling: touch;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  color: #1c1917;
}
.data-table td,
.data-table th {
  border: 1px solid #e5e7eb;
  padding: .55rem .75rem;
  text-align: left;
  vertical-align: top;
}
.data-table td p,
.data-table th p { margin: 0; }

/* Kopfzeile nur in thead */
.data-table thead th {
  background: #1c1917;
  color: #fff;
  font-weight: 700;
  border-color: #374151;
}
.data-table thead th p { color: #fff; }

/* Zebra nur in tbody */
.data-table:not(.data-table--kv) tbody tr:nth-child(even) {
  background: #faf9f8;
}

/* Key-Value-Tabellen (Casino-Specs) */
.data-table--kv .data-table__key {
  background: #f5f5f4;
  font-weight: 700;
  color: #1c1917;
  width: 38%;
  white-space: nowrap;
}
.data-table--kv tbody tr:nth-child(even) {
  background: #faf9f8;
}
.data-table--kv tbody tr:nth-child(even) .data-table__key {
  background: #efeeed;
}

/* ---------- Pros & cons ---------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1.25rem;
}
.pros-cons-col {
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  padding: .85rem 1rem;
  background: #fafaf9;
}
.pros-cons-col--pros { border-top: 3px solid #16a34a; }
.pros-cons-col--cons { border-top: 3px solid #e11d48; }
.pros-cons-title {
  font-size: .95rem;
  font-weight: 700;
  color: #1c1917;
  margin: 0 0 .55rem;
}
.pros-cons-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pros-cons-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: .45rem;
  font-size: .88rem;
  line-height: 1.5;
  color: #1c1917;
}
.pros-cons-list li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}
.pros-cons-list li.pros::before { content: '+'; color: #16a34a; }
.pros-cons-list li.cons::before { content: '–'; color: #e11d48; }
@media (max-width: 768px) {
  .pros-cons { grid-template-columns: 1fr; }
}

/* ---------- Section-Banner (Bilder aus dem Beitrag) ---------- */
.section-banner {
  margin: .25rem 0 1.25rem;
  text-align: center;
}
.section-banner img {
  display: block;
  width: 50%;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}
@media (max-width: 768px) {
  .section-banner img { width: 90%; }
}

/* ---------- Review-Screenshots ---------- */
.review-shot {
  margin: .25rem 0 1.25rem;
  text-align: center;
}
.review-shot img {
  display: block;
  width: 50%;
  height: auto;
  margin: 0 auto;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}
@media (max-width: 768px) {
  .review-shot img { width: 90%; }
}

/* ---------- Casino listing (horizontale Karten) ---------- */
.casino-listing { margin: 0 0 1.75rem; }

.casino-horizontal-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1.25rem 1rem 1.25rem;
  margin-bottom: .75rem;
  transition: box-shadow .15s, border-color .15s, transform .15s;
}
.casino-horizontal-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  border-color: #e11d48;
  transform: translateY(-1px);
}
.casino-horizontal-card--top {
  border: 2px solid #e11d48;
  background: linear-gradient(135deg, #fff1f2, #ffe4e6);
}

.casino-horizontal-badge {
  position: absolute;
  top: -1px;
  left: -1px;
  background: #e11d48;
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
  line-height: 1;
  padding: .35rem .6rem;
  border-radius: 12px 0 12px 0;
  white-space: nowrap;
}

.casino-horizontal-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}
.casino-horizontal-logo img {
  width: 90px;
  height: 60px;
  object-fit: contain;
  display: block;
}
.casino-horizontal-info { min-width: 0; }
.casino-horizontal-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 .2rem;
  line-height: 1.2;
}
.casino-horizontal-name a { color: #1c1917; text-decoration: none; }
.casino-horizontal-name a:hover { color: #e11d48; }
.casino-horizontal-rating { display: flex; align-items: center; gap: .45rem; }
.stars { color: #f5a623; font-size: .9rem; letter-spacing: 1px; }
.rating-score { font-weight: 700; color: #e11d48; font-size: .85rem; }

.casino-horizontal-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.casino-horizontal-bonus {
  display: flex;
  flex-direction: column;
  text-align: right;
  max-width: 230px;
}
.bonus-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #78716c;
  margin-bottom: .15rem;
}
.bonus-value { font-size: .9rem; font-weight: 700; color: #1c1917; line-height: 1.25; }

/* CTA-Button im Markenrot statt Bootstrap-Blau */
.casino-listing .btn-primary {
  background: #e11d48;
  border-color: #e11d48;
  font-weight: 700;
  white-space: nowrap;
  padding: .5rem 1.4rem;
}
.casino-listing .btn-primary:hover,
.casino-listing .btn-primary:focus {
  background: #be123c;
  border-color: #be123c;
}

@media (max-width: 768px) {
  .casino-horizontal-card {
    flex-direction: column;
    align-items: stretch;
    gap: .85rem;
    padding: 1.75rem 1rem 1rem;
  }
  .casino-horizontal-right {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }
  .casino-horizontal-bonus { text-align: left; max-width: none; }
  .casino-horizontal-cta .btn { white-space: nowrap; }
}

/* ---------- Pros / Cons (zwei Spalten) ---------- */
.proscons { margin-bottom: 1.25rem; }
.proscons-box {
  height: 100%;
  border: 1px solid #e5e7eb;
  border-left-width: 4px;
  border-radius: 10px;
  padding: .85rem 1rem;
}
.proscons-pros { background: #f0fdf4; border-left-color: #16a34a; }
.proscons-cons { background: #fff1f2; border-left-color: #e11d48; }
.proscons-title {
  font-weight: 700;
  font-size: .92rem;
  color: #1c1917;
  margin: 0 0 .5rem;
}
.proscons-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: .88rem;
  line-height: 1.5;
  color: #1c1917;
}
.proscons-list li { margin-bottom: .3rem; }
.proscons-list li:last-child { margin-bottom: 0; }

/* ---------- Inhaltsverzeichnis (TOC, standardmäßig zu) ---------- */
.section-title { scroll-margin-top: 1rem; }
.toc {
  background: #f5f5f4;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  margin: 1.25rem 0;
}
.toc-summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #1c1917;
  padding: .85rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toc-summary::-webkit-details-marker { display: none; }
.toc-summary::after {
  content: "\25BE";
  color: #e11d48;
  transition: transform .2s;
}
.toc[open] .toc-summary::after { transform: rotate(180deg); }
.toc-nav { padding: 0 1.1rem 1rem; }
.toc-list {
  margin: 0;
  padding-left: 1.3rem;
  columns: 2;
  column-gap: 2rem;
}
.toc-list li { margin-bottom: .4rem; break-inside: avoid; }
.toc-list a { color: #1c1917; text-decoration: none; font-size: .9rem; }
.toc-list a:hover { color: #e11d48; text-decoration: underline; }
@media (max-width: 640px) {
  .toc-list { columns: 1; }
}

/* ---------- FAQ (graues Panel, aufklappbar) ---------- */
.faq {
  background: #f5f5f4;
  border: 1px solid #e7e5e4;
  border-radius: 14px;
  padding: 1.5rem 1.5rem .9rem;
  margin: 1.75rem 0;
}
.faq .faq-title { margin-top: 0; }

.faq-accordion .accordion-item {
  border: 1px solid #e7e5e4;
  border-radius: 10px;
  margin-bottom: .6rem;
  overflow: hidden;
}
.faq-accordion .accordion-item:last-child { margin-bottom: 0; }

.faq-accordion .accordion-button {
  font-size: 1rem;
  font-weight: 600;
  color: #1c1917;
  background: #fff;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff1f2;
  color: #e11d48;
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: 0 0 0 .2rem rgba(225, 29, 72, .2);
}
.faq-accordion .accordion-body {
  font-size: .92rem;
  line-height: 1.6;
  color: #1c1917;
  background: #fff;
}

/* ---------- Autoren-Bio ---------- */
.author-bio {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-left: 4px solid #e11d48;
  border-radius: 14px;
  padding: 1.5rem;
  margin: 1.75rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}
.author-bio-photo { flex-shrink: 0; }
.author-bio-photo img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}
.author-bio-content { min-width: 0; }
.author-bio-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1c1917;
  margin: 0 0 .15rem;
}
.author-bio-role {
  font-size: .9rem;
  font-weight: 600;
  color: #e11d48;
  margin: 0 0 .65rem;
}
.author-bio-text {
  font-size: .95rem;
  line-height: 1.65;
  color: #1c1917;
  margin: 0 0 .6rem;
}
.author-bio-meta {
  font-size: .8rem;
  color: #78716c;
  margin: 0;
}
@media (max-width: 640px) {
  .author-bio { flex-direction: column; align-items: center; text-align: center; }
  .author-bio-photo img { width: 110px; height: 110px; }
}

/* ---------- Footer ---------- */
.footer { background: #1c1917; color: #a8a29e; }
.footer-title     { font-size: .95rem; color: #fff; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 1.1rem;
  margin: 0 0 .8rem;
  padding: 0;
}
.footer-nav a { color: #d6d3d1; font-size: .82rem; text-decoration: none; }
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.footer-contact {
  display: block;
  text-align: center;
  font-style: normal;
  font-size: .8rem;
  color: #a8a29e;
  margin: 0 0 .8rem;
}
.footer-contact a { color: #d6d3d1; text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-text      { font-size: .82rem; line-height: 1.5; }
.footer-highlight { color: #fff; }
.footer-divider   { border-color: #292524; }
.copyright        { font-size: .78rem; }
