:root {
  --green-900: #063f2d;
  --green-800: #07553d;
  --green-700: #0a7b55;
  --green-500: #19a76f;
  --green-100: #e7f7ef;
  --blue-900: #052b63;
  --blue-700: #0757b8;
  --blue-500: #1378e8;
  --yellow-500: #ffd43b;
  --ink: #10231f;
  --muted: #5f706b;
  --line: #d9e8e2;
  --surface: #ffffff;
  --soft: #f5fbf8;
  --shadow: 0 18px 50px rgba(5, 43, 99, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow-500);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(5, 43, 99, 0.16);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-700), var(--blue-700));
}

.button-secondary {
  color: var(--blue-900);
  background: #ffffff;
  border-color: var(--line);
}

.button-stack {
  display: grid;
  gap: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  width: min(180px, 48vw);
  flex: 0 0 auto;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list > li,
.footer-menu > li {
  position: relative;
}

.nav-list a,
.footer-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--green-900);
  font-weight: 800;
  line-height: 1.2;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--blue-900);
  background: var(--green-100);
}

.has-sub-menu {
  display: flex;
  align-items: center;
}

.sub-menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sub-menu-toggle::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: 2px solid var(--green-900);
  border-bottom: 2px solid var(--green-900);
  transform: rotate(45deg) translate(-2px, -2px);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.has-sub-menu:hover .sub-menu,
.has-sub-menu:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-button.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.breadcrumbs {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  font-size: 0.92rem;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.breadcrumbs li + li::before {
  content: "/";
  color: var(--green-700);
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--green-900);
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: var(--blue-700);
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #ffffff;
  background: var(--green-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 63, 45, 0.92), rgba(5, 43, 99, 0.62), rgba(5, 43, 99, 0.18));
}

.hero-inner,
.slot-hero-inner {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  z-index: 1;
}

.hero-inner {
  display: flex;
  align-items: center;
  min-height: 480px;
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(6, 63, 45, 0.72);
  box-shadow: var(--shadow);
}

.hero-card-narrow {
  max-width: 840px;
}

.hero h1,
.slot-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p,
.slot-hero p {
  margin: 0 0 24px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.hero .eyebrow {
  color: #ffffff;
}

.text-content {
  max-width: 880px;
}

.text-content h1,
.text-content h2,
.text-content h3 {
  margin: 0 0 16px;
  color: var(--green-900);
  line-height: 1.15;
  letter-spacing: 0;
}

.text-content h1 {
  font-size: 3rem;
}

.text-content h2 {
  font-size: 2.25rem;
}

.text-content h3 {
  margin-top: 28px;
  font-size: 1.45rem;
}

.text-content p,
.text-content ul,
.text-content ol,
.text-content blockquote,
.text-content table {
  margin: 0 0 20px;
}

.text-content p,
.text-content li {
  color: var(--muted);
}

.text-content ul,
.text-content ol {
  padding-left: 24px;
}

.text-content blockquote {
  padding: 20px 22px;
  color: var(--green-900);
  background: var(--green-100);
  border-left: 5px solid var(--yellow-500);
  border-radius: var(--radius);
}

.faq-block {
  margin-top: 34px;
}

.faq-block h2 {
  margin-bottom: 22px;
}

.faq-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.faq-item p {
  margin-bottom: 0;
}

.text-content figure {
  margin: 0;
  padding: 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th {
  color: var(--green-900);
  background: var(--soft);
}

.contact-form-section {
  padding-top: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  line-height: 1.35;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(19, 120, 232, 0.18);
  border-color: var(--blue-500);
}

.form-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 400;
}

.form-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  padding: 0;
}

.games-section {
  padding: 48px 0;
  background:
    linear-gradient(135deg, rgba(231, 247, 239, 0.96), rgba(235, 244, 255, 0.96)),
    #f5fbf8;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 2.1rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.game-card {
  display: grid;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(5, 43, 99, 0.08);
}

.game-card > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--green-100);
}

.game-card-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.game-card h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 1.16rem;
  line-height: 1.2;
}

.game-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.game-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 8px;
  color: var(--green-900);
  font-size: 0.9rem;
  line-height: 1;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.game-rating-stars {
  color: var(--yellow-500);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.game-rating strong {
  font-weight: 800;
}

.game-meta {
  display: grid;
  gap: 6px;
  margin: 0;
}

.game-meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.game-meta dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.game-meta dd {
  margin: 0;
  color: var(--green-900);
  font-weight: 800;
  font-size: 0.86rem;
  text-align: right;
}

.game-card .button-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.game-card .button {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 0.9rem;
}

.author-section {
  padding: 24px 0;
  background: var(--soft);
}

.author-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
}

.author-card > img {
  width: 220px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.author-card h2 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 2rem;
  letter-spacing: 0;
}

.author-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.slot-hero {
  min-height: 520px;
}



.slot-hero-inner {
  display: grid;
  grid-template-columns: minmax(240px, 30%) 1fr;
  gap: 32px;
  align-items: center;
  min-height: 520px;
}

