/* CasinosLine shared styles */
:root {
  --cl-bg: #0f172a;
  --cl-bg-2: #111827;
  --cl-surface: #1e293b;
  --cl-surface-2: #243449;
  --cl-border: rgba(148, 163, 184, 0.2);
  --cl-text: #f8fafc;
  --cl-muted: #94a3b8;
  --cl-low: #64748b;
  --cl-cta: #10b981;
  --cl-cta-2: #34d399;
  --cl-gold: #facc15;
  --cl-radius: 16px;
  --cl-shadow: 0 14px 36px rgba(2, 6, 23, 0.24);
  --cl-shadow-strong: 0 20px 48px rgba(2, 6, 23, 0.36);
}

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

html {
  scroll-behavior: smooth;
}

body.home-lobby-template,
body.cl-review-page,
body.cl-country-page {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--cl-bg);
  color: var(--cl-text);
  font-family: Inter, Roboto, "Segoe UI", Arial, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

.home-lobby-template *,
.cl-review-page *,
.cl-country-page * {
  min-width: 0;
}

.home-lobby-template img,
.cl-review-page img,
.cl-country-page img {
  display: block;
  max-width: 100%;
}

.home-lobby-template a,
.cl-review-page a,
.cl-country-page a {
  color: inherit;
  text-underline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.lobby-topbar,
.cl-review-page .review-topbar,
.cl-country-page header[role="banner"] {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--cl-border);
  background: rgba(15, 23, 42, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lobby-topbar-inner,
.cl-review-page .lobby-topbar-inner,
.cl-country-page .nav-wrap {
  max-width: 1440px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.lobby-brand {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.brand a,
.cl-site-brand-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  text-decoration: none;
}

.lobby-site-logo,
.cl-site-logo {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: contain;
}

.footer-site-logo {
  width: 28px;
  height: 28px;
}

.menu {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: none;
  white-space: nowrap;
}

.menu::-webkit-scrollbar {
  display: none;
}

.menu a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0.5rem 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.72);
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu a:hover,
.menu a:focus {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(16, 185, 129, 0.13);
  color: #ecfdf5;
}

/* Buttons */
.lobby-btn,
.review-action,
.visit-action,
.outline-btn,
.visit-btn,
.disabled-btn,
.table-actions a,
.table-actions span,
.mobile-sticky-cta a,
.mobile-sticky-cta strong {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.62rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lobby-btn.primary,
.visit-action,
.visit-btn,
.table-actions .visit-action,
.mobile-sticky-cta a {
  border: 1px solid rgba(52, 211, 153, 0.65);
  background: linear-gradient(180deg, var(--cl-cta-2) 0%, var(--cl-cta) 100%);
  color: #052e1f;
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.22);
}

.lobby-btn.primary:hover,
.visit-action:hover,
.visit-btn:hover,
.table-actions .visit-action:hover,
.mobile-sticky-cta a:hover {
  background: linear-gradient(180deg, #6ee7b7 0%, var(--cl-cta) 100%);
  box-shadow: 0 12px 26px rgba(16, 185, 129, 0.3);
}

.lobby-btn.secondary,
.review-action,
.outline-btn,
.table-actions .review-action {
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(51, 65, 85, 0.7);
  color: #e2e8f0;
}

.lobby-btn.secondary:hover,
.review-action:hover,
.outline-btn:hover,
.table-actions .review-action:hover {
  border-color: rgba(148, 163, 184, 0.42);
  background: rgba(71, 85, 105, 0.78);
}

.disabled-btn,
.table-actions span,
.mobile-sticky-cta strong {
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(51, 65, 85, 0.58);
  color: var(--cl-muted);
}

/* Homepage */
.home-lobby-wrapper {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 5%, rgba(16, 185, 129, 0.12), transparent 26rem),
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--cl-bg) 0%, var(--cl-bg-2) 50%, var(--cl-bg) 100%);
}

.home-lobby-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 1.5rem;
  align-items: center;
  min-height: 260px;
  padding: 2rem 0 1.5rem;
}

.home-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.home-lobby-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
  width: 100%;
  padding: 0.45rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.8);
  box-shadow: var(--cl-shadow);
}

