:root {
  --bg: #111111;
  --panel: #1f1f1f;
  --panel-soft: #222222;
  --green: #145928;
  --green-soft: #77b978;
  --gold: #ffd449;
  --red: #f55551;
  --text: #ffffff;
  --muted: #c9c9c9;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --container: 1060px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: Arial, Helvetica, sans-serif;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(36px, 4.4vw, 54px);
  font-weight: 400;
}

h2 {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 400;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 18px;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #111111;
  border-bottom: 0;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo img {
  width: 148px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a,
.nav-dropdown summary {
  color: var(--text);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-dropdown:hover summary,
.nav-dropdown[open] summary,
.nav-dropdown[data-current="true"] summary,
.nav-dropdown:has(a[aria-current="page"]) summary {
  color: var(--gold);
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "▾";
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  transform: translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 30;
  display: none;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #171717;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.nav-dropdown-menu-wide {
  min-width: 240px;
}

.nav-dropdown[open] .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  display: grid;
  gap: 2px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: rgba(245, 207, 57, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(245, 85, 81, 0.35);
}

.btn:hover {
  text-decoration: none;
  filter: brightness(1.04);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 6px;
  font-size: 24px;
}

.hero {
  padding: 44px 0 48px;
  background: #1f1f1f;
  border-bottom: 0;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 800;
}

.hero-rating strong {
  color: #e5e5e5;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy {
  color: var(--muted);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 28px;
}

.btn-secondary {
  background: #444444;
  color: var(--text);
  border: 0;
  box-shadow: 0 0 18px rgba(245, 85, 81, 0.18);
}

.btn-table {
  min-height: 44px;
  padding: 10px 18px;
  white-space: nowrap;
  font-size: 14px;
  box-shadow: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 690px;
}

.stat {
  min-height: 96px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #2a2a2a;
  border: 0;
  border-radius: var(--radius);
  padding: 18px;
}

.stat strong {
  display: block;
  color: #f1f1f1;
  font-size: 17px;
  font-family: Arial, Helvetica, sans-serif;
}

.stat span {
  color: #a8a8a8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-media img {
  width: 330px;
  border-radius: 0;
  box-shadow: none;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: transparent;
}

.section-intro {
  max-width: 1000px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.75;
}

.toc {
  display: block;
  width: 100%;
  margin: 26px 0 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #131313;
  overflow: hidden;
}

.toc details {
  width: 100%;
}

.toc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.toc summary::-webkit-details-marker {
  display: none;
}

.toc summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.toc details[open] summary::after {
  content: "-";
}

.toc-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 8px 18px 18px;
  border-top: 1px solid var(--line);
}

.toc a {
  display: block;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  padding: 11px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.toc a:last-child {
  border-bottom: 0;
}

.toc a:hover {
  color: var(--gold);
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #1c1c1c;
  border-radius: var(--radius);
  overflow: hidden;
}

th,
td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #262626;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #202020;
  border: 0;
  border-radius: var(--radius);
  padding: 24px;
}

.card h3 {
  color: var(--gold);
}

.author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.author img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.author strong,
.author span {
  display: block;
}

.author span {
  color: #777777;
  font-size: 14px;
}

.author .author-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.editorial-note {
  margin-bottom: 28px;
  padding: 22px 26px;
  background: #242424;
  border-left: 4px solid #ff4f73;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.editorial-note p {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.editorial-note strong {
  color: #ff5d7a;
}

#details > .container,
#details .container {
  padding: 40px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.horizontal {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 290px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x proximity;
}

.horizontal > * {
  scroll-snap-align: start;
}

.symbol-card {
  min-height: 360px;
}

.symbol-card img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin-bottom: 14px;
}

.pros-cons {
  grid-template-columns: 1fr 1fr;
}

.pros-cons ul {
  margin: 0;
  padding-left: 22px;
}

.pros li::marker {
  color: #4caf50;
}

.cons li::marker {
  color: #f37262;
}

.geo-image {
  max-height: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
}

.steps {
  display: grid;
  gap: 26px;
}

.step {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 24px;
  align-items: center;
}

.step-number {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: var(--gold);
  color: #1f1d1d;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.step img,
.game-card img,
.shot img {
  border-radius: var(--radius);
}

.step .strategy-visual {
  width: 100%;
  height: 260px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.strategy-visual-a {
  object-position: 42% 48%;
  filter: saturate(0.96) contrast(1.06);
}

.strategy-visual-b {
  object-position: 58% 50%;
  filter: saturate(1.08) contrast(1.03);
}

.strategy-visual-c {
  object-position: 50% 44%;
  filter: saturate(1.14) brightness(0.96);
}

.strategy-visual-d {
  object-position: 54% 46%;
  filter: saturate(0.9) contrast(1.12);
}

.strategy-visual-e {
  object-position: 46% 52%;
  filter: saturate(1.02) brightness(0.92) contrast(1.08);
}

.games {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.game-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  margin-bottom: 16px;
}

.game-card {
  display: block;
  min-height: 430px;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.game-card:hover {
  transform: translateY(-3px);
  background: #252525;
  text-decoration: none;
}

.game-card p {
  color: var(--text);
}

.series-table-heading {
  margin-top: 30px;
  color: #ffffff;
  font-size: 32px;
}

.reviews {
  grid-template-columns: repeat(3, 1fr);
}

.rating {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
}

.shots {
  grid-auto-columns: minmax(185px, 245px);
}

.shot img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.faq details {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.page-hero {
  padding: 58px 0;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.article-hero {
  padding: 58px 0 64px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.55fr);
  gap: 48px;
  align-items: center;
}

.article-hero-copy h1 {
  max-width: 920px;
  margin: 18px 0 24px;
  font-size: clamp(42px, 6vw, 74px);
}

.article-hero-copy p {
  max-width: 820px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.75;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--gold);
}

.article-hero-media {
  display: flex;
  justify-content: center;
}

.article-hero-media img {
  width: min(100%, 340px);
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content {
  max-width: 880px;
}

.content h2 {
  margin-top: 34px;
  font-size: clamp(26px, 3vw, 38px);
}

.site-footer {
  background: #101010;
  border-top: 1px solid var(--line);
}

.footer-top {
  padding: 40px 0;
  background: #151515;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  padding: 20px 0;
  color: var(--muted);
  font-size: 15px;
}

.regulator {
  width: 150px;
  margin-top: 14px;
}

.play-page .hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 520px);
  gap: 42px;
  overflow: hidden;
}

.play-page .hero-copy {
  max-width: 560px;
  overflow-wrap: anywhere;
}

.play-media {
  width: 100%;
  min-width: 0;
}

.play-media img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.demo-section {
  padding-top: 54px;
}

.demo-head {
  max-width: 860px;
  margin-bottom: 26px;
}

.demo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 520px;
  overflow: hidden;
  background: #191919;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.demo-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

.demo-preview {
  position: relative;
  width: 100%;
  height: 100%;
}

.demo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: brightness(0.72);
}

.demo-preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.5));
}

