:root {
  --ink: #17172b;
  --muted: #646477;
  --paper: #f8f8f4;
  --cream: #fff8d6;
  --yellow: #ffd633;
  --orange: #f1b900;
  --red: #e64a30;
  --green: #1f8f55;
  --line: #e7e3d8;
  --shadow: 0 20px 60px rgba(69, 42, 10, 0.12);
  --radius: 24px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    17px/1.72 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  text-rendering: optimizeLegibility;
}
body.no-scroll {
  overflow: hidden;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 100;
  background: #fff;
  padding: 0.7rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(20, 20, 31, 0.94);
  border-bottom: 1px solid rgba(23, 23, 43, 0.08);
  backdrop-filter: blur(18px);
}
.site-header .container {
  width: min(calc(100% - 40px), 1380px);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.brand img {
  width: 52px;
  height: 46px;
  object-fit: contain;
}
.brand span {
  font-size: 1.05rem;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav a,
.nav summary {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 750;
  white-space: nowrap;
}
.nav a:hover,
.nav a:focus-visible,
.nav summary:hover,
.nav summary:focus-visible {
  color: var(--yellow);
}
.nav .header-cta {
  color: var(--ink);
  background: var(--yellow);
  padding: 10px 18px;
  border-radius: 999px;
}
.nav-group {
  position: relative;
}
.nav-group summary {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
}
.nav-group summary::-webkit-details-marker {
  display: none;
}
.nav-group summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}
.nav-group[open] summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}
.nav-count {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding-inline: 5px;
  border-radius: 999px;
  background: rgba(255, 214, 51, 0.15);
  color: var(--yellow);
  font-size: 0.65rem;
  line-height: 1;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 240px;
  padding: 10px;
  border: 1px solid #3d3d48;
  border-radius: 16px;
  background: #1d1d29;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: -20px 0 auto;
  height: 20px;
}
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}
.nav-dropdown .nav-overview {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  border: 1px solid #4b4b58;
  color: var(--yellow);
}
.nav-mega {
  display: grid;
  grid-template-columns: repeat(2, minmax(185px, 1fr));
  width: min(560px, calc(100vw - 40px));
  max-height: min(620px, 72vh);
  overflow-y: auto;
}
.nav-games .nav-dropdown {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  width: min(760px, calc(100vw - 40px));
}
.nav-games .nav-dropdown {
  left: 35%;
}
.nav-casinos .nav-dropdown {
  left: 45%;
}
.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  padding: 9px 12px;
  border: 1px solid #494956;
  border-radius: 10px;
  background: #242431;
  color: #fff;
  font: inherit;
  font-weight: 800;
}
.menu-icon {
  display: grid;
  gap: 3px;
  width: 17px;
}
.menu-icon i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 62px;
  background: radial-gradient(
    circle at 84% 12%,
    #363536 0,
    #24242b 31%,
    #14141f 72%
  );
  color: #fff;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 214, 51, 0.13);
}
.hero::before {
  width: 460px;
  height: 460px;
  right: -160px;
  top: -260px;
}
.hero::after {
  width: 240px;
  height: 240px;
  left: -90px;
  bottom: -140px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 54px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 4px;
  border-radius: 4px;
  background: var(--orange);
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.045em;
}
h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.65rem, 6.5vw, 5.6rem);
  font-weight: 950;
}
.lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: #d7d6df;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 25px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(255, 214, 51, 0.18);
  text-decoration: none;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-2px);
}
.button.secondary {
  background: transparent;
  color: #fff;
  border-color: var(--yellow);
  box-shadow: none;
}
.hero-art {
  position: relative;
}
.hero-art img {
  width: min(100%, 430px);
  margin-inline: auto;
  filter: drop-shadow(0 26px 24px rgba(116, 58, 5, 0.22));
}
.hero-note {
  position: absolute;
  right: 0;
  bottom: 12px;
  padding: 10px 16px;
  border: 1px solid var(--yellow);
  border-radius: 14px;
  background: rgba(20, 20, 31, 0.88);
  color: var(--yellow);
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  font-weight: 850;
  transform: rotate(-3deg);
}