.home-lobby-search input {
  width: 100%;
  height: 42px;
  border: 0;
  outline: 0;
  border-radius: 10px;
  padding: 0 0.9rem;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
}

.home-lobby-search input::placeholder {
  color: var(--cl-low);
}

.home-lobby-search button {
  min-height: 42px;
  border: 1px solid rgba(52, 211, 153, 0.65);
  border-radius: 10px;
  padding: 0 1rem;
  background: linear-gradient(180deg, var(--cl-cta-2) 0%, var(--cl-cta) 100%);
  color: #052e1f;
  font-weight: 900;
  cursor: pointer;
}

.home-category-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.7rem;
  max-width: 100%;
  margin: 0 0 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.home-category-nav::-webkit-scrollbar {
  display: none;
}

.home-category-item {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  background: rgba(30, 41, 59, 0.76);
  color: #dbeafe;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-category-item span {
  color: #6ee7b7;
  font-size: 0.78rem;
}

.home-category-item:hover,
.home-category-item:focus {
  border-color: rgba(16, 185, 129, 0.45);
  background: rgba(16, 185, 129, 0.14);
  color: #ecfdf5;
}

.home-section {
  margin: 2.5rem 0 0;
  scroll-margin-top: 88px;
}

.home-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.home-section-header h2,
.home-faq h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  letter-spacing: 0;
}

.home-section-header a {
  color: #6ee7b7;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.top-podium,
.home-card-row,
.reader-guide-grid,
.bonus-strip,
.country-card-row {
  display: grid;
  gap: 1.5rem;
}

.top-podium {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-card-row,
.reader-guide-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bonus-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.country-card-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-card,
.reader-guide-card,
.bonus-strip a,
.country-card,
.home-faq details {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--cl-radius);
  background: rgba(30, 41, 59, 0.9);
  box-shadow: var(--cl-shadow);
}

.home-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  min-height: 330px;
  height: 100%;
  padding: 20px;
  overflow: visible;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-card.mini {
  min-height: 178px;
}

.home-card:hover,
.reader-guide-card:hover,
.bonus-strip a:hover,
.country-card:hover,
.lobby-table-row:hover {
  border-color: rgba(16, 185, 129, 0.36);
  box-shadow: var(--cl-shadow-strong);
}

.home-card-image {
  position: relative;
  display: block;
  width: 78%;
  max-width: 180px;
  aspect-ratio: 268 / 148;
  margin: 0 auto;
  overflow: visible;
  background: transparent;
}

.home-card-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.home-card-image span {
  position: absolute;
  top: -0.55rem;
  left: -0.65rem;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: var(--cl-gold);
  color: #111827;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.26);
}

.home-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.55rem;
  text-align: center;
}

.home-card-body h3 {
  min-height: 23px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: 0;
}

.home-card-body p {
  display: -webkit-box;
  min-height: 46px;
  margin: 0;
  overflow: hidden;
  color: var(--cl-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-card.mini .home-card-body p {
  min-height: 23px;
}

.pay-icon-row,
.table-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pay-icon-row {
  justify-content: center;
  margin-top: 0.15rem;
}

.pay-chip {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 0.28rem;
  padding: 0.18rem 0.46rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.46);
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.pay-chip svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: rgba(16, 185, 129, 0.16);
  stroke: #6ee7b7;
  stroke-width: 2;
}

.home-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: auto;
}

.home-card-actions.single {
  grid-template-columns: 1fr;
}

/* Comparison rows */
.lobby-table {
  display: grid;
  gap: 1rem;
}

.lobby-table-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-height: 94px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--cl-radius);
  background: rgba(30, 41, 59, 0.9);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.18);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.table-brand {
  display: grid;
  grid-template-columns: 38px 120px minmax(0, 1fr);
  flex: 1 1 330px;
  gap: 0.75rem;
  align-items: center;
}

.table-brand > span {
  color: #6ee7b7;
  font-weight: 900;
  text-align: center;
}

.table-brand img {
  width: 120px;
  aspect-ratio: 268 / 148;
  border-radius: 10px;
  object-fit: contain;
  background: transparent;
}

.table-brand strong,
.table-brand em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table-brand strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
  white-space: nowrap;
}

