:root {
  --font: 'Lucida Grande', sans-serif;
  --text: #212529;
  --muted: #6b7280;
  --accent: #c81d25;
  --accent-soft: #fde4d9;
  --border: #e6e6e6;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.hero {
  padding: 56px 16px 24px;
  text-align: center;
}

.hero__inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
}

.hero__subtitle {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.hero__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}

.hero__icon {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero__author {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero__author > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.hero__author-name {
  font-weight: 700;
  text-align: left;
}

.hero__author-name a {
  color: #c81d25;
  text-decoration: none;
}

.hero__author-name a:hover {
  text-decoration: underline;
}

.hero__author-date {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero__intro {
  text-align: left;
}

.hero__intro--lead {
  text-align: left;
}

.hero__intro {
  margin-top: 6px;
  color: #444;
}

.layout {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px 64px;
  display: grid;
  gap: 36px;
}

.section__intro {
  text-align: left;
  color: #444;
}

.section {
  display: grid;
  gap: 14px;
}

.section p {
  margin: 0 0 5px;
}

.section p:last-child {
  margin-bottom: 0;
}

.section p + h3 {
  margin-top: 5px;
}

.section__title {
  margin: 6px 0 10px;
  text-align: center;
  font-size: clamp(1.5rem, 2.3vw, 1.8rem);
  font-weight: 800;
  position: relative;
  padding-bottom: 10px;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  margin: 10px auto 0;
}

.table-wrapper {
  border: 1px solid var(--border);
  border-radius: 11px;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.casino-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.casino-table thead {
  background: #ebebeb;
}

.casino-table th,
.casino-table td {
  padding: 14px 18px;
  text-align: left;
}

.casino-table a {
  color: #c81d25;
  text-decoration: underline;
  font-weight: 600;
}

.casino-table a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.casino-table th:last-child,
.casino-table td:last-child {
  text-align: center;
}

.casino-table tbody tr:nth-child(even) {
  background: #faf7f4;
}

.payment-methods {
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 18px;
  background: #fff;
  display: grid;
  gap: 12px;
}

.payment-methods h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f1f1f;
  text-align: left;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.payment-table th,
.payment-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.payment-table th {
  font-weight: 700;
  color: #2d2d2d;
  background: #f6f7fa;
  font-size: 0.82rem;
}

.payment-table td:first-child a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.payment-table td:first-child a:hover {
  text-decoration: none;
}

.payment-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.payment-status--yes {
  background: #16a34a;
}

.payment-status--no {
  background: #d14343;
}

.payment-table th:nth-child(3),
.payment-table th:nth-child(4),
.payment-table td:nth-child(3),
.payment-table td:nth-child(4) {
  padding-left: 8px;
  padding-right: 8px;
  text-align: center;
}

.payment-table th:nth-child(5),
.payment-table td:nth-child(5) {
  width: 38%;
}

.payment-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.toc {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.toc summary {
  cursor: pointer;
  font-weight: 700;
}

.toc__nav {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.toc__nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.review {
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 24px;
  gap: 20px;
}

.review__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review__logo {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.review__logo--betalice {
  width: 82px;
  height: 82px;
}

.review__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.review__logo-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.review__brand a {
  color: inherit;
  text-decoration: underline;
}

.review__brand a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.review__brand {
  font-size: 1.2rem;
  font-weight: 700;
}

.review__subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.review__info,
.review__games {
  margin: 0 0 20px;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.casino-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.casino-info-table th {
  width: 40%;
  text-align: left;
  font-weight: 700;
  color: var(--muted);
  padding: 10px 12px;
}

.casino-info-table td {
  padding: 10px 12px;
  text-align: left;
  color: #333;
}

.casino-info-table tr:nth-child(even) {
  background: #f1f4f9;
}

.casino-info-more {
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.casino-info-more summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--muted);
  font-size: 0.95rem;
}

.casino-info-more[open] summary {
  margin-bottom: 8px;
}

.review__image {
  height: 220px;
  border-radius: 10px;
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.review__screenshot {
  width: 100%;
  height: auto;
  margin: 0 0 12px;
  border-radius: 11px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.review__screenshot-link {
  display: block;
}
.summary {
  padding: 24px 0;
  display: grid;
  gap: 18px;
}

.summary-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 720px) {
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.summary-card {
  background: #fdfdfd;
  border-radius: 11px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .summary-card {
    overflow: visible;
  }
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.summary-table th,
.summary-table td {
  padding: 12px 16px;
  text-align: left;
}

.summary-table th {
  font-weight: 700;
  color: var(--muted);
  width: 60%;
}

.summary-table tr:nth-child(odd) {
  background: #f5f8ff;
}

.summary-table a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.summary-table a:hover {
  text-decoration: underline;
}
.quote-section {
  background: #f5f8ff;
  border-radius: 13px;
  padding: 24px;
}
.quote-section__intro {
  max-width: 760px;
  margin-bottom: 20px;
}
.quote-section__title {
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  margin: 0 0 12px;
  text-align: left;
}
.quote-section__grid {
  display: grid;
  gap: 18px;
}
.quote-card {
  background: #ffffff;
  border-radius: 11px;
  padding: 20px 24px;
  box-shadow: 0 12px 28px rgba(13, 36, 74, 0.08);
}
.quote-card__icon {
  font-size: 2.8rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}
.quote-card__text {
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.48;
  color: #1f1f1f;
  margin: 0 0 14px;
}
.quote-card__meta {
  font-size: 0.95rem;
  color: #4a4d57;
}
.quote-card__meta a {
  color: #1f6db5;
  text-decoration: underline;
}

.review__cols {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .review__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checklist,
.crosslist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 5px;
  color: #444;
}

.checklist li::before {
  content: '✔';
  color: #16a34a;
  margin-right: 8px;
  font-weight: 700;
}

.crosslist li::before {
  content: '✖';
  color: #d83535;
  margin-right: 8px;
  font-weight: 700;
}

.review__cta {
  display: flex;
  justify-content: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  filter: brightness(1.05);
}

.faq {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin-top: 10px;
  color: #444;
}

.footer {
  padding: 36px 16px 56px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__meta--split {
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.hero__author {
  flex: 0 0 auto;
}

.hero__note {
  flex: 1 1 auto;
  text-align: left;
  font-size: 0.72rem;
}

@media (max-width: 640px) {
  html {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    max-width: 100vw;
  }
  
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
  }
  
  body > * {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  body > .table-wrapper,
  body .table-wrapper {
    overflow-x: auto;
  }
  
  img, video, iframe {
    max-width: 100%;
    width: 100%;
    height: auto;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  h1, h2, h3, h4, h5, h6 {
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  p, span, div, a {
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  div:not(.table-wrapper):not(.casino-table),
  span,
  a {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .layout {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0;
    gap: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
    display: block;
  }
  
  main.layout {
    overflow-x: hidden;
    overflow-y: visible;
    display: block;
    max-width: 100vw;
  }
  
  .hero {
    padding: 56px 16px 12px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .hero__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 0;
    overflow-x: hidden;
  }
  
  .hero__meta--split {
    flex-wrap: wrap;
  }
  
  .section {
    width: 100%;
    max-width: 100%;
    gap: 12px;
    box-sizing: border-box;
    padding: 24px 16px;
    margin: 0;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    display: block;
  }
  
  #liste.section {
    padding: 12px 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .section *:not(.table-wrapper):not(.casino-table):not(.table-wrapper *):not(.timeline__dot):not(.timeline__dot-year):not(.timeline__dots):not(.timeline *) {
    overflow-x: hidden;
    overflow-y: visible;
    max-height: none;
    max-width: 100%;
  }
  
  .section p,
  .section ol,
  .section ul,
  .section li,
  .section div:not(.table-wrapper):not(.casino-table),
  .section h2,
  .section h3 {
    overflow-x: hidden !important;
    overflow-y: visible !important;
    max-height: none !important;
    height: auto !important;
    max-width: 100% !important;
  }
  
  .footer,
  .footer__inner,
  .footer__links,
  .footer__copy {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .payment-methods,
  .contact-card,
  .contact-form,
  .review,
  .summary-card,
  .summary-table {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .section.review {
    overflow-x: visible !important;
    padding-left: 12px;
  }
  
  .review__heading {
    overflow: visible;
    position: relative;
    padding-left: 12px;
    margin-left: 0;
  }
  
  .review__logo {
    overflow: visible;
    position: relative;
  }
  
  .review__logo-badge {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    z-index: 10;
    border-radius: 50%;
  }
  
  #liste.section .section__title {
    padding: 0 16px;
    margin: 0 0 12px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .section p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    margin: 0 0 6px;
    padding: 0;
    overflow-x: hidden;
    overflow-y: visible;
  }
  
  .section p + h3 {
    margin-top: 6px;
  }
  
  .disclaimer {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  
  .section ol,
  .section ul {
    padding-left: 20px;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0 0 12px;
    overflow-x: hidden;
    overflow-y: visible;
  }
  
  .section li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
    margin-bottom: 4px;
    white-space: normal;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
  }
  
  .section strong {
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-x: hidden;
  }
  
  .section__title {
    font-size: 1.4rem;
    margin: 0 0 12px;
    padding: 0 0 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .section__title::after {
    width: 50px;
    height: 2px;
    margin: 8px auto 0;
  }
  
  .table-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    position: relative;
    width: calc(100% + 32px);
    max-width: 100vw;
    display: block;
    box-sizing: content-box;
    height: auto;
    min-height: auto;
    max-height: none;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .table-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .casino-table {
    min-width: 600px;
    margin: 0;
  }
  
  .casino-table th,
  .casino-table td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }
  
  .casino-table th:first-child,
  .casino-table td:first-child {
    padding: 10px 6px 10px 12px;
    white-space: nowrap;
    width: auto;
    min-width: 30px;
  }
  
  .casino-table th:nth-child(2),
  .casino-table td:nth-child(2) {
    padding: 10px 8px;
    white-space: nowrap;
    width: auto;
    min-width: 100px;
  }
  
  .casino-table th:nth-child(3),
  .casino-table td:nth-child(3) {
    padding: 10px 12px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 180px;
    max-width: none;
  }
  
  .casino-table th:last-child,
  .casino-table td:last-child {
    padding: 10px 12px 10px 8px;
    white-space: nowrap;
    width: auto;
    min-width: 70px;
    text-align: center;
  }
}


.footer__inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  text-align: center;
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--muted);
}




.toc__section {
  display: grid;
  gap: 12px;
}

.toc__nav {
  display: grid;
  gap: 8px;
}

.toc__nav--secondary {
  margin-top: 8px;
}

.toc__more {
  margin-top: 8px;
}

.toc__more summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--muted);
}

.toc__more-content {
  margin-top: 10px;
  display: grid;
  gap: 12px;
}


.brand-directory {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.brand-directory__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.brand-directory__grid a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.brand-directory__grid a:hover {
  text-decoration: none;
  opacity: 0.7;
}


.details-content {
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}

@media (max-width: 640px) {
  .details-content {
    overflow: visible;
    height: auto !important;
  }
  
  details[open] .details-content {
    height: auto !important;
  }
}

details[open] > .details-content {
  will-change: height;
}


.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

.scroll-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  filter: brightness(1.05);
}


.hero__author-date--updated {
  font-size: 0.78rem;
  color: var(--muted);
}


.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  font-size: 0.92rem;
}

.footer__links a {
  color: #c81d25;
  text-decoration: underline;
  font-weight: 600;
}

.footer__links a:hover {
  filter: brightness(0.9);
}


.breadcrumb {
  font-size: 0.9rem;
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  justify-self: flex-start;
  text-align: left;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}


.author {
  background: #f9fafc;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 20px;
  display: grid;
  gap: 10px;
}

.author a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.author a:hover {
  text-decoration: underline;
}


.timeline {
  background: #f1f5f9;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  display: grid;
  gap: 16px;
}

.timeline__container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline__nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #1e6db5;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.timeline__nav:hover {
  filter: brightness(1.1);
}

.timeline__track {
  position: relative;
  flex: 1;
  padding: 0 12px;
}

.timeline__line {
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  height: 4px;
  background: #d2ddeb;
  transform: translateY(-50%);
  border-radius: 999px;
}

.timeline__progress {
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  height: 4px;
  background: #1e6db5;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  transition: transform 0.3s ease;
}

.timeline__dots {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.timeline__dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #1f6db5;
  background: #fff;
  color: #1f6db5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.timeline__dot-year {
  position: absolute;
  top: 36px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f6db5;
}

.timeline__dot--active {
  background: #1f6db5;
  color: #fff;
  transform: scale(1.1);
}

.timeline__card {
  background: #fff;
  border-radius: 11px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.timeline__card-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.timeline__card-text {
  margin: 0;
  color: #333;
}

@media (max-width: 640px) {
  .timeline__dots {
    overflow: visible;
  }
  
  .timeline__dot {
    overflow: visible;
  }
  
  .timeline__dot-year {
    display: none;
  }
  
  .timeline__nav {
    width: 34px;
    height: 34px;
  }
}


.contact-card {
  background: #f9fafc;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 20px;
  display: grid;
  gap: 10px;
}

.contact-map {
  overflow: hidden;
  border-radius: 11px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

@media (max-width: 640px) {
  .contact-map {
    overflow: visible;
  }
}

.contact-form {
  display: grid;
  gap: 12px;
  background: #f9fafc;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 20px;
}

.contact-form label {
  font-weight: 600;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form__hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* Reading time */
.hero__author-date {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__reading-time {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}

/* Key Takeaways */
.key-takeaways {
  border-radius: 13px;
}

.takeaways-table-wrapper {
  overflow-x: auto;
  margin-top: 16px;
}

.takeaways-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.takeaways-table__caption {
  caption-side: top;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  padding: 0 0 16px 0;
  margin: 0;
}

.takeaways-table thead {
  background: #f0f0f0;
}

.takeaways-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 2px solid var(--border);
}

.takeaways-table td {
  padding: 12px 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.takeaways-table tbody tr:last-child td {
  border-bottom: none;
}

.takeaways-table tbody tr:hover {
  background: #fafafa;
}

.takeaways-table td:first-child {
  min-width: 180px;
  font-weight: 500;
  color: var(--text);
}

/* MGA vs Curacao Comparison */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.comparison-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.comparison-card--mga {
  border-color: #0066cc;
}

.comparison-card--curacao {
  border-color: #ff9900;
}

.comparison-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: var(--text);
}

.comparison-note {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 16px 0 0 0;
}

.comparison-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.comparison-card__list li {
  padding: 8px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.comparison-card__example {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 16px 0 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Statistics */
.statistics-section {
  background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
  border-radius: 13px;
  padding: 32px 24px;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-card__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.2;
}

.stat-card__label {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
}

.statistics-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 24px 0 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Resources */
.resources-section {
  background: #f9fafc;
  border-radius: 13px;
  padding: 32px 24px;
}

.resources-intro {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 16px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.resource-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.resource-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--text);
}

.resource-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-card__list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #555;
}

.resource-card__list li:last-child {
  border-bottom: none;
}

.resource-card__list a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.5;
}

.resource-card__list a:hover {
  text-decoration: underline;
}

/* Scroll to top link */
.scroll-to-top-link {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.scroll-to-top-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* Footer paragraphs spacing */
.footer p {
  margin-top: 0;
  margin-bottom: 12px;
}

.footer p:last-of-type {
  margin-bottom: 0;
}

/* Mobile Styles for New Blocks */
@media (max-width: 640px) {
  .hero__author-date {
    flex-direction: column;
    gap: 4px;
  }

  .hero__reading-time {
    margin-top: 4px;
  }

  .key-takeaways {
    padding: 16px;
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
  }

  .takeaways-table-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .takeaways-table {
    font-size: 0.9rem;
  }

  .takeaways-table th,
  .takeaways-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .takeaways-table td:first-child {
    min-width: 140px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-card__number {
    font-size: 1.6rem;
  }

  .statistics-section {
    padding: 24px 16px;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .resources-section {
    padding: 24px 16px;
  }

  .footer__responsible-gaming {
    font-size: 0.85rem;
    margin-top: 16px;
    padding-top: 16px;
  }
}

/* 404 Page Button */
.button {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s;
  margin-top: 12px;
}

.button:hover {
  background: #a0181f;
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .button {
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }
}