.slot-preview,
.slot-hero-content {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.slot-preview {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.slot-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.slot-hero-content {
  padding: 34px;
}

.slot-rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  padding: 10px 12px;
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.2;
  background: rgba(6, 63, 45, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.slot-rating-stars {
  color: var(--yellow-500);
  font-size: 1.02rem;
  line-height: 1;
}

.slot-rating strong {
  color: #ffffff;
}

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

.info-table th {
  width: 34%;
}

.content-sidebar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.review-content {
  max-width: none;
}

.casino-sidebar {
  align-self: stretch;
}

.casino-sidebar-inner {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 124px);
  overflow: auto;
  padding-right: 4px;
}

.casino-sidebar h2 {
  margin: 0 0 2px;
  color: var(--green-900);
  font-size: 1.45rem;
  line-height: 1.2;
}

.casino-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(5, 43, 99, 0.08);
}

.casino-card-top {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
}

.casino-card-top img {
  width: 62px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.casino-card h3,
.casino-card p {
  margin: 0;
}

.casino-card h3 {
  color: var(--green-900);
  font-size: 1.05rem;
  line-height: 1.2;
}

.casino-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.casino-card .rating {
  color: var(--blue-900);
  font-weight: 800;
}

.casino-card .rating span {
  color: var(--yellow-500);
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.demo-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 43, 99, 0.72);
  backdrop-filter: blur(8px);
}

.demo-modal-dialog {
  position: relative;
  z-index: 1;
  width: 90vw;
  height: 90vh;
  overflow: hidden;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.demo-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--soft);
}

.demo-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(6, 63, 45, 0.92);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.demo-modal-close::before,
.demo-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transform-origin: center;
}

.demo-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.demo-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.scroll-offer {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 80;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 10px;
  align-items: center;
  width: min(360px, calc(100% - 40px));
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-offer-close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(5, 43, 99, 0.16);
}

.scroll-offer-close::before,
.scroll-offer-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--green-900);
  transform-origin: center;
}

.scroll-offer-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.scroll-offer-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.scroll-offer.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-offer img {
  width: 60px;
  overflow: hidden;
  border-radius: 5px;
}

.scroll-offer h2 {
  margin: 0;
  color: var(--green-900);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.scroll-offer .button {
  min-height: 40px;
  padding: 10px 14px;
  white-space: nowrap;
}

.site-footer {
  padding-bottom: 80px;
  color: #d8eee6;
  background: var(--green-900);
}

.footer-top,
.footer-warning,
.footer-partners,
.footer-bottom {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-menu {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-menu a {
  color: #ffffff;
}

.footer-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-warning {
  display: grid;
  gap: 6px;
  color: #ffffff;
}

.footer-warning span {
  color: #c7ded6;
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-partners-item {
  display: grid;
  place-items: center;
  width: 120px;
  height: 54px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}
.footer-partners-item img {
  max-height: 34px;
}

.footer-bottom {
  border-bottom: 0;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 800;
}

.page-title-section {
  min-height: 48vh;
}

@media (max-width: 1050px) {
  .header-inner {
    min-height: 72px;
    gap: 18px;
  }

  .nav-list a {
    padding-inline: 10px;
    font-size: 0.94rem;
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .content-sidebar-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 26px;
  }
}

@media (max-width: 900px) {
  .mobile-menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 73px 0 auto 0;
    display: block;
    max-height: calc(100vh - 73px);
    overflow: auto;
    padding: 18px 20px 26px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    gap: 6px;
  }

  .nav-list > li,
  .has-sub-menu {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-list a {
    min-height: 48px;
    padding: 12px 10px;
  }

  .sub-menu-toggle {
    display: block;
  }

  .sub-menu {
    position: static;
    grid-column: 1 / -1;
    display: none;
    min-width: 0;
    margin: 0 0 8px 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-sub-menu.is-sub-open .sub-menu {
    display: block;
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slot-hero-inner {
    grid-template-columns: 280px 1fr;
    gap: 22px;
  }

  .content-sidebar-layout {
    grid-template-columns: 1fr;
  }

  .casino-sidebar-inner {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 750px) {
  .container {
    width: min(100% - 30px, 1200px);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .hero,
  .hero-inner,
  .slot-hero,
  .slot-hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 86px 0;
  }

  .slot-hero-inner {
    grid-template-columns: 1fr;
    padding: 58px 0;
  }

  .slot-preview {
    max-width: 360px;
  }

  .text-content h1 {
    font-size: 2.35rem;
  }

  .text-content h2,
  .section-heading h2 {
    font-size: 1.95rem;
  }

  .author-card {
    grid-template-columns: 160px 1fr;
    gap: 22px;
  }

  .author-card > img {
    width: 160px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-menu {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-card,
  .slot-hero-content {
    padding: 22px;
  }

  .hero h1,
  .slot-hero h1 {
    font-size: 2.28rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    max-width: 430px;
  }

  .author-card {
    grid-template-columns: 1fr;
  }

  .author-card > img {
    width: 180px;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .info-table td {
    padding-top: 6px;
  }

  .footer-partners a {
    width: calc(50% - 7px);
  }

  .scroll-offer {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 72px 1fr;
    width: auto;
  }

  .scroll-offer .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 450px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .header-inner {
    min-height: 66px;
  }

  .site-logo {
    width: 152px;
  }

  .site-nav {
    top: 67px;
    max-height: calc(100vh - 67px);
  }

  .hero-inner {
    padding: 64px 0;
  }

  .hero-card,
  .slot-hero-content,
  .slot-preview,
  .game-card-body,
  .casino-card {
    padding: 16px;
  }

  .hero h1,
  .slot-hero h1 {
    font-size: 2rem;
  }

  .hero p,
  .slot-hero p {
    font-size: 1rem;
  }

  .section {
    padding: 40px 0;
  }

  th,
  td {
    padding: 13px 12px;
  }

  .footer-partners a {
    width: 100%;
  }

  .demo-modal {
    padding: 12px;
  }

  .demo-modal-dialog {
    width: 90vw;
    height: 90vh;
  }

  .scroll-offer {
    grid-template-columns: 62px 1fr;
    gap: 10px;
    padding: 12px;
  }

  .scroll-offer img {
    width: 62px;
  }
}