.facts-wrap {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}
.facts-table {
  width: 100%;
  table-layout: fixed;
  margin: 0;
  overflow: hidden;
  border: 1px solid #3d3d48;
  border-spacing: 0;
  border-radius: 20px;
  background: #1b1b27;
  color: #fff;
  box-shadow: var(--shadow);
}
.facts-table th,
.facts-table td {
  padding-inline: 18px;
  border-right: 1px solid #3d3d48;
  text-align: left;
}
.facts-table th:last-child,
.facts-table td:last-child {
  border-right: 0;
}
.facts-table th {
  padding-top: 16px;
  padding-bottom: 2px;
  color: #aeadbb;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.facts-table td {
  padding-top: 1px;
  padding-bottom: 17px;
  color: var(--yellow);
  font-size: 0.98rem;
  font-weight: 900;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 68px;
  padding-block: 76px 90px;
}
.article {
  min-width: 0;
}
.article h2 {
  scroll-margin-top: 100px;
  margin: 64px 0 20px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.article h2:first-child {
  margin-top: 0;
}
.article h3 {
  margin-top: 38px;
  font-size: 1.55rem;
}
.article p {
  color: #4e4d5b;
}
.article > p:first-of-type {
  color: var(--ink);
  font-size: 1.12rem;
}
.article ul {
  padding-left: 1.35rem;
}
.article li {
  margin: 0.5rem 0;
  padding-left: 0.25rem;
}
.article li::marker {
  color: var(--orange);
}
.article-image {
  margin: 34px 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.article-image img {
  width: 100%;
}
.article-image figcaption {
  padding: 11px 16px;
  background: #fff;
  color: var(--muted);
  font-size: 0.75rem;
}
.migrated-content img {
  max-width: 100%;
  height: auto;
  margin: 18px auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.migrated-content > p > img:only-child {
  width: 100%;
}
.migrated-content .details-table {
  display: table;
  overflow-x: auto;
}
.callout {
  margin: 32px 0;
  padding: 24px 26px;
  border-left: 5px solid var(--yellow);
  border-radius: 0 18px 18px 0;
  background: var(--cream);
}
.callout strong {
  display: block;
  margin-bottom: 5px;
}
.pro-con {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pro-con > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.pro-con h3 {
  margin: 0 0 12px;
}
.toc {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(54, 39, 19, 0.07);
}
.toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.toc ol {
  margin: 0;
  padding-left: 1.1rem;
}
.toc li {
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}
.toc a {
  text-decoration: none;
}
.toc a:hover {
  color: var(--orange);
}

.casino-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 20px;
}
.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(220px, 1.15fr) minmax(
      155px,
      0.65fr
    );
  align-items: center;
  gap: 24px;
  min-height: 142px;
  padding: 22px 22px 22px 28px;
  border: 1px solid #dfe1e5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 9px 32px rgba(25, 24, 39, 0.055);
}
.casino-rank {
  position: absolute;
  top: -9px;
  left: 21px;
  display: grid;
  place-items: center;
  width: 29px;
  height: 32px;
  color: var(--ink);
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  font-size: 0.74rem;
  font-weight: 950;
}
.casino-profile {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.casino-profile > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 82px;
  transform: translateY(-15px);
}
.casino-logo-wrap {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding: 10px;
  border-radius: 50%;
  background: #f4f4f1;
  box-shadow: 0 6px 17px rgba(25, 24, 39, 0.16);
}
.casino-logo {
  width: 68px;
  max-height: 54px;
  object-fit: contain;
}
.casino-name {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.035em;
}
.casino-rating {
  margin-top: 5px;
  color: #474654;
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}
.casino-rating::first-letter {
  color: #ffc400;
}
.casino-offer {
  min-width: 0;
}
.bonus-label {
  margin-bottom: 3px;
  color: #93909a;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.casino-bonus {
  color: #d8342f;
  font-size: clamp(1rem, 1.65vw, 1.28rem);
  line-height: 1.28;
  font-weight: 900;
}
.casino-feature {
  margin-top: 8px;
  color: #4f4e5c;
  font-size: 0.76rem;
  font-weight: 750;
}
.casino-feature::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-size: 0.68rem;
}
.casino-actions {
  display: grid;
  gap: 8px;
  min-width: 145px;
}
.casino-actions .button {
  min-height: 43px;
  padding: 0 18px;
  font-size: 0.84rem;
}
.review-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 0 15px;
  border: 1px solid #cfd2d8;
  border-radius: 999px;
  background: #f5f6f7;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 850;
}
.review-link::after {
  content: "→";
  margin-left: 7px;
}
.review-link:hover {
  border-color: var(--yellow);
  background: var(--cream);
}
.review-link[aria-disabled="true"] {
  color: #8c8b96;
  cursor: default;
}
.review-link[aria-disabled="true"]::after {
  content: "";
  margin: 0;
}
.review-link[aria-disabled="true"]:hover {
  border-color: #cfd2d8;
  background: #f5f6f7;
}