.demo-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.demo-fallback {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 2;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 999px;
  font-size: 13px;
}

.demo-copy-section {
  padding-top: 42px;
}

.slot-review {
  color: var(--muted);
}

.slot-review h1,
.slot-review h2,
.slot-review h3 {
  color: var(--text);
}

.slot-review h1 {
  font-size: clamp(36px, 4.8vw, 58px);
}

.slot-review h2 {
  margin-top: 48px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.slot-review h3 {
  margin-top: 30px;
  font-size: 24px;
  color: var(--gold);
}

.slot-review table {
  display: block;
  overflow-x: auto;
  margin: 24px 0 34px;
  min-width: 680px;
}

.slot-review .symbol-cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  font-weight: 700;
  color: var(--text);
}

.slot-review .symbol-cell img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.slot-review .multi-symbol {
  gap: 6px;
  flex-wrap: wrap;
}

.slot-review .multi-symbol img {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}

.slot-review ul {
  margin: 0 0 24px;
  padding-left: 24px;
}

.slot-review li {
  margin-bottom: 10px;
}

.slot-review strong {
  color: #f4f4f4;
}

.slot-review .article-image {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  margin: 28px 0;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.casino-review .btn {
  margin: 10px 0 18px;
}

.slot-review .table-scroll {
  overflow-x: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox img {
  max-height: 92vh;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  body {
    font-size: 17px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown summary {
    padding: 4px 0;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    background: #151515;
    box-shadow: none;
  }

  .nav-dropdown[open] .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    display: grid;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .btn {
    width: 100%;
  }

  .hero-grid,
  .article-hero-grid,
  .split,
  .step,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .play-page .hero-grid {
    grid-template-columns: 1fr;
  }

  .play-media img {
    max-height: 520px;
  }

  .demo-frame {
    min-height: 420px;
  }

  .hero-media img {
    width: min(320px, 80vw);
  }

  .article-hero {
    padding-top: 38px;
  }

  .article-hero-media {
    justify-content: flex-start;
  }

  .article-hero-media img {
    width: min(280px, 82vw);
    max-height: 420px;
  }

  .step .strategy-visual {
    height: 220px;
  }

  .stats,
  .grid,
  .games,
  .reviews,
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .stats,
  .grid,
  .games,
  .reviews,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .play-media img {
    max-height: none;
    aspect-ratio: 10 / 13;
  }

  .demo-frame {
    aspect-ratio: 9 / 14;
    min-height: 560px;
  }

  .demo-preview-overlay {
    flex-direction: column;
  }

  .demo-preview-overlay .btn {
    width: min(100%, 280px);
  }

  .hero-media img:nth-child(2) {
    margin-top: 0;
  }
}
