:root {
  --site-bg: #010103;
  --surface-1: #0b0f19;
  --surface-2: #121725;
  --surface-3: #1a1f31;
  --surface-4: #23293f;
  --text-main: #f2f2f2;
  --text-muted: #b9c2d6;
  --text-strong: #ffffff;
  --primary: #17c3b2;
  --primary-hover: #1dd8c1;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-1: 0 20px 48px rgba(0, 0, 0, 0.28);
  --shadow-2: 0 14px 34px rgba(23, 195, 178, 0.24);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--site-bg);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Poppins, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.15;
  padding: 70px 0 0;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
}

main {
  display: block;
}

.wrapper {
  min-height: 100vh;
}

.site-shell,
.nv-page-shell,
.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 32px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .site-shell,
  .nv-page-shell,
  .container {
    padding: 0 16px;
  }
}

.flex {
  display: flex;
}

.site-button,
.nv-d4f5c,
.nv-slot-cta,
.nv-slot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-button--primary,
.site-button--small,
.nv-d4f5c,
.nv-slot-cta {
  background: var(--primary);
  color: #010103;
  box-shadow: var(--shadow-2);
}

.site-button--primary:hover,
.site-button--small:hover,
.nv-d4f5c:hover,
.nv-slot-cta:hover,
.site-button--primary:focus-visible,
.site-button--small:focus-visible,
.nv-d4f5c:focus-visible,
.nv-slot-cta:focus-visible {
  background: var(--primary-hover);
  color: #010103;
  transform: translateY(-1px);
}

.site-button--ghost,
.nv-slot-link {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-strong);
}

.site-button--small {
  min-height: 40px;
  padding: 0 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 6, 12, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 48px;
}

.site-header__logo img {
  width: 125px;
  height: 25px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--text-strong);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.site-header .site-button--primary {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 15px;
  box-shadow: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: 70px;
  width: 100%;
  background: #1a1a2e;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width: 1300px) {
  .header {
    width: 100%;
  }
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 32px;
}

@media only screen and (max-width: 1100px) {
  .header__top {
    padding: 0 10px;
  }
}

.header__left,
.header__right {
  align-items: center;
}

.header__left {
  max-width: 70%;
  gap: 0;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 110px;
  min-height: 64px;
  max-width: 110px;
}

.header__logo img {
  width: 100%;
  max-height: 65px;
  height: auto;
}

.header-menu-main .top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__top nav.header-menu-main {
  display: flex;
  align-items: center;
  min-width: 10vw;
}

.header__top nav.header-menu-main .menu-footer-menu-container {
  display: flex;
  margin-left: 20px;
  max-width: 100%;
  overflow: hidden;
}

.header-menu-main li {
  display: block;
  margin: 0 20px;
  padding: 12px 0;
  white-space: nowrap;
}

@media only screen and (max-width: 1300px) {
  .header-menu-main li {
    margin: 0 14px;
  }
}

.header-menu-main a {
  color: var(--text-strong);
  display: block;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 24px;
  font-weight: 400;
}

.header-menu-main a:hover,
.header-menu-main a:focus-visible {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 11px 32px;
  border-radius: 10px;
  background: var(--primary);
  color: #010103;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
}

.btn:hover,
.btn:focus-visible {
  background: var(--primary-hover);
  color: #ffffff;
}

.header__top_buttons {
  display: flex;
  margin-left: auto;
}

.header__top_buttons .btn {
  margin-left: 16px;
  background: var(--primary);
  color: #010103;
}

.header__top_buttons .btn:hover,
.header__top_buttons .btn:focus-visible {
  background: var(--primary-hover);
  color: #ffffff;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.home-page {
  padding-bottom: 48px;
}

.header_banner {
  position: relative;
  width: 100%;
  min-height: 580px;
  max-height: 580px;
  margin: 0 auto 20px;
  overflow: hidden;
  text-align: left;
}

.header_banner__container {
  position: relative;
  width: 100%;
  min-height: 580px;
  max-height: 580px;
  max-width: 100%;
}

.header_banner__container div.render-image {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  min-height: 580px;
  max-height: 580px;
}

.header_banner_img_wrap {
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .header_banner_img_wrap {
    position: absolute;
    width: 100%;
  }
}

.header_banner img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  max-height: 580px;
  object-fit: cover;
}

.render-image.picture-image {
  position: relative;
}

.render-image.picture-image::after {
  content: none;
}

.header_banner__container div.render-image > .container {
  width: 100%;
}

