:root {
  --bg: #07131f;
  --panel: #17222c;
  --panel-2: #1d2b37;
  --text: #f4f8ff;
  --muted: #94a8bc;
  --line: rgba(255, 255, 255, .08);
  --green: #16e58c;
  --blue: #385cfe;
  --sidebar: 286px;
  --sidebar-small: 104px;
  --header: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 6%, rgba(56, 92, 254, .18), transparent 26rem),
    radial-gradient(circle at 34% 100%, rgba(22, 229, 140, .12), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
}

body.menu-open {
  overflow: hidden;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(131, 150, 166, .34) rgba(23, 34, 44, .45);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(23, 34, 44, .7);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  min-height: 48px;
  border: 2px solid rgba(23, 34, 44, .7);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(131, 150, 166, .72), rgba(85, 112, 134, .72));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(44, 255, 174, .9), rgba(44, 217, 125, .78));
}

::-webkit-scrollbar-corner {
  background: transparent;
}

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

button {
  font: inherit;
}

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

.app {
  display: flex;
  max-width: 100%;
  height: 100vh;
  overflow: hidden;
}

.sidebar {
  width: var(--sidebar);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border-right: 1px solid var(--line);
  transition: width .25s ease, transform .25s ease;
  z-index: 30;
}

.brand,
.topbar {
  height: var(--header);
  min-height: var(--header);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}

