:root {
  --bw-bg: #fbfaf6;
  --bw-paper: #ffffff;
  --bw-paper-soft: #fff8df;
  --bw-border: #d9d3c5;
  --bw-border-dark: #bcb4a4;
  --bw-text: #161616;
  --bw-muted: #5f5a52;
  --bw-link: #0645ad;
  --bw-gold: #d8b212;
  --bw-gold-dark: #a98200;
  --bw-accent: #d8b212;
  --bw-accent-dark: #a98200;
  --bw-green: #0b7a3b;
  --bw-header: #ffffff;
  --bw-header-text: #161616;
  --bw-button-text: #ffffff;
  --bw-footer: #f0ede5;
  --bw-max-width: 1600px;
  --bw-shadow: 0 10px 30px rgba(25, 20, 8, .06);
  --bw-serif: Georgia, 'Times New Roman', Times, serif;
  --bw-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--bw-text);
  background: var(--bw-bg);
  font-family: var(--bw-sans);
  font-size: 15px;
  line-height: 1.65;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 10%, rgba(216,178,18,.10), transparent 28%),
    radial-gradient(circle at 10% 70%, rgba(255,255,255,.75), transparent 35%);
  z-index: -1;
}
a { color: var(--bw-link); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.screen-reader-text, .skip-link {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;
}
.skip-link:focus { clip: auto; clip-path: none; height: auto; width: auto; z-index: 9999; background: var(--bw-paper); padding: 10px; }

.topbar {
  border-bottom: 1px solid var(--bw-border);
  background: var(--bw-header);
  font-size: 13px;
}
.topbar-inner {
  max-width: var(--bw-max-width);
  margin: 0 auto;
  padding: 8px 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.util { display: flex; gap: 14px; white-space: nowrap; }
.util a { color: var(--bw-text); }

.masthead {
  border-bottom: 1px solid var(--bw-border);
  background: var(--bw-header);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.masthead-inner {
  max-width: var(--bw-max-width);
  margin: 0 auto;
  padding: 14px 22px;
  display: grid;
  grid-template-columns: 310px minmax(240px, 480px) auto;
  align-items: center;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--bw-text); min-width: 0; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--bw-gold), var(--bw-gold-dark));
  color: var(--bw-text); font-family: var(--bw-serif); font-size: 20px; font-weight: 700;
  box-shadow: 0 8px 20px rgba(203,160,0,.28);
  flex: 0 0 auto;
}
.brand-logo img { max-width: 72px; max-height: 52px; width: auto; height: auto; }
.brand.logo-only .brand-logo img { max-width: 260px; max-height: 72px; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-text strong { font-family: var(--bw-serif); font-size: 28px; line-height: 1; letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-text em { font-size: 10px; font-style: normal; text-transform: uppercase; letter-spacing: .32em; color: var(--bw-muted); margin-top: 5px; }
.search input {
  width: 100%; height: 42px; padding: 0 18px 0 40px;
  border: 1px solid var(--bw-border-dark); border-radius: 22px;
  background: var(--bw-paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' fill='%23968f83' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85h-.017zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") no-repeat 15px center;
  outline: none;
}
.search input:focus { border-color: var(--bw-gold); box-shadow: 0 0 0 3px rgba(216,178,18,.18); }
.mast-actions { display: flex; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }
.mast-actions a, .mast-actions li a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 38px; padding: 8px 15px;
  border: 1px solid var(--bw-border-dark);
  border-radius: 7px; background: var(--bw-paper); color: var(--bw-header-text); font-size: 13px;
}
.mast-actions a:hover { text-decoration: none; background: var(--bw-paper-soft); }
.mast-actions .btn-lang, .mast-actions .active { background: var(--bw-gold); border-color: var(--bw-gold); }
.mast-actions ul { list-style: none; padding: 0; margin: 0; display: contents; }

.layout {
  max-width: var(--bw-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1015px);
  gap: 0;
}
.sidenav { padding: 18px 22px; }
.sidenav-toggle { display: none; }
.sidebar {
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 110px);
  overflow: auto;
  padding-right: 8px;
}
.sidebar h3 {
  margin: 0 0 10px; padding: 14px 0 8px;
  font-size: 11px; color: var(--bw-muted); text-transform: uppercase; letter-spacing: .18em;
  border-bottom: 1px solid var(--bw-border);
}
.sidebar ul { list-style: none; padding: 0; margin: 0 0 12px; }
.sidebar li { margin: 2px 0; }
.sidebar a { display: block; padding: 6px 8px; color: var(--bw-text); border-radius: 4px; font-size: 13px; }
.sidebar a:hover { background: var(--bw-paper-soft); text-decoration: none; }
.sidebar-auto-toc a { line-height: 1.35; word-break: break-word; }
.sidebar-auto-toc .level-1 a { font-weight: 700; }
.sidebar-auto-toc .level-2 a { padding-left: 18px; font-size: 12px; color: var(--bw-muted); }
.sidebar .sidenav-cta {
  background: var(--bw-paper-soft); border: 1px solid var(--bw-gold); color: var(--bw-text); font-weight: 700; text-align: center; padding: 10px;
}
.lang-list a { margin-bottom: 3px; }

.article {
  background: var(--bw-paper);
  margin: 18px 0 0;
  padding: 32px 42px 44px;
  border: 1px solid var(--bw-border);
  border-radius: 4px 4px 0 0;
  box-shadow: var(--bw-shadow);
  max-width: 1015px;
  min-height: 70vh;
}
.tabs {
  display: flex; align-items: flex-end; gap: 1px;
  border-bottom: 1px solid var(--bw-border-dark);
  margin-bottom: 20px;
  overflow-x: auto;
}
.tabs a {
  color: var(--bw-text); padding: 10px 15px; border: 1px solid transparent; border-bottom: 0;
  font-size: 13px; white-space: nowrap;
}
.tabs a.active {
  border-color: var(--bw-border-dark); background: var(--bw-paper); margin-bottom: -1px; padding-bottom: 11px;
}
.tabs a:hover { background: var(--bw-paper-soft); text-decoration: none; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 15px; align-items: center;
  color: var(--bw-muted); font-size: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--bw-border);
}
.article-meta .featured { color: var(--bw-gold-dark); font-weight: 700; }
.article-meta .verified { color: var(--bw-green); font-weight: 700; }
.article-title {
  font-family: var(--bw-serif); font-size: 40px; line-height: 1.15; font-weight: 400;
  margin: 18px 0 6px; padding-bottom: 10px; border-bottom: 1px solid var(--bw-border-dark);
}
.article-subtitle { color: var(--bw-muted); font-size: 13px; font-style: italic; margin-bottom: 24px; }
.hatnote { color: var(--bw-muted); font-style: italic; font-size: 13px; margin: 18px 0; }
.lead { font-family: var(--bw-serif); font-size: 17px; line-height: 1.65; }
.entry-content { font-family: var(--bw-serif); font-size: 17px; }
.entry-content p { margin: 0 0 18px; }
.entry-content h2, .article h2 {
  font-family: var(--bw-serif); font-size: 28px; font-weight: 400;
  margin: 32px 0 14px; padding-bottom: 5px; border-bottom: 1px solid var(--bw-border-dark);
  clear: none;
}
.entry-content h3, .article h3 { font-family: var(--bw-serif); font-size: 22px; margin: 25px 0 12px; }
.entry-content ul, .entry-content ol { margin-bottom: 20px; }
.entry-content blockquote {
  margin: 24px 0; padding: 16px 20px; border-left: 4px solid var(--bw-gold); background: var(--bw-paper-soft); color: var(--bw-text);
}

