/* Prevent horizontal page scroll on mobile */
html, body {
  overflow-x: hidden;
}

/* Scrollable table wrapper */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}
.table-scroll > table {
  margin: 0;
}

/* Author meta bar spacing */
.meta-bar {
  margin-bottom: 2rem;
}

/* Base table overrides */
.casino-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}
.casino-table th, .casino-table td {
  border: 1px solid #706769;
  padding: 12px;
  text-align: left;
}
.casino-table th {
  background-color: #e6dfe0;
  color: #ad2b36;
}
.casino-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #f8f9fa;
}
th, td {
  border: 1px solid #ad2b36;
  padding: 12px;
  text-align: left;
}
th {
  background-color: #f2f2f2;
  color: #ad2b36;
}

/* Airy tables */
.table-airy {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}
.table-airy th,
.table-airy td {
  border: none;
  padding: 1rem 1.2rem;
  text-align: left;
}
.table-airy thead th {
  background-color: #e8eaf0;
  color: #1a1d26;
  font-weight: 600;
  padding: 1.2rem 1.2rem;
}
.table-airy tbody tr:nth-child(odd) td {
  background-color: #f5f6fa;
}
.table-airy tbody tr:nth-child(even) td {
  background-color: #eef0f5;
}
.table-airy tbody tr:hover td {
  background-color: #e5e8f0;
}

/* Gradient bullet points */
.content > ul,
.content .container > ul {
  list-style: none;
  padding-left: 0;
}
.content > ul > li,
.content .container > ul > li {
  padding-left: 1.6rem;
  position: relative;
}
.content > ul > li::before,
.content .container > ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e51a38 0%, #ff6b6b 100%);
}

/* Casino review blocks */
.casino-review-block {
  margin: 3rem 0;
  padding: 2rem;
  background: #fafbfc;
  border-radius: 16px;
  border: 1px solid #e8eaef;
}
.casino-review-block__header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8eaef;
}
.casino-review-block__logo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #eef0f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.casino-review-block__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.casino-review-block__body .casino-review-block__logo + h3,
.casino-review-block__header h3 {
  margin: 0;
  font-size: 2.2rem;
}
.casino-review-block__screenshot {
  margin: 2rem 0;
  min-height: 220px;
  background: #eef0f5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}
.casino-review-block__screenshot img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

/* Casino rating highlight */
.casino-rating {
  margin: 1.5rem 0 0 !important;
  padding: 1rem 1.2rem !important;
  background: linear-gradient(135deg, #fef3e2 0%, #fde8d0 100%);
  border-radius: 10px;
  border-left: 4px solid #e51a38;
  font-size: 1.05em !important;
}

/* Quote blocks (Mein Urteil) */
.content-quote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem 1.25rem 2.5rem;
  background: #f8f9fc;
  border-radius: 10px;
  font-style: italic;
  position: relative;
}
.content-quote::before {
  content: "\201C";
  position: absolute;
  left: 0.75rem;
  top: 0.5rem;
  font-size: 2.5rem;
  line-height: 1;
  color: #c4c8d0;
  font-style: normal;
  font-family: Georgia, serif;
}
.content-quote::after {
  content: "\201D";
  position: absolute;
  right: 0.75rem;
  bottom: 0.5rem;
  font-size: 2.5rem;
  line-height: 1;
  color: #c4c8d0;
  font-style: normal;
  font-family: Georgia, serif;
}
.content-quote strong {
  font-style: normal;
}

/* FAQ dropdowns */
.faq-list {
  margin: 1.5rem 0;
}
.faq-item {
  margin-bottom: 0.5rem;
  border: 1px solid #e8eaef;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.faq-item[open] {
  border-color: #e51a38;
  box-shadow: 0 2px 8px rgba(229, 26, 56, 0.08);
}
.faq-question {
  padding: 1rem 1.2rem 1rem 3rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05em;
  list-style: none;
  position: relative;
  background: #fafbfc;
  transition: background 0.2s;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #e51a38;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::before {
  transform: translateY(-50%) rotate(90deg);
}
.faq-question:hover {
  background: #f5f6fa;
}
.faq-answer {
  padding: 0 1.2rem 1rem 3rem;
}
.faq-answer p {
  margin: 0;
  padding-top: 0.5rem;
}

/* Stepper */
.stepper {
  margin: 1.5rem 0;
  padding: 1.5rem 2rem;
  background: #fafbfc;
  border: 1px solid #e8eaef;
  border-radius: 14px;
}
.stepper__title {
  font-weight: 700;
  font-size: 1.15em;
  margin-bottom: 1.2rem;
  color: #1a1d26;
}
.stepper__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.4rem;
  padding-left: 0.15rem;
}
.stepper__step:last-child {
  padding-bottom: 0;
}
.stepper__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: #e0e2e8;
}
.stepper__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e51a38;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.stepper__text {
  padding-top: 0.35rem;
  line-height: 1.5;
}