.details-table {
  width: 100%;
  margin: 25px 0;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.details-table th,
.details-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.details-table tr:last-child th,
.details-table tr:last-child td {
  border-bottom: 0;
}
.details-table th {
  width: 42%;
  color: var(--muted);
  font-size: 0.84rem;
}
.details-table td {
  font-weight: 800;
}
.migrated-content .details-table th,
.migrated-content .details-table td {
  font-weight: 400;
}
.faq details {
  margin: 10px 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.faq summary {
  padding: 17px 20px;
  cursor: pointer;
  font-weight: 850;
}
.faq details p {
  margin: 0;
  padding: 0 20px 18px;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 70px;
  padding: 19px 0;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}
.author {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  margin: 30px 0 0;
  padding: 25px;
  border-radius: 20px;
  background: var(--cream);
}
.author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.author h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}
.author p {
  margin: 0;
  font-size: 0.9rem;
}
.author-photo-link {
  align-self: start;
  border-radius: 50%;
}
.author-name-link {
  color: var(--ink);
  text-decoration: none;
}
.author-name-link:hover,
.author-profile-link:hover {
  color: var(--red);
}
.author-profile-link {
  display: inline-block;
  margin-top: 10px;
  color: #6c5600;
  font-size: 0.76rem;
  font-weight: 850;
  text-decoration: none;
}
.author-portrait {
  display: grid;
  place-items: center;
}
.author-portrait img {
  width: min(100%, 310px);
  aspect-ratio: 1;
  border: 8px solid rgba(255, 214, 51, 0.92);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.38);
}
.author-page {
  max-width: 900px;
  padding-block: 70px 90px;
}
.author-page h2 {
  margin: 52px 0 18px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}
.author-page h2:first-child {
  margin-top: 0;
}
.author-page p {
  color: #4e4d5b;
  font-size: 1.08rem;
}
.author-focus {
  display: grid;
  gap: 10px;
  padding-left: 1.25rem;
}
.author-focus li::marker {
  color: var(--orange);
}
.author-articles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}
.author-articles a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  text-decoration: none;
  font-weight: 800;
}
.author-articles a:hover {
  border-color: var(--yellow);
  background: var(--cream);
}
.author-articles span {
  color: var(--red);
}