.infobox {
  float: right; width: 320px; margin: 0 0 22px 28px;
  border: 1px solid var(--bw-border-dark); background: var(--bw-paper-soft); font-family: var(--bw-sans); font-size: 13px;
}
.infobox-title {
  text-align: center; font-family: var(--bw-serif); font-size: 18px; font-weight: 700;
  padding: 8px 10px; background: var(--bw-paper-soft); border-bottom: 1px solid var(--bw-gold-dark);
}
.infobox-img { text-align: center; padding: 16px 12px; background: var(--bw-paper); border-bottom: 1px solid var(--bw-border); }
.infobox-img img { max-width: 180px; max-height: 80px; object-fit: contain; }
.infobox .caption { display: block; margin-top: 8px; color: var(--bw-muted); font-size: 11px; font-style: italic; }
.infobox table { width: 100%; border-collapse: collapse; }
.infobox th, .infobox td { border-bottom: 1px solid var(--bw-border); padding: 8px 12px; vertical-align: top; text-align: left; }
.infobox th { width: 42%; background: var(--bw-paper-soft); font-weight: 600; }
.infobox-cta { padding: 12px; text-align: center; }
.infobox-cta a {
  display: block; padding: 10px 14px; background: linear-gradient(180deg, var(--bw-gold), var(--bw-gold-dark));
  color: var(--bw-button-text); font-weight: 800; border-radius: 5px; text-transform: uppercase; letter-spacing: .03em;
}
.infobox-cta a:hover { text-decoration: none; filter: brightness(.97); }
.infobox-cta small { display: block; margin-top: 7px; color: var(--bw-muted); }

