:root {
  --be3d-bg: #F5F0E6;
  --be3d-bg-gradient: linear-gradient(120deg, #f5f0e6 60%, #ede8df 100%);
  --be3d-bg-gradient-soft: linear-gradient(120deg, rgba(245,240,230,0.9) 65%, rgba(225,220,210,0.7) 100%);
  --be3d-accent: #312E81;
  --be3d-accent-light: #4744a3;
  --be3d-border: rgba(49,46,129,0.10);
  --be3d-radius-s: 10px;
  --be3d-radius-m: 18px;
  --be3d-radius-l: 28px;
  --be3d-shadow: 0 2px 12px 0 rgba(49,46,129,0.06), 0 1.5px 18px 0 rgba(49,46,129,0.03);
  --be3d-shadow-hover: 0 4px 24px 0 rgba(49,46,129,0.09), 0 2px 24px 0 rgba(49,46,129,0.06);
  --be3d-font: 'Inter', 'Segoe UI', Arial, sans-serif;
  --be3d-text: #22223B;
  --be3d-text-light: #4a4a6a;
  --be3d-muted: #a2a0b5;
  --be3d-btn-bg: #312E81;
  --be3d-btn-txt: #fff;
  --be3d-btn-hover-bg: #fff;
  --be3d-btn-hover-txt: #312E81;
  --be3d-btn-border: #312E81;
  --be3d-btn-radius: 32px;
  --be3d-btn-shadow: 0 2px 8px 0 rgba(49,46,129,0.10);
  --be3d-card-bg: #fff;
  --be3d-card-gradient: linear-gradient(120deg, #fff 80%, #f5f0e6 100%);
  --be3d-card-radius: 20px;
  --be3d-card-shadow: 0 2px 16px 0 rgba(49,46,129,0.07);
  --be3d-container-max: 1240px;
  --be3d-transition: 0.19s cubic-bezier(.4,0,.2,1);
  --be3d-section-space: 56px;
  --be3d-section-space-mobile: 32px;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--be3d-bg-gradient);
  color: var(--be3d-text);
  font-family: var(--be3d-font);
  font-size: 14px;
  line-height: 1.7;
  min-height: 100vh;
  scroll-behavior: smooth;
}

.BlockEscape3D-body {
  background: var(--be3d-bg-gradient);
  min-height: 100vh;
}

.BlockEscape3D-container {
  max-width: var(--be3d-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.BlockEscape3D-header {
  background: var(--be3d-bg-gradient-soft);
  box-shadow: var(--be3d-shadow);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--be3d-border);
}

.BlockEscape3D-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--be3d-container-max);
  margin: 0 auto;
  padding: 18px 24px 12px 24px;
  gap: 16px;
}

.BlockEscape3D-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--be3d-accent);
  letter-spacing: 0.01em;
  transition: color var(--be3d-transition);
}
.BlockEscape3D-logo__img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(49,46,129,0.10);
  object-fit: cover;
}
.BlockEscape3D-logo__title {
  font-size: 1.15em;
  color: var(--be3d-accent);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.BlockEscape3D-logo--footer {
  font-size: 1em;
  gap: 10px;
}
.BlockEscape3D-logo__img--footer {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  margin-right: 6px;
  object-fit: cover;
}

.BlockEscape3D-nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.BlockEscape3D-nav__item {
  margin: 0;
  padding: 0;
}
.BlockEscape3D-nav__link {
  color: var(--be3d-accent);
  text-decoration: none;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--be3d-btn-radius);
  transition: background var(--be3d-transition), color var(--be3d-transition);
  position: relative;
}
.BlockEscape3D-nav__link:hover,
.BlockEscape3D-nav__link:focus {
  background: rgba(49,46,129,0.09);
  color: var(--be3d-accent-light);
  outline: none;
}

.BlockEscape3D-main {
  margin-top: 0;
  padding-bottom: var(--be3d-section-space);
}