.header_banner__text {
  position: relative;
  width: 100%;
}

.header_banner__text_top {
  margin-top: 0;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
}

.header_banner__text_main {
  width: 50%;
  margin-top: 10px;
  margin-bottom: 0;
}

.header_banner__text_main p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 29px;
  font-weight: 400;
}

.header_banner__text .btn {
  margin-top: 20px;
  background: var(--primary);
  color: #010103;
}

.header_banner__text .btn:hover,
.header_banner__text .btn:focus-visible {
  background: var(--primary-hover);
  color: #ffffff;
}

.toc {
  padding: 0;
}

.ctoc-toggle {
  display: none;
}

.ctoc-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ctoc__item {
  display: inline-block;
  padding: 0;
  color: var(--text-main);
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
}

.ctoc-body li {
  margin-bottom: 0;
  padding: 8px 20px 10px;
  background-color: #1a1a2e;
  border-radius: 8px;
  cursor: pointer;
}

.ctoc-body li:hover {
  background-color: #f2f2f2;
}

.ctoc-body li:hover .ctoc__item,
.ctoc__item:hover,
.ctoc__item:focus-visible {
  color: #17c3b2;
}

.home-hero__media img {
  width: 100%;
  min-height: 300px;
  height: clamp(360px, 39vw, 500px);
  object-fit: cover;
  object-position: center top;
}

.home-hero {
  position: relative;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(1, 1, 3, 0.78) 0%, rgba(1, 1, 3, 0.4) 42%, rgba(1, 1, 3, 0.08) 100%),
    linear-gradient(180deg, rgba(1, 1, 3, 0.02) 0%, rgba(1, 1, 3, 0.38) 100%);
}

.home-hero__copy {
  max-width: 620px;
  padding: 14px 0 0;
}

.home-hero__eyebrow {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-hero__title {
  margin: 0 0 18px;
  color: var(--text-strong);
  font-size: clamp(42px, 5.4vw, 60px);
  line-height: 1.02;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.home-hero__lead {
  margin: 0 0 26px;
  max-width: 560px;
  color: var(--text-main);
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.4);
}

.home-hero__actions .site-button--primary {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 18px;
}

.home-toc {
  position: relative;
  z-index: 2;
  margin: -38px auto 52px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible;
}

.home-toc__list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  background: rgba(18, 23, 37, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #d8dff1;
  text-decoration: none;
  white-space: normal;
  line-height: 1.28;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.home-toc__list a:hover,
.home-toc__list a:focus-visible {
  color: var(--text-strong);
  background: rgba(25, 31, 49, 1);
}

.home-article {
  display: block;
  padding-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.home-section {
  display: block;
}

.home-section--intro {
  padding-top: 0;
}

.text_container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.home-section h1,
.home-section h2,
.home-section h3,
.nv-page-title {
  color: var(--text-main);
  text-align: left;
}

.home-section h1 {
  margin: 20px 0 16px;
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
}

.home-section h2,
.nv-page-title {
  margin: 32px 0 12px;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
}

.home-section h3 {
  margin: 28px 0 12px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}

.nv-page-title {
  color: var(--text-strong);
}

.home-section p,
.home-section ul,
.nv-page-prose p,
.nv-page-prose ul,
.nv-page-prose ol,
.nv-page-prose table {
  margin: 0 0 24px;
  color: var(--text-main);
  font-size: 16px;
  line-height: 22px;
  text-align: left;
}

.home-section ul,
.nv-page-prose ul,
.nv-page-prose ol {
  padding-left: 1.25rem;
}

.home-section li + li {
  margin-top: 10px;
}

.home-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.btn--wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.home-section--intro img {
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
}

.home-table,
.nv-page-prose table {
  margin-top: 4px;
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-1);
}

.home-table table,
.nv-page-prose table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface-2);
}

.home-table th,
.home-table td,
.nv-page-prose th,
.nv-page-prose td {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
}