.notice {
  display: flex; gap: 14px; align-items: center;
  margin: 22px 0; padding: 14px 16px;
  background: var(--bw-paper-soft); border: 1px solid var(--bw-gold);
  font-family: var(--bw-sans); font-size: 13px;
}
.notice-icon { font-size: 24px; color: var(--bw-text); }
.cta-banner {
  margin: 22px 0; padding: 20px 24px;
  display: grid; grid-template-columns: 42px 1fr auto; gap: 18px; align-items: center;
  background: linear-gradient(180deg, var(--bw-paper-soft), var(--bw-paper));
  border: 1px solid var(--bw-gold); border-radius: 5px;
  font-family: var(--bw-sans);
}
.cta-banner .icon {
  width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(145deg, var(--bw-gold), var(--bw-gold-dark));
  display: inline-flex; align-items: center; justify-content: center; color: var(--bw-text); font-weight: 800;
}
.cta-banner .text { display: flex; flex-direction: column; gap: 3px; }
.cta-banner .text strong { font-family: var(--bw-serif); font-size: 18px; }
.cta-banner .text small { color: var(--bw-muted); font-style: italic; }
.btn, .cta-banner .btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; min-width: 130px; border-radius: 5px;
  background: linear-gradient(180deg, var(--bw-gold), var(--bw-gold-dark)); color: var(--bw-button-text); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: 13px;
  box-shadow: inset 0 1px rgba(255,255,255,.35);
}
.btn:hover { text-decoration: none; filter: brightness(.96); }
.toc {
  display: inline-block; min-width: 260px; max-width: 100%; margin: 2px 0 22px;
  padding: 12px 18px; border: 1px solid var(--bw-border-dark); background: var(--bw-paper-soft);
  font-family: var(--bw-sans); font-size: 13px;
}
.toc-title { text-align: center; font-weight: 800; margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 22px; }
.toc .level-3 { margin-left: 18px; font-size: 12px; }

.wikitable, .entry-content table {
  border-collapse: collapse; width: 100%; margin: 20px 0 24px; font-family: var(--bw-sans); font-size: 13px;
}
.wikitable caption, .entry-content caption { text-align: left; padding-bottom: 8px; color: var(--bw-text); }
.wikitable th, .wikitable td, .entry-content th, .entry-content td {
  border: 1px solid var(--bw-border-dark); padding: 9px 12px; text-align: left;
}
.wikitable th, .entry-content th { background: var(--bw-paper-soft); }
.categories {
  clear: both; margin-top: 35px; padding: 13px 15px; background: var(--bw-paper-soft); border: 1px solid var(--bw-border); font-size: 13px;
}
.categories a { display: inline-block; margin: 2px 5px; }
.tag-list { margin-left: 8px; }