.icon-button {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: #b8c6d2;
  cursor: pointer;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 137px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.sidebar-scroll {
  min-height: 0;
  flex: 1;
  overflow: auto;
  padding: 14px 12px 20px;
}

.nav-group {
  margin-bottom: 4px;
}

.nav-item,
.nav-link {
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #edf5ff;
  text-align: left;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.nav-link {
  grid-template-columns: 26px minmax(0, 1fr);
}

.nav-item:hover,
.nav-link:hover {
  background: rgba(255, 255, 255, .045);
}

.nav-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.nav-icon svg,
.nav-icon img {
  max-width: 24px;
  max-height: 24px;
}

.nav-arrow {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  cursor: pointer;
  transition: transform .2s ease;
}

.nav-main-link {
  min-width: 0;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.nav-group.is-current .nav-item,
.nav-link.is-current {
  background: rgba(18, 229, 138, .08);
  color: #fff;
}

.nav-group-info.is-current .nav-item {
  background: transparent;
}

.nav-group-info.is-current .nav-item:hover {
  background: rgba(255, 255, 255, .045);
}

.nav-group.is-active .nav-arrow {
  transform: rotate(180deg);
}

.submenu {
  display: none;
  padding: 4px 0 8px 52px;
}

.nav-group.is-active .submenu {
  display: block;
}

.submenu a {
  display: block;
  color: var(--muted);
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
}

.sidebar-promo {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.sidebar-promo img {
  width: 100%;
  border-radius: 14px;
}

.sidebar.is-collapsed {
  width: var(--sidebar-small);
}

.sidebar.is-collapsed .brand {
  padding: 0 20px;
}

.sidebar.is-collapsed .nav-label,
.sidebar.is-collapsed .nav-main-link,
.sidebar.is-collapsed .nav-arrow,
.sidebar.is-collapsed .submenu,
.sidebar.is-collapsed .sidebar-language,
.sidebar.is-collapsed .sidebar-promo {
  display: none;
}

.sidebar.is-collapsed .brand {
  gap: 8px;
  padding: 0 12px;
}

.sidebar.is-collapsed .icon-button {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
}

.sidebar.is-collapsed .brand-logo {
  width: 42px;
}

.sidebar.is-collapsed .nav-item,
.sidebar.is-collapsed .nav-link {
  grid-template-columns: 26px;
  justify-content: center;
  min-height: 54px;
  padding: 0;
}

.main {
  min-width: 0;
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  background: rgba(23, 34, 44, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  z-index: 20;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-only {
  display: none;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-menu {
  position: relative;
}

.lang-menu summary {
  min-width: 86px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: #101b26;
  color: #dce8f4;
  list-style: none;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

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

.flag {
  width: 24px;
  height: 16px;
  flex: 0 0 24px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .14);
}

.lang-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  width: 236px;
  max-height: min(430px, calc(100vh - 90px));
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: #111c27;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .38);
}

.lang-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 7px;
  color: #dce8f4;
  font-size: 14px;
  font-weight: 800;
}

.lang-list a:hover,
.lang-list a.is-current {
  background: rgba(22, 229, 140, .12);
  color: #fff;
}

.sidebar-language {
  margin: 14px 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.sidebar-language summary {
  list-style: none;
}

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

.sidebar-language-toggle {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  color: #edf5ff;
  cursor: pointer;
}

.sidebar-language-toggle > span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
}

.sidebar-language-toggle svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform .2s ease;
}

.sidebar-language[open] .sidebar-language-toggle > svg {
  transform: rotate(180deg);
}

.sidebar-language-list {
  display: grid;
  gap: 4px;
  padding-top: 8px;
}

.sidebar-language-list a {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 10px;
  color: #dce8f4;
  font-size: 14px;
  font-weight: 800;
}

.sidebar-language-list a:hover,
.sidebar-language-list a.is-current {
  background: rgba(22, 229, 140, .1);
  color: #fff;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 22px;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.btn-blue {
  background: var(--blue);
}

.btn-green {
  background: var(--green);
  color: #102018;
}

.btn-ghost {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(255, 255, 255, .04);
}

.content {
  min-height: 0;
  max-width: 100%;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 24px 28px 38px;
}

.inner {
  width: min(1190px, 100%);
  max-width: 100%;
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #111d29;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
  cursor: grab;
  touch-action: pan-y;
}

.hero.is-dragging {
  cursor: grabbing;
}

.hero-track {
  display: flex;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 300px;
}

.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-slide picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(590px, 82%);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(22, 229, 140, .13);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.hero-title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .94;
  font-weight: 900;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #c7d7e6;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: rgba(16, 27, 38, .76);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.hero-nav:hover {
  background: rgba(44, 217, 125, .95);
  color: #102018;
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .26);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 36px;
  background: var(--green);
}

.page-hero {
  margin-bottom: 24px;
  padding: 34px 36px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 229, 138, .13), transparent 48%),
    linear-gradient(135deg, rgba(23, 34, 44, .96), rgba(9, 19, 30, .96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #f5f9ff;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 920px;
  margin: 14px 0 0;
  color: #c6d3df;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 650;
}

.page-hero .hero-actions {
  margin-top: 22px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 32px 0 16px;
}

.section-title {
  font-size: 20px;
  font-weight: 900;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

.tabs a:not(.btn) {
  color: #b8c8d8;
  text-decoration: none;
}

.tabs a:not(.btn):hover {
  color: var(--green);
}

.games-wrap {
  overflow: hidden;
  border-radius: 16px;
  cursor: grab;
  touch-action: pan-y;
}

.games-wrap.is-dragging {
  cursor: grabbing;
}

.games-track {
  display: flex;
  gap: 14px;
}

.game-card {
  flex: 0 0 calc((100% - 98px) / 8);
}

.game-card img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 125 / 170;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 12%, rgba(44, 217, 125, .08), transparent 46%),
    linear-gradient(180deg, #223342 0%, #121f2b 100%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

.game-name {
  margin-top: 10px;
  color: #f1f7ff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.game-provider {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.banner-grid a:nth-child(n + 3) {
  grid-column: span 1;
}

.banner-grid img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  min-width: 0;
  margin-top: 34px;
  align-items: start;
}

.copy-block,
.fact-card,
.toc,
.faq {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 34, 44, .82);
}

.copy-block {
  min-width: 0;
  padding: 26px;
  overflow: hidden;
}

.copy-block h2,
.faq h2,
.fact-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.copy-block h3 {
  margin: 28px 0 10px;
  font-size: 19px;
}

.copy-block p,
.faq p {
  color: #c6d3df;
  font-size: 15px;
  line-height: 1.78;
}

.copy-block a {
  color: var(--green);
  font-weight: 800;
}

.copy-block img {
  width: 100%;
  max-height: 440px;
  margin: 18px 0 22px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #101a24;
}

.bonus-table {
  width: 100%;
  max-width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.bonus-table th,
.bonus-table td {
  padding: 13px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  text-align: left;
  font-size: 13px;
}

.bonus-table th {
  background: var(--green);
  color: #102018;
  font-weight: 900;
}

.bonus-table td {
  background: #111c27;
  color: #d8e6f2;
}

.side-stack {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 16px;
}

.fact-card,
.toc,
.faq {
  padding: 20px;
}

.facts {
  display: grid;
  gap: 10px;
}

.fact {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.fact strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
}

.fact span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.toc ul,
.pros-list {
  margin: 0;
  padding-left: 18px;
}

.toc li,
.pros-list li {
  margin: 9px 0;
  color: #cfdae5;
  font-size: 14px;
  line-height: 1.45;
}

.toc a {
  color: #cfdae5;
}

.faq {
  margin-top: 24px;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq summary {
  padding: 15px 0;
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  margin-top: 0;
}

.site-footer {
  margin-top: 38px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(28px, calc((100vw - 1190px) / 2));
  padding-right: max(28px, calc((100vw - 1190px) / 2));
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #101a24;
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  padding: 28px 0;
}

.footer-top {
  align-items: flex-start;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: #d8e6f2;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  border-color: rgba(18, 229, 138, .42);
  color: var(--green);
}

.footer-block h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.footer-payments {
  max-width: 860px;
}

.payment-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-items img {
  width: 75px;
  height: 36px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #26323f;
  object-fit: contain;
}

.footer-socials {
  margin-left: auto;
  text-align: left;
}

.social-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-items a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: color .18s ease, transform .18s ease;
}

.social-items a:hover {
  color: var(--green);
  transform: translateY(-1px);
}

.social-items svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.footer-bottom p {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 470px;
}

.trust-badge {
  width: auto;
  max-height: 32px;
  object-fit: contain;
  opacity: .72;
}

.overlay {
  display: none;
}

@media (max-width: 1320px) {
  .game-card {
    flex-basis: calc((100% - 70px) / 6);
  }
}

@media (max-width: 1120px) {
  .seo-layout {
    grid-template-columns: 1fr;
  }

  .side-stack {
    position: static;
  }
}

@media (max-width: 980px) {
  .app {
    display: block;
  }

  .sidebar {
    position: fixed;
    inset: var(--header) auto 0 0;
    width: min(286px, calc(100vw - 56px));
    transform: translateX(-100%);
  }

  .sidebar.is-open {
    transform: translateX(0);
  }

  .sidebar.is-collapsed {
    width: min(286px, calc(100vw - 56px));
  }

  .sidebar .brand {
    display: none;
  }

  .sidebar.is-collapsed .nav-label,
  .sidebar.is-collapsed .nav-main-link,
  .sidebar.is-collapsed .nav-arrow,
  .sidebar.is-collapsed .sidebar-language,
  .sidebar.is-collapsed .sidebar-promo {
    display: initial;
  }

  .sidebar.is-collapsed .nav-item,
  .sidebar.is-collapsed .nav-link {
    grid-template-columns: 26px minmax(0, 1fr) 18px;
    justify-content: stretch;
    min-height: 44px;
    padding: 0 14px;
  }

  .main {
    height: 100vh;
  }

  .mobile-only {
    display: inline-flex;
  }

  .content {
    padding: 0 0 28px;
  }

  .inner {
    width: 100%;
  }

  .hero {
    border-radius: 0;
  }

  .hero-slide,
  .hero-copy {
    min-height: 420px;
  }

  .hero-nav {
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .hero-copy {
    width: 100%;
    padding: 28px 18px 50px;
    justify-content: flex-end;
  }

  .hero h1,
  .hero-title {
    max-width: 11ch;
    font-size: 42px;
  }

  .section-head,
  .games-wrap,
  .banner-grid,
  .page-hero,
  .seo-layout {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero {
    padding: 28px 22px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .tabs a:not(:first-child) {
    display: none;
  }

  .lang-menu-topbar {
    display: none;
  }

  .game-card {
    flex-basis: calc((100% - 28px) / 3);
  }

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

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

  .footer-socials {
    margin-left: 0;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  .trust-items {
    min-width: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .copy-block {
    width: 100%;
    min-width: 0;
    padding: 20px 16px;
  }

  .bonus-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .overlay {
    position: fixed;
    inset: var(--header) 0 0;
    display: none;
    background: rgba(0, 0, 0, .54);
    z-index: 25;
  }

  body.menu-open .overlay {
    display: block;
  }
}

@media (max-width: 560px) {
  .topbar {
    gap: 8px;
    padding: 0 10px;
  }

  .topbar-left {
    gap: 8px;
    min-width: 0;
  }

  .brand-logo {
    width: 102px;
    min-width: 0;
  }

  .actions {
    flex: 0 0 auto;
    gap: 7px;
  }

  .btn {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 12px;
  }

  .btn-blue {
    display: inline-flex;
  }

  .lang-menu summary {
    min-width: 74px;
  }

  .lang-list {
    width: min(236px, calc(100vw - 24px));
  }

  .hero p {
    font-size: 14px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .content,
  .inner,
  .seo-layout,
  .copy-block,
  .site-footer {
    max-width: 100%;
  }

  .copy-block,
  .page-hero,
  .footer-bottom p {
    overflow-wrap: anywhere;
  }

  .site-footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 92px;
  }

  .btn {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }
}