.BlockEscape3D-hero {
  padding: var(--be3d-section-space) 0 var(--be3d-section-space-mobile) 0;
  background: var(--be3d-bg-gradient);
}
.BlockEscape3D-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--be3d-container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.BlockEscape3D-hero__left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.BlockEscape3D-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--be3d-accent);
  margin: 0 0 8px 0;
  letter-spacing: 0.01em;
}
.BlockEscape3D-hero__tagline {
  font-size: 1.1rem;
  color: var(--be3d-text-light);
  margin: 0 0 12px 0;
  font-weight: 400;
}
.BlockEscape3D-hero__features {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.BlockEscape3D-hero__features li {
  position: relative;
  padding-left: 22px;
  color: var(--be3d-text-light);
  font-size: 1em;
}
.BlockEscape3D-hero__features li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--be3d-accent);
  opacity: 0.18;
  position: absolute;
  left: 0;
  top: 7px;
}

.BlockEscape3D-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-bottom: 10px;
}
.BlockEscape3D-btn {
  display: inline-block;
  padding: 9px 22px;
  background: var(--be3d-btn-bg);
  color: var(--be3d-btn-txt);
  border: 1px solid var(--be3d-btn-bg);
  border-radius: var(--be3d-btn-radius);
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  box-shadow: var(--be3d-btn-shadow);
  text-decoration: none;
  transition: background var(--be3d-transition), color var(--be3d-transition), box-shadow var(--be3d-transition), border-color var(--be3d-transition);
  outline: none;
  position: relative;
  z-index: 1;
}
.BlockEscape3D-btn--primary {
  background: var(--be3d-accent);
  color: #fff;
  border: 1px solid var(--be3d-accent);
}
.BlockEscape3D-btn:hover,
.BlockEscape3D-btn:focus {
  background: var(--be3d-btn-hover-bg);
  color: var(--be3d-btn-hover-txt);
  border-color: var(--be3d-accent);
  box-shadow: var(--be3d-shadow-hover);
}
.BlockEscape3D-btn--primary:hover,
.BlockEscape3D-btn--primary:focus {
  background: #fff;
  color: var(--be3d-accent);
  border-color: var(--be3d-accent);
}
.BlockEscape3D-store {
  display: inline-block;
  padding: 9px 22px;
  background: transparent;
  color: var(--be3d-accent);
  border: 1px solid var(--be3d-accent);
  border-radius: var(--be3d-btn-radius);
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--be3d-transition), color var(--be3d-transition), box-shadow var(--be3d-transition), border-color var(--be3d-transition);
  box-shadow: var(--be3d-btn-shadow);
}
.BlockEscape3D-store:hover,
.BlockEscape3D-store:focus {
  background: var(--be3d-accent);
  color: #fff;
  border-color: var(--be3d-accent);
  box-shadow: var(--be3d-shadow-hover);
}
.BlockEscape3D-store--play {
  background: linear-gradient(90deg, #312E81 70%, #4744a3 100%);
  color: #fff;
  border: none;
}
.BlockEscape3D-store--play:hover,
.BlockEscape3D-store--play:focus {
  background: #fff;
  color: var(--be3d-accent);
  border: 1px solid var(--be3d-accent);
}

.BlockEscape3D-meta {
  color: var(--be3d-muted);
  font-size: 0.96em;
  margin-top: 6px;
  margin-bottom: 0;
}

.BlockEscape3D-hero__right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  min-width: 0;
}
.BlockEscape3D-hero__card {
  position: relative;
  background: var(--be3d-card-gradient);
  border-radius: var(--be3d-card-radius);
  box-shadow: var(--be3d-card-shadow);
  overflow: hidden;
  width: 320px;
  max-width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.BlockEscape3D-hero__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: var(--be3d-card-radius);
  filter: brightness(0.98) saturate(1.04);
}
.BlockEscape3D-hero__overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 2;
}
.BlockEscape3D-hero__badge {
  background: rgba(49,46,129,0.08);
  color: var(--be3d-accent);
  font-size: 0.92em;
  font-weight: 600;
  border-radius: 8px;
  padding: 4px 12px 4px 10px;
  box-shadow: 0 1px 4px 0 rgba(49,46,129,0.05);
  letter-spacing: 0.01em;
}