.table-brand em {
  color: var(--cl-muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.5;
}

.table-payments {
  flex: 1 1 230px;
  justify-content: flex-start;
}

.table-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 0 0 176px;
  gap: 0.55rem;
}

/* Small sections */
.reader-guide-card,
.bonus-strip a,
.country-card {
  display: grid;
  align-content: start;
  gap: 0.42rem;
  min-height: 116px;
  padding: 1rem;
  color: var(--cl-text);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reader-guide-card strong,
.bonus-strip strong,
.country-card strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.3;
}

.reader-guide-card span,
.bonus-strip span,
.country-card span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--cl-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-faq {
  max-width: 900px;
  margin: 2.5rem auto 0;
}

.home-faq h2 {
  margin-bottom: 1rem;
}

.home-faq details {
  padding: 0.85rem 1rem;
}

.home-faq details + details,
.faq-item + .faq-item {
  margin-top: 0.7rem;
}

.home-faq summary,
.faq-item summary {
  min-height: 38px;
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

.home-faq p,
.faq-item p {
  margin: 0.65rem 0 0;
  color: #cbd5e1;
}

/* Review and country pages */
.review-shell {
  max-width: 1440px;
  margin: 0 auto 3rem;
  padding: 1.25rem;
}

.cl-breadcrumb {
  margin: 0 0 1rem;
  color: var(--cl-muted);
  font-size: 0.9rem;
}

.cl-breadcrumb a {
  color: #6ee7b7;
}

.cl-breadcrumb span {
  margin-inline: 0.35rem;
}

.review-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 320px;
  gap: 1.5rem;
  align-items: start;
}

.review-toc,
.review-sticky-cta {
  position: sticky;
  top: 88px;
}

.review-toc,
.review-sticky-cta,
.review-hero-copy,
.review-score-card,
.content-section {
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  background: rgba(30, 41, 59, 0.9);
  box-shadow: var(--cl-shadow);
}

.review-toc {
  padding: 1rem;
}

.review-toc span {
  display: block;
  margin-bottom: 0.7rem;
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-toc nav {
  display: grid;
  gap: 0.35rem;
}

.review-toc a {
  display: block;
  border-radius: 10px;
  padding: 0.48rem 0.58rem;
  color: var(--cl-muted);
  text-decoration: none;
}

.review-toc a:hover,
.review-toc a.is-active {
  background: rgba(16, 185, 129, 0.12);
  color: #ecfdf5;
}

.review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.country-hero {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.review-hero-copy,
.review-score-card,
.content-section {
  padding: 1.15rem;
}

.review-hero h1 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.review-hero p,
.content-section p,
.content-section li {
  color: #cbd5e1;
}

.review-score-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.review-score-card img,
.review-logo img,
.cta-logo-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 268 / 148;
  border-radius: 12px;
  object-fit: contain;
  background: transparent;
}

.review-score-card h2 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
}

.content-section {
  margin-bottom: 1rem;
}

.content-section h2 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.3;
}

.content-section h3 {
  color: #fff;
  font-size: 18px;
}

.quick-facts,
.pros-cons,
.two-col {
  display: grid;
  gap: 0.75rem;
}

.quick-facts,
.pros-cons,
.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-facts div,
.pros-cons > div {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  padding: 0.8rem;
  background: rgba(15, 23, 42, 0.42);
}

.quick-facts span,
.fact-list dt,
.cta-facts dt {
  display: block;
  color: var(--cl-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts strong,
.fact-list dd,
.cta-facts dd {
  display: block;
  margin: 0.15rem 0 0;
  color: #f8fafc;
  overflow-wrap: anywhere;
}

.content-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

.content-section li + li {
  margin-top: 0.45rem;
}

.disclosure-note,
.responsible-note {
  border-left: 4px solid var(--cl-cta);
  background: rgba(16, 185, 129, 0.1);
}

.source-row,
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.related-grid a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  background: rgba(15, 23, 42, 0.42);
  color: #d1fae5;
  font-weight: 800;
  text-decoration: none;
}

.faq-item {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: rgba(15, 23, 42, 0.42);
}

.review-sticky-cta {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem;
}

.cta-logo-frame {
  display: grid;
  place-items: center;
  width: 78%;
  max-width: 180px;
  aspect-ratio: 268 / 148;
  margin: 0 auto;
}

.review-sticky-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
}