.site-footer {
  padding: 58px 0 34px;
  background: #14141f;
  color: #fff;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid #343440;
}
.footer-nav a {
  color: #fff;
  text-decoration-color: #666674;
  text-underline-offset: 4px;
  font-size: 0.86rem;
  font-weight: 750;
}
.footer-nav a:hover {
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}
.footer-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 34px;
  padding: 36px 0;
  border-bottom: 1px solid #343440;
}
.footer-partners a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 105px;
  min-height: 58px;
}
.footer-partners img {
  width: auto;
  max-width: 138px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.82;
  transition: 0.2s ease;
}
.footer-partners a:hover img {
  filter: none;
  opacity: 1;
}
.footer-partners .footer-brand-logo {
  height: 56px;
  filter: none;
  opacity: 1;
}
.footer-desc {
  max-width: 960px;
  margin: 32px auto 0;
  color: #b9b8c5;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.75;
}
.footer-desc p {
  margin: 0 0 17px;
}
.footer-desc a {
  color: var(--yellow);
}
.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-top: 24px;
  color: #e5e4ea;
}
.footer-contacts span {
  display: inline-flex;
  gap: 7px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(12, 12, 25, 0.78);
}
.modal[aria-hidden="false"] {
  display: grid;
}
.modal-panel {
  width: min(100%, 1000px);
  max-height: 92vh;
  overflow: auto;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 100px #0008;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}
.modal-head strong {
  font-size: 1.05rem;
}
.modal-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f0eee8;
  font-size: 1.6rem;
  cursor: pointer;
}
.demo-frame {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 30px;
  background: #201c36;
  color: #fff;
  text-align: center;
}
.demo-frame img {
  width: min(100%, 760px);
  border-radius: 16px;
}
.demo-disclaimer {
  max-width: 680px;
  margin: 18px auto 0;
  color: #d1cede;
  font-size: 0.84rem;
}
.demo-frame:has(.demo-iframe) {
  min-height: 0;
  padding: 0;
  background: #0d0d14;
}
.demo-iframe {
  display: block;
  width: 100%;
  height: min(65vh, 620px);
  min-height: 460px;
  border: 0;
  background: #0d0d14;
}
.demo-cta-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.demo-cta-bar span {
  color: #666575;
  font-size: 0.86rem;
  font-weight: 700;
}
.demo-cta-bar .demo-real-button {
  min-width: 220px;
  padding: 13px 20px;
  text-align: center;
}

.sub-hero h1 {
  font-size: clamp(2.45rem, 5.5vw, 4.8rem);
}
.hero.page-type-casino {
  background-image:
    linear-gradient(
      90deg,
      rgba(12, 12, 22, 0.94) 0%,
      rgba(12, 12, 22, 0.82) 43%,
      rgba(12, 12, 22, 0.58) 100%
    ),
    linear-gradient(0deg, rgba(12, 12, 22, 0.4), rgba(12, 12, 22, 0.18)),
    var(--casino-art);
  background-position: center;
  background-size: cover;
}
.page-type-casino .hero-grid {
  grid-template-columns: 0.9fr 1.1fr;
}
.casino-visual {
  display: flex;
  align-items: center;
  min-height: 410px;
}
.casino-hero-card {
  width: min(100%, 400px);
  margin-left: auto;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(9px);
}
.casino-hero-card img {
  width: 170px;
  height: 70px;
  margin-bottom: 15px;
  object-fit: contain;
}
.casino-hero-card .details-table {
  margin: 0;
  background: transparent;
  border: 0;
}
.casino-hero-card .details-table th,
.casino-hero-card .details-table td {
  padding: 7px 0;
  font-size: 0.76rem;
}
.casino-hero-card .details-table th {
  color: #666575;
}
.casino-hero-card .details-table td {
  color: var(--ink);
}
.casino-facts-note {
  margin: 9px 0 0;
  padding-top: 9px;
  border-top: 1px solid #dddce3;
  color: #747381;
  font-size: 0.62rem;
  line-height: 1.35;
}