.home-table th,
.nv-page-prose th {
  background: linear-gradient(180deg, var(--primary-hover) 0%, var(--primary) 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.home-table tr:last-child td,
.nv-page-prose tr:last-child td {
  border-bottom: 0;
}

.home-table tr > *:last-child,
.nv-page-prose tr > *:last-child {
  border-right: 0;
}

.slots-list-block {
  background-color: var(--site-bg);
  border-radius: 16px;
  margin: 20px 0;
  max-height: 320px;
  overflow: hidden;
  padding: 20px 45px 40px;
}

.slots_list {
  display: block;
  width: 100%;
}

.slots_list_slider {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.slot-card {
  position: relative;
  width: 240px;
  max-width: 240px;
  height: 180px;
  line-height: 0;
  border-radius: 16px;
  flex: 0 0 auto;
}

.slot-card .img-wrap {
  position: relative;
  overflow: hidden;
}

.slot-card .img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition-duration: 0.2s;
}

.slot-card img {
  width: 100%;
  height: 100%;
  min-width: 80px;
  min-height: 80px;
  border-radius: 6px;
  object-fit: cover;
}

.slot__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: transparent;
  opacity: 0;
  line-height: 1.3;
  transition-duration: 0.2s;
}

.slot-card:hover .slot__card-overlay {
  opacity: 1;
}

.slot-card:hover .img-wrap::before {
  opacity: 1;
  backdrop-filter: blur(5px);
}

.btn_ref {
  position: relative;
  width: 60px;
  height: 60px;
  padding: 0;
  margin-bottom: 15px;
  border-radius: 50%;
  background-color: var(--primary);
}

.btn_ref::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='21' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 10.268c1.333.77 1.333 2.694 0 3.464L3.5 23.258c-1.333.77-3-.192-3-1.732V2.474C.5.934 2.167-.028 3.5.742L20 10.268Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-40%, -50%);
}

.btn_play {
  display: inline-block;
  width: 146px;
  padding: 10px 0;
  color: var(--text-main);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
}

.btn_play:hover,
.btn_play:focus-visible {
  color: #ffffff;
}

.demo-name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.demo-name a {
  color: var(--text-strong);
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  text-decoration: none;
}

.slots-list-block-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.title_list {
  margin: 0;
  color: var(--text-main);
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  text-align: left;
}

.slots-list-block.slots-category-page {
  max-height: 100%;
}

.slots-list-block.slots-category-page .slots_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  row-gap: 50px;
  padding-bottom: 25px;
}

.home-updated,
.nv-page-updated,
.nv-breadcrumbs,
.nv-page-kicker {
  color: var(--text-muted);
  font-size: 14px;
}

.breadcrumbs-content {
  margin-top: 25px;
  margin-bottom: 25px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 8px 0 0;
  padding: 0 0 13px;
}

.breadcrumbs li {
  position: relative;
  padding-right: 30px;
}

.breadcrumbs li:last-child {
  padding-right: 0;
}

.breadcrumbs li::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 3px;
  width: 12px;
  height: 12px;
}

.breadcrumbs li:last-child::after {
  content: none;
}

.breadcrumbs li a,
.breadcrumbs li span {
  font-size: 14px;
}

.breadcrumbs li a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumbs li span {
  color: var(--primary-hover);
  font-weight: 500;
}

.faq {
  padding-top: 20px;
  user-select: none;
}

.faq-title {
  margin: 0 0 15px;
  color: var(--text-main);
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
}

.faq-list {
  margin: 15px 0 40px;
}

.faq-list__item {
  margin-bottom: 12px;
  padding: 16px 20px;
  background: var(--site-bg);
  border: 1px solid var(--site-bg);
  border-radius: 10px;
}

.faq-question {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% - 15px);
  margin: 0;
  padding-right: 30px;
  color: var(--text-main);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
}

.faq-question svg {
  position: absolute;
  right: 11px;
  top: 7px;
}

.faq-question svg path {
  stroke: var(--primary);
}

.faq-list__item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-top: 15px;
  overflow: hidden;
  font-size: 16px;
}

.faq-list__item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
}

.single__slot-game {
  margin: 0 auto;
  max-width: 1110px;
}

.single__slot-game h1 {
  margin: 0 0 20px;
}

.play-box {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  line-height: 0;
}

.play-box img {
  width: 100%;
  height: 692px;
  border-radius: 10px;
  object-fit: cover;
}

.play-box .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  line-height: 1;
}