.article-grid { display: grid; gap: 16px; }
.article-card {
  display: grid; grid-template-columns: 180px 1fr; gap: 18px;
  border: 1px solid var(--bw-border); background: var(--bw-paper); padding: 12px;
}
.card-thumb img { width: 180px; height: 120px; object-fit: cover; display: block; }
.card-body h2 { margin: 0 0 6px; padding: 0; border: 0; font-size: 24px; }
.card-body p { margin: 0 0 12px; color: var(--bw-text); }
.card-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--bw-muted); font-size: 13px; }
.pagination { margin-top: 24px; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination span { border: 1px solid var(--bw-border); padding: 7px 11px; background: var(--bw-paper); }

.site-footer {
  border-top: 1px solid var(--bw-border-dark); margin-top: 0; background: var(--bw-footer); font-size: 13px;
}
.site-footer .inner {
  max-width: 1180px; margin: 0 auto; padding: 28px 22px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.site-footer h4 { margin: 0 0 9px; font-family: var(--bw-serif); font-size: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 5px 0; }
.footer-langs a { display: block; }
.site-footer-bottom { text-align: center; border-top: 1px solid var(--bw-border); padding: 16px 22px 22px; color: var(--bw-muted); }
.sticky-cta {
  position: fixed; right: 24px; bottom: 18px; z-index: 60;
  padding: 14px 24px; border-radius: 28px;
  background: linear-gradient(180deg, var(--bw-gold), var(--bw-gold-dark));
  color: var(--bw-button-text); font-weight: 900; box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.sticky-cta::before { content: '★ '; }
.sticky-cta:hover { text-decoration: none; filter: brightness(.98); }

.comments-area { clear: both; margin-top: 36px; border-top: 1px solid var(--bw-border); padding-top: 20px; }

body.rtl {
  direction: rtl;
}
body.rtl .topbar-inner, body.rtl .masthead-inner, body.rtl .layout, body.rtl .site-footer .inner { direction: rtl; }
body.rtl .infobox { float: left; margin: 0 28px 22px 0; }
body.rtl .infobox th, body.rtl .infobox td, body.rtl .wikitable th, body.rtl .wikitable td, body.rtl .entry-content th, body.rtl .entry-content td { text-align: right; }
body.rtl .sidebar-auto-toc .level-2 a { padding-left: 8px; padding-right: 18px; }
body.rtl .search input { padding: 0 40px 0 18px; background-position: calc(100% - 15px) center; }
body.rtl .sticky-cta { right: auto; left: 24px; }

@media (max-width: 1180px) {
  .masthead-inner { grid-template-columns: 280px 1fr; }
  .mast-actions { grid-column: 1 / -1; justify-content: flex-start; }
  .layout { grid-template-columns: 220px minmax(0, 1fr); }
  .article { margin-right: 18px; }
}
@media (max-width: 960px) {
  .topbar-inner { flex-direction: column; gap: 6px; }
  .util { flex-wrap: wrap; }
  .masthead { position: relative; }
  .masthead-inner { grid-template-columns: 1fr; gap: 12px; }
  .brand-text strong { font-size: 24px; }
  .layout { display: block; }
  .sidenav { padding: 12px 14px 0; }
  .sidenav-toggle {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 14px; background: var(--bw-paper); border: 1px solid var(--bw-border); border-radius: 5px; cursor: pointer;
  }
  .sidebar { position: static; max-height: none; background: var(--bw-paper); border: 1px solid var(--bw-border); border-top: 0; padding: 12px 14px; }
  .article { margin: 12px 14px 0; padding: 24px 18px 34px; max-width: none; }
  .article-title { font-size: 34px; }
  .infobox { float: none; width: 100%; margin: 0 0 22px; }
  .cta-banner { grid-template-columns: 42px 1fr; }
  .cta-banner .btn { grid-column: 1 / -1; width: 100%; }
  .article-card { grid-template-columns: 1fr; }
  .card-thumb img { width: 100%; height: auto; }
  .site-footer .inner { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta { right: 12px; bottom: 12px; padding: 12px 17px; font-size: 13px; }
}
@media (max-width: 560px) {
  body { font-size: 14px; }
  .article { padding: 20px 14px 32px; }
  .article-title { font-size: 30px; }
  .entry-content, .lead { font-size: 16px; }
  .tabs a { padding: 9px 11px; }
  .site-footer .inner { grid-template-columns: 1fr; }
  .sticky-cta { left: 12px; right: 12px; text-align: center; justify-content: center; display: flex; }
}

@media print {
  .topbar, .masthead, .sidenav, .site-footer, .sticky-cta, .cta-banner, .tabs { display: none !important; }
  .layout { display: block; max-width: none; }
  .article { border: 0; box-shadow: none; padding: 0; margin: 0; }
  .infobox { break-inside: avoid; }
}
.util li,
.mast-actions li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Arabic / RTL mode */
body.betwiki-rtl {
  direction: rtl;
  unicode-bidi: embed;
}
body.betwiki-rtl .topbar-inner,
body.betwiki-rtl .masthead-inner,
body.betwiki-rtl .layout,
body.betwiki-rtl .site-footer .inner,
body.betwiki-rtl .cta-banner,
body.betwiki-rtl .article-card {
  direction: rtl;
}
body.betwiki-rtl .article,
body.betwiki-rtl .entry-content,
body.betwiki-rtl .article-subtitle,
body.betwiki-rtl .hatnote,
body.betwiki-rtl .lead,
body.betwiki-rtl .notice,
body.betwiki-rtl .toc,
body.betwiki-rtl .categories,
body.betwiki-rtl .site-footer,
body.betwiki-rtl .card-body {
  text-align: right;
}
body.betwiki-rtl .brand-text em {
  letter-spacing: .12em;
}
body.betwiki-rtl .search input {
  padding: 0 40px 0 18px;
  background-position: calc(100% - 15px) center;
  text-align: right;
}
body.betwiki-rtl .tabs,
body.betwiki-rtl .article-meta,
body.betwiki-rtl .mast-actions,
body.betwiki-rtl .util {
  direction: rtl;
}
body.betwiki-rtl .infobox {
  float: left;
  margin: 0 28px 22px 0;
}
body.betwiki-rtl .infobox th,
body.betwiki-rtl .infobox td,
body.betwiki-rtl .wikitable th,
body.betwiki-rtl .wikitable td,
body.betwiki-rtl .entry-content th,
body.betwiki-rtl .entry-content td {
  text-align: right;
}
body.betwiki-rtl .toc ol,
body.betwiki-rtl .entry-content ol {
  padding-left: 0;
  padding-right: 22px;
}
body.betwiki-rtl .entry-content ul {
  padding-left: 0;
  padding-right: 22px;
}
body.betwiki-rtl .sidebar-auto-toc .level-2 a {
  padding-left: 8px;
  padding-right: 18px;
}
body.betwiki-rtl .cta-banner .text {
  text-align: right;
}
body.betwiki-rtl .card-meta {
  direction: rtl;
}
body.betwiki-rtl .sticky-cta {
  right: auto;
  left: 24px;
}
@media (max-width: 960px) {
  body.betwiki-rtl .infobox {
    float: none;
    margin: 0 0 22px;
  }
}
@media (max-width: 560px) {
  body.betwiki-rtl .sticky-cta {
    right: 12px;
    left: 12px;
  }
}

.topbar,
.topbar a,
.masthead,
.masthead a,
.brand,
.brand-text strong {
  color: var(--bw-header-text);
}

/* Responsive top widgets: CTA + infobox */
.top-wiki-widgets {
  clear: both;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 24px;
  align-items: stretch;
  margin: 22px 0 24px;
}
.top-wiki-widgets.only-cta {
  grid-template-columns: 1fr;
}
.top-wiki-widgets.only-infobox {
  grid-template-columns: minmax(280px, 320px);
  justify-content: end;
}
.top-wiki-widgets .cta-banner,
.top-wiki-widgets .infobox {
  float: none;
  width: 100%;
  height: 100%;
  margin: 0;
}
.top-wiki-widgets .cta-banner {
  min-height: 100%;
}
.top-wiki-widgets .top-wiki-cta,
.top-wiki-widgets .top-wiki-infobox {
  min-width: 0;
}
body.betwiki-rtl .top-wiki-widgets {
  direction: rtl;
}
body.betwiki-rtl .top-wiki-widgets.only-infobox {
  justify-content: start;
}
@media (max-width: 960px) {
  .top-wiki-widgets,
  .top-wiki-widgets.only-infobox {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-content: stretch;
  }
  .top-wiki-widgets .infobox {
    width: 100%;
  }
}

.entry-content h1 {
  font-family: var(--bw-serif);
  font-size: 32px;
  font-weight: 400;
  margin: 34px 0 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--bw-border-dark);
}
.toc .level-1 {
  font-weight: 700;
}
.toc .level-2 {
  margin-left: 18px;
  font-size: 12px;
}
body.betwiki-rtl .toc .level-2 {
  margin-left: 0;
  margin-right: 18px;
}

/* Built-in language mode without multilingual plugin */
body.betwiki-lang-ar,
body.betwiki-lang-dv {
  --bw-sans: Tahoma, Arial, sans-serif;
}
body.betwiki-lang-ar .entry-content,
body.betwiki-lang-ar .lead,
body.betwiki-lang-ar .article-subtitle,
body.betwiki-lang-ar .hatnote,
body.betwiki-lang-ar .infobox,
body.betwiki-lang-ar .cta-banner,
body.betwiki-lang-dv .entry-content,
body.betwiki-lang-dv .lead,
body.betwiki-lang-dv .article-subtitle,
body.betwiki-lang-dv .hatnote,
body.betwiki-lang-dv .infobox,
body.betwiki-lang-dv .cta-banner {
  font-family: Tahoma, Arial, sans-serif;
}

/* Casino directory */
.casino-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 28px;
}
.casino-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 190px;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--bw-border-dark);
  background: var(--bw-paper-soft);
}
.casino-card-logo {
  width: 96px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bw-border);
  background: var(--bw-paper);
  overflow: hidden;
}
.casino-card-logo img {
  max-width: 86px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.casino-card-logo span {
  font-size: 30px;
  font-weight: 800;
  color: var(--bw-accent);
}
.casino-card-content h2 {
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  font-size: 22px;
}
.casino-card-content p {
  margin: 8px 0 0;
}
.casino-card-content small {
  display: block;
  margin-top: 6px;
  color: var(--bw-muted);
  font-style: italic;
}
.casino-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0;
}
.casino-card-meta span {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid var(--bw-border);
  background: var(--bw-paper);
  font-size: 12px;
  font-weight: 700;
}
.casino-card-action {
  display: grid;
  gap: 8px;
  justify-items: stretch;
}
.casino-card-action .btn,
.casino-hero-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--bw-gold), var(--bw-gold-dark));
  color: var(--bw-button-text);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid var(--bw-gold-dark);
  box-shadow: inset 0 1px rgba(255,255,255,.28);
}
.casino-card-action .btn:hover,
.casino-hero-card .btn:hover {
  filter: brightness(.96);
  text-decoration: none;
}
.casino-read {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.casino-hero-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  margin: 18px 0 24px;
  border: 1px solid var(--bw-border-dark);
  background: var(--bw-paper-soft);
}
.casino-hero-logo {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bw-border);
  background: var(--bw-paper);
}
.casino-hero-logo img {
  max-width: 108px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.casino-hero-content strong,
.casino-hero-content span,
.casino-hero-content small {
  display: block;
}
.casino-hero-content strong {
  font-size: 22px;
  margin-bottom: 4px;
}
.casino-hero-content small {
  color: var(--bw-muted);
  margin-top: 3px;
}
body.betwiki-rtl .casino-card,
body.betwiki-rtl .casino-hero-card,
body.rtl .casino-card,
body.rtl .casino-hero-card {
  direction: rtl;
  text-align: right;
}
@media (max-width: 760px) {
  .casino-card,
  .casino-hero-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .casino-card-logo,
  .casino-hero-logo {
    margin: 0 auto;
  }
}


/* v2.9 mobile UX and Core Web Vitals polish */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.sticky-cta::before {
  content: none;
}

@media (max-width: 960px) {
  body.betwiki-has-sticky-cta {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
  .topbar-inner,
  .masthead-inner,
  .layout,
  .article,
  .top-wiki-widgets,
  .cta-banner,
  .infobox,
  .toc,
  .casino-card,
  .casino-hero-card {
    max-width: 100%;
  }
  .article {
    overflow-wrap: anywhere;
  }
  .tabs {
    -webkit-overflow-scrolling: touch;
  }
  .top-wiki-widgets,
  .top-wiki-widgets.only-infobox,
  .top-wiki-widgets.only-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-content: stretch;
  }
  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 16px 14px;
  }
  .cta-banner .icon {
    margin: 0 auto;
  }
  .cta-banner .text {
    align-items: center;
  }
  .cta-banner .btn {
    width: 100%;
    max-width: 320px;
    min-height: 44px;
    margin: 0 auto;
    padding: 10px 14px;
  }
  .sticky-cta,
  body.rtl .sticky-cta,
  body.betwiki-rtl .sticky-cta {
    left: 50%;
    right: auto;
    bottom: calc(12px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    width: auto;
    min-width: 0;
    max-width: min(320px, calc(100vw - 32px));
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: .01em;
    z-index: 70;
  }
}

@media (max-width: 560px) {
  .article {
    margin-left: 12px;
    margin-right: 12px;
  }
  .sticky-cta,
  body.rtl .sticky-cta,
  body.betwiki-rtl .sticky-cta {
    max-width: calc(100vw - 28px);
    padding: 10px 16px;
    font-size: 12px;
  }
  .sticky-cta span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