.BlockEscape3D-hero__mini {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.BlockEscape3D-hero__miniimg {
  width: 60px;
  height: 60px;
  border-radius: var(--be3d-radius-s);
  object-fit: cover;
  box-shadow: var(--be3d-shadow);
  background: #fff;
}

.BlockEscape3D-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--be3d-accent);
  margin: 0 0 26px 0;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(49,46,129,0.03);
}

.BlockEscape3D-world {
  padding: var(--be3d-section-space) 0;
  background: var(--be3d-bg-gradient-soft);
}
.BlockEscape3D-world__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
.BlockEscape3D-world__imgwrap {
  display: flex;
  align-items: stretch;
}
.BlockEscape3D-world__img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--be3d-radius-m);
  box-shadow: var(--be3d-shadow);
  background: #fff;
}
.BlockEscape3D-world__content {
  background: var(--be3d-card-gradient);
  border-radius: var(--be3d-card-radius);
  box-shadow: var(--be3d-card-shadow);
  padding: 32px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.BlockEscape3D-world__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.BlockEscape3D-world__list > li {
  position: relative;
  padding-left: 20px;
  color: var(--be3d-text-light);
}
.BlockEscape3D-world__list > li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--be3d-accent);
  opacity: 0.14;
  position: absolute;
  left: 0;
  top: 9px;
}
.BlockEscape3D-world__list ul {
  margin-top: 5px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.BlockEscape3D-world__list ul li {
  font-size: 0.97em;
  color: var(--be3d-muted);
  padding-left: 18px;
  position: relative;
}
.BlockEscape3D-world__list ul li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--be3d-accent);
  opacity: 0.07;
  position: absolute;
  left: 0;
  top: 8px;
}

.BlockEscape3D-howto {
  padding: var(--be3d-section-space) 0;
  background: var(--be3d-bg-gradient);
}
.BlockEscape3D-howto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.BlockEscape3D-howto__box {
  background: var(--be3d-card-gradient);
  border-radius: var(--be3d-card-radius);
  box-shadow: var(--be3d-card-shadow);
  padding: 28px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.BlockEscape3D-howto__box h3 {
  font-size: 1.1em;
  color: var(--be3d-accent);
  margin: 0 0 8px 0;
  font-weight: 700;
}
.BlockEscape3D-howto__box ul,
.BlockEscape3D-howto__box ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.BlockEscape3D-howto__box ul li,
.BlockEscape3D-howto__box ol li {
  position: relative;
  padding-left: 20px;
  color: var(--be3d-text-light);
  font-size: 1em;
}
.BlockEscape3D-howto__box ul li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--be3d-accent);
  opacity: 0.11;
  position: absolute;
  left: 0;
  top: 9px;
}
.BlockEscape3D-howto__box ol li {
  counter-increment: be3d-howto;
}
.BlockEscape3D-howto__box ol li::before {
  content: counter(be3d-howto) '.';
  color: var(--be3d-accent);
  font-weight: 700;
  font-size: 0.93em;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.55;
}

.BlockEscape3D-levels {
  padding: var(--be3d-section-space) 0;
  background: var(--be3d-bg-gradient-soft);
}
.BlockEscape3D-levels__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.BlockEscape3D-levels__item {
  background: var(--be3d-card-gradient);
  border-radius: var(--be3d-radius-m);
  box-shadow: var(--be3d-card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--be3d-transition), transform var(--be3d-transition);
}
.BlockEscape3D-levels__item:hover,
.BlockEscape3D-levels__item:focus-within {
  box-shadow: var(--be3d-shadow-hover);
  transform: translateY(-3px) scale(1.025);
}
.BlockEscape3D-levels__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--be3d-radius-m) var(--be3d-radius-m) 0 0;
  background: #fff;
}
.BlockEscape3D-levels__item figcaption {
  padding: 16px 14px 12px 14px;
  color: var(--be3d-text-light);
  font-size: 1em;
  text-align: center;
}