.full-screen {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 9;
  display: block;
  width: 28px;
  height: 28px;
  padding: 0;
  background-image: url("/img/icon_nv_casino.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.button-play-for-free {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: 40px;
  line-height: 2.5;
  font-weight: 700;
  cursor: pointer;
}

.button-play-for-free svg {
  width: 46px;
  height: 60px;
  margin-bottom: 20px;
  transform: translateX(5px);
}

.under-demo {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.full-screen-overlay {
  display: none;
}

.single__slot-content {
  margin-top: 20px;
}

.footer {
  margin-top: 72px;
  background: #020307;
}

.footer-top {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 22px 0;
}

.footer-icons--top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 66px;
}

.footer-icons--top__item img {
  width: 60px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.footer-icons--top__item:first-child {
  opacity: 0.12;
}

.footer-middle {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 20px 0;
}

.footer-icons--middle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 420px;
}

.footer-icons--middle__item img {
  width: 60px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  padding: 20px 0 10px;
}

.copyright {
  max-width: 1040px;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  line-height: 1.42;
}

@media only screen and (max-width: 1024px) {
  .footer-icons--top {
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer-icons--middle {
    gap: 120px;
  }
}

.page-hero {
  position: relative;
}

.nv-page-shell {
  padding: 32px 0 56px;
}

.slot-hero {
  padding: 36px 0 12px;
}

.slot-hero__stack {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.slot-hero__media {
  position: relative;
  width: min(100%, 780px);
}

.slot-hero__media img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow-1);
}

.slot-hero__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(1, 1, 3, 0.82);
  color: var(--text-strong);
  text-decoration: none;
  font-weight: 700;
}

.slot-hero__description {
  margin: 0;
  color: var(--text-main);
  font-size: 18px;
  line-height: 1.7;
}

.slot-hero__copy--centered {
  max-width: 760px;
  text-align: center;
}

.nv-page-card {
  padding: clamp(20px, 3vw, 36px);
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  box-shadow: var(--shadow-1);
}

.nv-page-header {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.nv-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nv-page-prose {
  display: grid;
  gap: 18px;
}

.nv-page-prose img {
  border-radius: 18px;
}

.nv-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.nv-slot-tile {
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-1);
}

.nv-slot-tile__media {
  aspect-ratio: 181 / 148;
  background: var(--surface-1);
}

.nv-slot-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nv-slot-tile__body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.nv-slot-tile__title {
  margin: 0;
  color: var(--text-strong);
  font-size: 20px;
}

.nv-slot-tile__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slots-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.slots-gallery__item {
  display: grid;
  gap: 12px;
}

.slots-gallery__media {
  display: block;
}

.slots-gallery__media img {
  width: 100%;
  aspect-ratio: 181 / 148;
  object-fit: cover;
  border-radius: 14px;
}

.slots-gallery__demo,
.slots-gallery__title {
  color: var(--text-strong);
  text-decoration: none;
  font-weight: 600;
}

.slots-gallery__demo {
  color: var(--primary);
}

@media (max-width: 1100px) {
  .slot-card {
    max-width: 220px;
    width: 220px;
  }
}

@media (max-width: 767px) {
  .site-shell,
  .nv-page-shell {
    width: min(100% - 20px, 1140px);
  }

  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding: 14px 0;
  }

  .header__top,
  .header__left {
    flex-direction: column;
    align-items: flex-start;
  }

  .header__top {
    gap: 12px;
    padding: 12px 0;
    min-height: 0;
  }

  .header-menu-main .top {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .home-hero__title {
    font-size: 34px;
  }

  .header_banner_img_wrap img {
    height: 300px;
  }

  .header_banner .container {
    position: static;
    display: block;
  }

  .render-image.picture-image::after {
    display: none;
  }

  .header_banner__text {
    max-width: none;
    padding-top: 18px;
  }

  .header_banner__text_top {
    font-size: 34px;
  }

  .header_banner__text_main p {
    font-size: 16px;
  }

  .home-hero__overlay {
    position: static;
    padding: 0;
    background: transparent;
  }

  .home-hero__copy {
    padding-top: 18px;
  }

  .home-hero__lead,
  .home-section p,
  .home-section ul,
  .nv-page-prose p,
  .nv-page-prose ul,
  .nv-page-prose ol {
    font-size: 16px;
  }

  .toc {
    margin-top: 14px;
  }

  .slots-list-block {
    padding: 20px;
  }

  .play-box img {
    height: 550px;
  }

  .full-screen {
    top: -40px;
    width: 22px;
    height: 22px;
  }

  .button-play-for-free {
    font-size: 16px;
  }

  .button-play-for-free svg {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .ctoc-body ul {
    flex-direction: column;
  }

  .ctoc__item {
    min-height: 46px;
    border-left: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 10px 18px;
  }

  .nv-slot-tile__links,
  .nv-page-actions {
    flex-direction: column;
  }

  .slot-hero__inner,
  .slots-gallery {
    grid-template-columns: 1fr;
  }

  .play-box img {
    height: 350px;
  }
}