@media (max-width: 1240px) {
  .menu-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    padding: 20px;
    background: var(--ink);
    border-bottom: 1px solid #3d3d48;
    box-shadow: var(--shadow);
  }
  .nav.open {
    display: grid;
  }
  .nav .header-cta {
    text-align: center;
  }
  .nav-group summary {
    justify-content: space-between;
    padding: 8px 0;
  }
  .nav-dropdown {
    position: static;
    width: auto;
    margin: 5px 0 8px;
    padding: 6px;
    transform: none;
    box-shadow: none;
  }
  .nav-mega,
  .nav-games .nav-dropdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    max-height: none;
    overflow: visible;
  }
  .nav-dropdown::before {
    display: none;
  }
  .nav-dropdown a {
    padding-left: 16px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .page-type-casino .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    display: none;
  }
  .facts-table thead {
    display: none;
  }
  .facts-table,
  .facts-table tbody,
  .facts-table tr,
  .facts-table td {
    display: block;
    width: 100%;
  }
  .facts-table tr {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .facts-table td {
    position: relative;
    width: auto;
    min-width: 0;
    padding: 38px 16px 15px;
    border-right: 1px solid #3d3d48;
  }
  .facts-table td::before {
    content: attr(data-label);
    position: absolute;
    top: 13px;
    left: 16px;
    color: #aeadbb;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }
  .facts-table td:nth-child(3) {
    border-right: 0;
  }
  .facts-table td:nth-child(-n + 3) {
    border-bottom: 1px solid #3d3d48;
  }
  .layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .toc {
    position: static;
    grid-row: 1;
  }
  .toc ol {
    columns: 2;
  }
}

@media (max-width: 650px) {
  body {
    font-size: 16px;
  }
  .container {
    width: min(calc(100% - 24px), var(--content));
  }
  .header-inner {
    min-height: 64px;
  }
  .nav {
    top: 64px;
  }
  .nav-mega,
  .nav-games .nav-dropdown {
    grid-template-columns: 1fr;
  }
  .brand span {
    display: none;
  }
  .hero {
    padding: 50px 0 46px;
  }
  .facts-wrap {
    margin-top: -18px;
  }
  .facts-table tr {
    grid-template-columns: repeat(2, 1fr);
  }
  .facts-table td:nth-child(3) {
    border-right: 1px solid #3d3d48;
  }
  .facts-table td:nth-child(2n) {
    border-right: 0;
  }
  .facts-table td:nth-child(-n + 4) {
    border-bottom: 1px solid #3d3d48;
  }
  .layout {
    padding-block: 52px 65px;
  }
  .toc ol {
    columns: 1;
  }
  .pro-con {
    grid-template-columns: 1fr;
  }
  .casino-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px 18px;
  }
  .casino-profile {
    grid-template-columns: 72px 1fr;
  }
  .casino-profile > div:last-child {
    min-height: 72px;
    transform: none;
  }
  .casino-logo-wrap {
    width: 72px;
    height: 72px;
  }
  .casino-offer {
    padding-left: 3px;
  }
  .casino-actions {
    grid-template-columns: 1fr 1fr;
  }
  .author {
    grid-template-columns: 58px 1fr;
    padding: 18px;
  }
  .author img {
    width: 58px;
    height: 58px;
  }
  .author-articles {
    grid-template-columns: 1fr;
  }
  .footer-nav {
    justify-content: flex-start;
    gap: 12px 20px;
  }
  .footer-partners {
    justify-content: flex-start;
    gap: 20px;
  }
  .footer-partners a {
    min-width: 86px;
  }
  .footer-partners img {
    max-width: 105px;
    height: 40px;
  }
  .footer-desc {
    text-align: left;
  }
  .footer-contacts {
    justify-content: flex-start;
  }
  .demo-frame {
    min-height: 360px;
    padding: 18px;
  }
  .demo-frame:has(.demo-iframe) {
    min-height: 0;
    padding: 0;
  }
  .demo-iframe {
    height: calc(100dvh - 190px);
    min-height: 360px;
  }
  .demo-cta-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 12px;
  }
  .demo-cta-bar span {
    display: none;
  }
  .demo-cta-bar .demo-real-button {
    width: 100%;
    min-width: 0;
  }
  .hero.page-type-casino {
    background-image:
      linear-gradient(
        180deg,
        rgba(12, 12, 22, 0.78) 0%,
        rgba(12, 12, 22, 0.7) 42%,
        rgba(12, 12, 22, 0.9) 100%
      ),
      var(--casino-art);
    background-position: center top;
  }
  .casino-visual {
    align-items: flex-end;
    min-height: 0;
  }
  .casino-hero-card {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