.BlockEscape3D-rhythm {
  padding: var(--be3d-section-space) 0;
  background: var(--be3d-bg-gradient);
}
.BlockEscape3D-rhythm h3 {
  font-size: 1.07em;
  color: var(--be3d-accent);
  margin: 22px 0 10px 0;
  font-weight: 700;
}
.BlockEscape3D-rhythm ol,
.BlockEscape3D-rhythm ul {
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.BlockEscape3D-rhythm ol li {
  counter-increment: be3d-rhythm;
  position: relative;
  padding-left: 22px;
  color: var(--be3d-text-light);
}
.BlockEscape3D-rhythm ol li::before {
  content: counter(be3d-rhythm) '.';
  color: var(--be3d-accent);
  font-weight: 700;
  font-size: 0.93em;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.55;
}
.BlockEscape3D-rhythm ul li {
  position: relative;
  padding-left: 18px;
  color: var(--be3d-text-light);
}
.BlockEscape3D-rhythm ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--be3d-accent);
  opacity: 0.10;
  position: absolute;
  left: 0;
  top: 9px;
}

.BlockEscape3D-features {
  padding: var(--be3d-section-space) 0;
  background: var(--be3d-bg-gradient-soft);
}
.BlockEscape3D-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.BlockEscape3D-feature {
  background: var(--be3d-card-gradient);
  border-radius: var(--be3d-radius-m);
  box-shadow: var(--be3d-card-shadow);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: box-shadow var(--be3d-transition), transform var(--be3d-transition);
}
.BlockEscape3D-feature:hover,
.BlockEscape3D-feature:focus-within {
  box-shadow: var(--be3d-shadow-hover);
  transform: translateY(-3px) scale(1.025);
}
.BlockEscape3D-feature__img {
  width: 68px;
  height: 68px;
  border-radius: var(--be3d-radius-s);
  object-fit: cover;
  margin-bottom: 8px;
  background: #fff;
  box-shadow: var(--be3d-shadow);
}
.BlockEscape3D-feature h4 {
  font-size: 1.05em;
  color: var(--be3d-accent);
  font-weight: 700;
  margin: 0 0 4px 0;
}
.BlockEscape3D-feature p {
  color: var(--be3d-text-light);
  font-size: 0.97em;
  margin: 0;
}

.BlockEscape3D-content {
  padding: var(--be3d-section-space) 0;
  background: var(--be3d-bg-gradient);
}
.BlockEscape3D-content__list {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
}
.BlockEscape3D-content__list li {
  position: relative;
  padding-left: 20px;
  color: var(--be3d-text-light);
  font-size: 1em;
}
.BlockEscape3D-content__list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--be3d-accent);
  opacity: 0.13;
  position: absolute;
  left: 0;
  top: 9px;
}
.BlockEscape3D-content h3 {
  font-size: 1.07em;
  color: var(--be3d-accent);
  margin: 22px 0 8px 0;
  font-weight: 700;
}

.BlockEscape3D-faq {
  padding: var(--be3d-section-space) 0;
  background: var(--be3d-bg-gradient-soft);
}
.BlockEscape3D-faq__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.BlockEscape3D-faq__item {
  background: var(--be3d-card-gradient);
  border-radius: var(--be3d-radius-m);
  box-shadow: var(--be3d-card-shadow);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow var(--be3d-transition), transform var(--be3d-transition);
}
.BlockEscape3D-faq__item:hover,
.BlockEscape3D-faq__item:focus-within {
  box-shadow: var(--be3d-shadow-hover);
  transform: translateY(-3px) scale(1.025);
}
.BlockEscape3D-faq__item h4 {
  font-size: 1.04em;
  color: var(--be3d-accent);
  font-weight: 700;
  margin: 0 0 4px 0;
}
.BlockEscape3D-faq__item p {
  color: var(--be3d-text-light);
  font-size: 0.97em;
  margin: 0;
}

.BlockEscape3D-opinions {
  padding: var(--be3d-section-space) 0;
  background: var(--be3d-bg-gradient);
}
.BlockEscape3D-opinions__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.BlockEscape3D-opinion {
  background: var(--be3d-card-gradient);
  border-radius: var(--be3d-radius-m);
  box-shadow: var(--be3d-card-shadow);
  padding: 28px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--be3d-transition), transform var(--be3d-transition);
}
.BlockEscape3D-opinion:hover,
.BlockEscape3D-opinion:focus-within {
  box-shadow: var(--be3d-shadow-hover);
  transform: translateY(-3px) scale(1.025);
}
.BlockEscape3D-opinion h4 {
  font-size: 1.03em;
  color: var(--be3d-accent);
  font-weight: 700;
  margin: 0 0 6px 0;
}
.BlockEscape3D-opinion p {
  color: var(--be3d-text-light);
  font-size: 0.97em;
  margin: 0;
  font-style: italic;
}