.review-sticky-cta p {
  margin: 0;
  color: #cbd5e1;
}

.cta-facts {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.cta-facts div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 0.45rem;
  padding: 0.58rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.42);
}

.bonus-code-box {
  display: grid;
  gap: 0.22rem;
  padding: 0.75rem;
  border: 1px dashed rgba(16, 185, 129, 0.38);
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
}

.bonus-code-box span {
  color: var(--cl-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-code-box strong {
  color: #ecfdf5;
}

.cta-main,
.cta-secondary {
  width: 100%;
}

.mobile-sticky-cta {
  display: none;
}

.country-rankings {
  display: grid;
  gap: 1rem;
}

.review-card {
  display: grid;
  grid-template-columns: 56px 140px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--cl-radius);
  padding: 1rem;
  background: rgba(15, 23, 42, 0.36);
}

.review-rank {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.13);
  color: #6ee7b7;
  font-weight: 900;
}

.review-logo {
  display: grid;
  place-items: center;
  min-height: 78px;
}

.review-logo img {
  width: 120px;
}

.review-main h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 18px;
}

.review-main h3 a {
  color: #fff;
  text-decoration: none;
}

.review-main p {
  margin: 0 0 0.75rem;
  color: #cbd5e1;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  margin: 0;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

/* Footer */
.lobby-footer,
body.cl-review-page footer,
body.cl-country-page footer {
  border-top: 1px solid var(--cl-border);
  background: #060f22;
  color: var(--cl-muted);
  padding: 1.2rem 1.25rem;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.fcol {
  flex: 1 1 240px;
  min-width: 220px;
}

.fcol p,
.fcol ul {
  margin: 0.45rem 0 0;
}

.fcol ul {
  padding-left: 1rem;
}

.fcol a {
  color: #e2e8f0;
}

.footer-title {
  color: #fff;
  font-weight: 900;
}

.footer-copy {
  max-width: 1440px;
  margin: 0.9rem auto 0;
  color: var(--cl-low);
  text-align: center;
}

.brand.small {
  font-size: 1rem;
}

@media (max-width: 1180px) {
  .home-card-row,
  .reader-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .country-card-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .review-toc {
    display: none;
  }
}

@media (max-width: 900px) {
  .lobby-topbar-inner,
  .cl-review-page .lobby-topbar-inner,
  .cl-country-page .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .menu {
    width: 100%;
  }

  .home-hero,
  .top-podium,
  .home-card-row,
  .reader-guide-grid,
  .bonus-strip,
  .country-card-row,
  .review-layout,
  .review-hero,
  .country-hero,
  .quick-facts,
  .pros-cons,
  .two-col {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 1.25rem;
  }

  .home-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-card {
    min-height: 0;
  }

  .home-card-actions,
  .table-actions {
    grid-template-columns: 1fr;
  }

  .lobby-table-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .table-brand,
  .table-payments,
  .table-actions {
    flex: 1 1 100%;
  }

  .table-brand {
    grid-template-columns: 34px 96px minmax(0, 1fr);
  }

  .table-brand img {
    width: 96px;
  }

  .table-actions a,
  .table-actions span,
  .home-card-actions a {
    width: 100%;
  }

  .review-sticky-cta {
    display: none;
  }

  .review-shell {
    padding-bottom: 5.5rem;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem;
    align-items: center;
    padding: 0.65rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--cl-radius);
    background: rgba(15, 23, 42, 0.94);
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .mobile-sticky-cta span {
    overflow: hidden;
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .review-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .review-logo {
    display: none;
  }
}

@media (max-width: 560px) {
  .home-lobby-main,
  .review-shell {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .home-hero {
    gap: 1rem;
    padding-top: 1rem;
  }

  .hero-actions,
  .home-lobby-search {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .home-lobby-search button {
    width: 100%;
  }

  .home-card {
    padding: 18px;
  }

  .home-card-image {
    width: 74%;
    max-width: 170px;
  }

  .pay-icon-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .pay-icon-row::-webkit-scrollbar {
    display: none;
  }

  .fact-list {
    grid-template-columns: 1fr;
  }

  .review-hero-copy,
  .review-score-card,
  .content-section {
    padding: 1rem;
  }
}