.BlockEscape3D-screenshots {
  padding: var(--be3d-section-space) 0;
  background: var(--be3d-bg-gradient-soft);
}
.BlockEscape3D-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.BlockEscape3D-screenshots__item {
  background: var(--be3d-card-gradient);
  border-radius: var(--be3d-radius-m);
  box-shadow: var(--be3d-card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--be3d-transition), transform var(--be3d-transition);
}
.BlockEscape3D-screenshots__item:hover,
.BlockEscape3D-screenshots__item:focus-within {
  box-shadow: var(--be3d-shadow-hover);
  transform: translateY(-3px) scale(1.025);
}
.BlockEscape3D-screenshots__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: var(--be3d-radius-m) var(--be3d-radius-m) 0 0;
  background: #fff;
}
.BlockEscape3D-screenshots__item figcaption {
  padding: 12px 10px 10px 10px;
  color: var(--be3d-text-light);
  font-size: 0.97em;
  text-align: center;
}

.BlockEscape3D-cta {
  padding: var(--be3d-section-space) 0 var(--be3d-section-space-mobile) 0;
  background: var(--be3d-bg-gradient);
}
.BlockEscape3D-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 18px;
}

.BlockEscape3D-cookie {
  display: none;
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--be3d-card-gradient);
  border-radius: var(--be3d-radius-l);
  box-shadow: 0 8px 32px 0 rgba(49,46,129,0.13);
  padding: 22px 32px;
  z-index: 200;
  min-width: 320px;
  max-width: 90vw;
  border: 1px solid var(--be3d-border);
  animation: be3d-cookie-fadein 0.4s cubic-bezier(.4,0,.2,1);
}
@keyframes be3d-cookie-fadein {
  from { opacity: 0; transform: translateX(-50%) translateY(20px);}
  to { opacity: 1; transform: translateX(-50%) translateY(0);}
}
.BlockEscape3D-cookie__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.BlockEscape3D-cookie__actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.BlockEscape3D-footer {
  background: var(--be3d-bg-gradient-soft);
  border-top: 1px solid var(--be3d-border);
  padding: 44px 0 0 0;
  margin-top: var(--be3d-section-space);
}
.BlockEscape3D-footer__cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  max-width: var(--be3d-container-max);
  margin: 0 auto;
  padding: 0 24px 24px 24px;
}
.BlockEscape3D-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.BlockEscape3D-footer__col h4 {
  font-size: 1em;
  font-weight: 700;
  color: var(--be3d-accent);
  margin: 0 0 8px 0;
}
.BlockEscape3D-footer__col ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.BlockEscape3D-footer__col ul li {
  padding-left: 0;
}
.BlockEscape3D-footer__col ul li a {
  color: var(--be3d-accent);
  text-decoration: none;
  font-size: 0.99em;
  transition: color var(--be3d-transition);
  border-radius: 6px;
  padding: 2px 7px;
}
.BlockEscape3D-footer__col ul li a:hover,
.BlockEscape3D-footer__col ul li a:focus {
  color: var(--be3d-accent-light);
  background: rgba(49,46,129,0.07);
}
.BlockEscape3D-footer__col p {
  color: var(--be3d-muted);
  font-size: 0.96em;
  margin: 0;
}
.BlockEscape3D-footer__bottom {
  border-top: 1px solid var(--be3d-border);
  margin-top: 24px;
  padding: 18px 24px;
  text-align: center;
  color: var(--be3d-muted);
  font-size: 0.93em;
}

/* ADAPTIVE */
@media (max-width: 1240px) {
  .BlockEscape3D-container { padding: 0 16px; }
  .BlockEscape3D-header__inner { padding: 18px 16px 12px 16px; }
  .BlockEscape3D-footer__cols { padding: 0 16px 24px 16px; }
  .BlockEscape3D-footer__bottom { padding: 18px 16px; }
}
@media (max-width: 1024px) {
  .BlockEscape3D-hero__grid,
  .BlockEscape3D-world__grid,
  .BlockEscape3D-howto__grid,
  .BlockEscape3D-levels__gallery,
  .BlockEscape3D-features__grid,
  .BlockEscape3D-faq__grid,
  .BlockEscape3D-opinions__list,
  .BlockEscape3D-screenshots__grid,
  .BlockEscape3D-content__list,
  .BlockEscape3D-footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .BlockEscape3D-features__grid,
  .BlockEscape3D-screenshots__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .BlockEscape3D-footer__cols { gap: 22px; }
}
@media (max-width: 900px) {
  .BlockEscape3D-hero__grid,
  .BlockEscape3D-world__grid,
  .BlockEscape3D-howto__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .BlockEscape3D-hero__right {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .BlockEscape3D-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 8px 10px 8px;
  }
  .BlockEscape3D-nav__list {
    gap: 10px;
    flex-wrap: wrap;
  }
  .BlockEscape3D-main {
    padding-bottom: var(--be3d-section-space-mobile);
  }
  .BlockEscape3D-heading {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  .BlockEscape3D-levels__gallery,
  .BlockEscape3D-features__grid,
  .BlockEscape3D-faq__grid,
  .BlockEscape3D-screenshots__grid,
  .BlockEscape3D-content__list,
  .BlockEscape3D-opinions__list,
  .BlockEscape3D-footer__cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .BlockEscape3D-footer {
    padding-top: 28px;
  }
  .BlockEscape3D-footer__cols {
    padding: 0 8px 18px 8px;
  }
  .BlockEscape3D-footer__bottom {
    padding: 12px 8px;
    font-size: 0.92em;
  }
  .BlockEscape3D-cookie {
    min-width: 180px;
    padding: 14px 10px;
    font-size: 0.98em;
  }
}
@media (max-width: 540px) {
  .BlockEscape3D-hero {
    padding: var(--be3d-section-space-mobile) 0 var(--be3d-section-space-mobile) 0;
  }
  .BlockEscape3D-hero__card {
    width: 100%;
    min-height: 160px;
  }
  .BlockEscape3D-hero__img {
    height: 140px;
  }
  .BlockEscape3D-hero__miniimg {
    width: 44px;
    height: 44px;
  }
  .BlockEscape3D-main {
    padding-bottom: 0;
  }
  .BlockEscape3D-heading {
    font-size: 1.13rem;
    margin-bottom: 12px;
  }
  .BlockEscape3D-world__content,
  .BlockEscape3D-howto__box,
  .BlockEscape3D-opinion,
  .BlockEscape3D-faq__item,
  .BlockEscape3D-feature {
    padding: 14px 8px 12px 8px;
    border-radius: var(--be3d-radius-s);
  }
  .BlockEscape3D-levels__img,
  .BlockEscape3D-screenshots__img {
    height: 80px;
  }
  .BlockEscape3D-meta {
    font-size: 0.88em;
  }
  .BlockEscape3D-btn,
  .BlockEscape3D-store {
    padding: 8px 12px;
    font-size: 0.98em;
  }
  .BlockEscape3D-cookie {
    padding: 10px 4px;
    font-size: 0.93em;
    min-width: 120px;
  }
}

/* Hide scrollbars for cards on mobile (if overflow) */
.BlockEscape3D-levels__gallery,
.BlockEscape3D-screenshots__grid {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--be3d-accent) #eaeaea;
}
@media (max-width: 540px) {
  .BlockEscape3D-levels__gallery,
  .BlockEscape3D-screenshots__grid {
    grid-auto-flow: column;
    grid-template-columns: repeat(4, 80vw);
    gap: 14px;
  }
}

::-webkit-scrollbar {
  width: 8px;
  background: #eaeaea;
}
::-webkit-scrollbar-thumb {
  background: var(--be3d-accent);
  border-radius: 8px;
  opacity: 0.15;
}