:root {
  --font-family: "Rubik", sans-serif;
  --content-width: 2510px;
  --container-offset: 25px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --text-primary: #fff ;
  --text-gray: #959799;
  --bg-primary: #06060E;
  --bg-iframe: #0E1114;
  --bg-ui-block:#202428;
  --bg-buttons: #26272A;
  --bg-hv: rgba(246, 246, 246, 0.5);
  --trans: 0.25s ease-out;
  --trans-second: 0.6s ease-out;
  --trans-third: 0.4s ease-out;
  --trans-four: 0.6s ease;
}

/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-weight: 500;
  font-variant-numeric: lining-nums;
  font-size: 13px;
  color: var(--text-primary);
  background-color: black;
  overflow-x: hidden;
}

/* Страница игры: на мобильных полностью блокируем вертикальную прокрутку,
   чтобы шапка (логотип + крестик) не «ездили» вверх-вниз после выхода из fullscreen */
@media (max-width: 1024px) {
  .page__body--game {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }
}
.page__body.is-dark::after {
  opacity: 1;
}

@media (width >= 1024px) {
  .page__body.loading {
    overflow: hidden;
  }
}
img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

button {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.site-container {
  overflow: hidden;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.site-container.visible {
  overflow: visible;
}
@media (max-width: 1024px) {
  .site-container.visible {
    overflow: hidden;
  }
}
.site-container.visible-s {
  overflow: visible;
}
@media (max-width: 768px) {
  .site-container.visible-s {
    overflow: hidden;
  }
}

.game-layout {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.site-container-game {
  width: calc(100% - 300px);
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .site-container-game {
    width: 100%;
  }
}

.sidebar-right {
  width: 300px;
  background-color: black;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 1024px) {
  .sidebar-right {
    display: none;
  }
}

.game-layout:has(.game__game.full) .site-container-game {
  width: 100%;
}

.game-layout:has(.game__game.full) .sidebar-right {
  display: none;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.no-scrolling {
  overflow: hidden;
}

.is-start {
  overflow: hidden;
  padding-right: var(--basic-scroll-width);
}
@media (max-width: 1024px) {
  .is-start {
    overflow: visible;
  }
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
@media (max-width: 1600px) {
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-ac {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.f-as {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.f-ae {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.f-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.f-jsb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.f-jc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.icon {
  fill: transparent;
  stroke: var(--text-primary);
  stroke-linecap: round;
  stroke-width: 2px;
}

.left-up {
  -webkit-animation: 1.2s ease leftUp forwards;
  animation: 1.2s ease leftUp forwards;
  will-change: transform;
}

.left-down {
  -webkit-animation: 1.2s ease leftDown forwards;
  animation: 1.2s ease leftDown forwards;
  will-change: transform;
}

.right-up {
  -webkit-animation: 1.2s ease rightUp forwards;
  animation: 1.2s ease rightUp forwards;
  will-change: transform;
}

.right-down {
  -webkit-animation: 1.2s ease rightDown forwards;
  animation: 1.2s ease rightDown forwards;
  will-change: transform;
}

.top-up {
  -webkit-animation: 1.2s ease topUp forwards;
  animation: 1.2s ease topUp forwards;
  will-change: transform;
}

.top-down {
  -webkit-animation: 1.2s ease topDown forwards;
  animation: 1.2s ease topDown forwards;
  will-change: transform;
}

.scale-up {
  -webkit-animation: 1s ease scaleUp forwards;
  animation: 1s ease scaleUp forwards;
  will-change: transform;
}

.scale-down {
  -webkit-animation: 1s ease scaleDown forwards;
  animation: 1s ease scaleDown forwards;
  will-change: transform;
}

.title {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.swiper-button-prev, .swiper-button-next {
  position: relative;
  left: 0;
  right: 0;
}
.swiper-button-prev::after, .swiper-button-next::after {
  content: none;
}

.name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.circle {
  position: absolute;
  width: 120px;
  height: 120px;
  background-color: var(--text-primary);
  top: 0%;
  right: 0%;
  border-radius: 50%;
  -webkit-filter: blur(130px);
  filter: blur(130px);
  z-index: -1;
}

/* stylelint-disable */
@-webkit-keyframes leftUp {
  from {
    opacity: 0;
    -webkit-transform: translateX(-15%);
    transform: translateX(-15%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes leftUp {
  from {
    opacity: 0;
    -webkit-transform: translateX(-15%);
    transform: translateX(-15%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes leftDown {
  from {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateX(-15%);
    transform: translateX(-15%);
  }
}
@keyframes leftDown {
  from {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateX(-15%);
    transform: translateX(-15%);
  }
}
@-webkit-keyframes rightUp {
  from {
    opacity: 0;
    -webkit-transform: translateX(15%);
    transform: translateX(15%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes rightUp {
  from {
    opacity: 0;
    -webkit-transform: translateX(15%);
    transform: translateX(15%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes rightDown {
  from {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateX(15%);
    transform: translateX(15%);
  }
}
@keyframes rightDown {
  from {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateX(15%);
    transform: translateX(15%);
  }
}
@-webkit-keyframes topUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes topUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes topDown {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
  }
}
@keyframes topDown {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
  }
}
@-webkit-keyframes scaleUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scaleDown {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
@keyframes scaleDown {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
@-webkit-keyframes leftInfinite {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes leftInfinite {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
/* stylelint-disable */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #202428;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn.disabled, .btn:disabled {
  opacity: 0.5;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header {
  border-bottom: 1px solid #181B2A;
}
.header__container {
  min-height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__close {
  display: none;
}

.header-mobile {
  border-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 35px;
  padding: 0 5px;
}
.header-mobile .header__logo {
  max-width: 69px;
  padding-top: 0px;
}
.header-mobile p {
  font-weight: 700;
}
@media (max-width: 1024px) {
  .header-mobile {
    position: absolute;
    z-index: 10;
    background-color: #000;
    width: 100%;
  }
  .header-mobile p {
    display: none;
  }
  .header-mobile .header__container {
    min-height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header-mobile .header__logo {
    max-width: 64px;
  }
  .header-mobile.horizontal {
    height: 100%;
    width: 42px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: 100%;
    padding: 12px 0;
  }
  .header-mobile.horizontal .header__logo {
    -webkit-transform: scale(1.5) rotate(-90deg);
    -ms-transform: scale(1.5) rotate(-90deg);
    transform: scale(1.5) rotate(-90deg);
    margin-bottom: 30px;
  }
  .header-mobile.horizontal p {
    display: none;
  }
  .header-mobile .header__close {
    background-color: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.continue {
  margin: 20px 0;
  overflow: hidden;
}
.continue__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 8px;
}
.continue__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .continue__buttons {
    display: none;
  }
}
.continue__button {
  width: 34px;
  height: 34px;
}
.continue__button svg {
  width: 9px;
  height: 9px;
}
.continue__button use {
  fill: var(--text-primary);
}
.continue__button:hover {
  background-color: var(--bg-iframe);
}
.continue__swiper {
  position: relative;
}
.continue__swiper::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 1;
  -webkit-box-shadow: -30px 0px 26px 0px rgba(0, 0, 0, 0.65);
  box-shadow: -30px 0px 26px 0px rgba(0, 0, 0, 0.65);
}
@media (max-width: 768px) {
  .continue__swiper {
    margin-right: -8px;
  }
  .continue__swiper::after {
    content: none;
  }
}
.continue__slide {
  width: 120px;
}
.continue__slide:hover h3 {
  color: var(--text-gray);
}
@media (max-width: 768px) {
  .continue__slide {
    width: 90px;
  }
  .continue__slide .continue__image {
    height: 90px;
  }
}
.continue__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 100%;
}
.continue__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  overflow: hidden;
}
.continue__name {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.recommendation {
  margin: 30px 0 40px 0;
}
.recommendation__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.recommendation__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
@media (max-width: 1920px) {
  .recommendation__body {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
@media (max-width: 768px) {
  .recommendation__body {
    grid-template-columns: repeat(auto-fit, minmax(clamp(8.75rem, 6.6964285714vw + 7.4107142857rem, 10.625rem), 1fr));
  }
}
.recommendation__column:hover h3 {
  color: var(--text-gray);
}
.recommendation__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 59%;
}
.recommendation__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  overflow: hidden;
}
.recommendation__name {
  max-width: clamp(115.625rem, -251.5625vw + 417.5rem, 15rem);
  font-size: clamp(0.8125rem, 0.78125vw + -0.125rem, 1.125rem);
}
@media (max-width: 1920px) {
  .recommendation__name {
    font-size: 13px;
    max-width: 185px;
  }
}
.recommendation__button {
  margin: 0px auto;
  max-width: 211px;
  min-height: 46px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  background-color: #13161B;
  border: 1px solid #474A4D;
  display: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .recommendation__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.recommendation__button:hover {
  background: var(--bg-iframe);
}

.game {
  position: relative;
}
.game__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.game__body {
  width: 100%;
}
.game__game {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.game__game.full, .game__game.full-mobile {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.game__game.full-mobile {
  width: calc(100% - 42px);
  padding: 0;
  inset: unset;
  top: 0;
  right: 0;
}
.game__game.full-mobile .game__wrapper {
  height: 100%;
  border-radius: 0;
}
.game__wrapper {
  width: 100%;
  min-height: clamp(31.25rem, 34.8214285714vw + -0.0892857143rem, 55.625rem);
  height: calc(100vh - 36px);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.game__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 1024px) {
  .game__wrapper {
    min-height: unset;
  }
}
.game__fullscreen {
  border-radius: 8px;
  padding-left: 53px;
}
@media (max-width: 1024px) {
  .game__fullscreen {
    display: none;
  }
}
.game__breadcrumblist {
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .game__breadcrumblist {
    display: none;
  }
}
@media (max-width: 1024px) {
  .game__description {
    display: none;
  }
}
.game__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.game__text {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--text-gray);
  margin-bottom: 24px;
}
.game__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  background-color: var(--bg-iframe);
  padding: 16px;
  min-height: 100%;
}
.game__ads {
  border-radius: 10px;
  background-color: #212121;
  width: 100%;
  min-height: 133px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.game__ads p {
  font-size: 18px;
  font-weight: 500;
  color: #595959;
}
.game__columns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.game__column:hover h3 {
  color: var(--text-gray);
}
.game__image {
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 59%;
}
.game__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .game__game ~ * {
    display: none !important;
  }
  .game__breadcrumblist,
  .game__description,
  .game__aside {
    display: none !important;
  }
  body.landscape-mode {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    width: 100vh !important;
    height: 100vw !important;
    overflow: hidden !important;
    position: fixed !important;
  }
  .game__game {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
  }
  .game__wrapper {
    height: 100vh;
    width: calc(100% - 42px);
    margin-left: 42px;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .game__game {
    position: fixed !important;
    top: calc(50% + 17px) !important;
    left: 50% !important;
    width: calc(100vh - 36px) !important;
    height: 100vw !important;
    -webkit-transform: translate(-50%, -50%) rotate(90deg) !important;
    -ms-transform: translate(-50%, -50%) rotate(90deg) !important;
    transform: translate(-50%, -50%) rotate(90deg) !important;
    -webkit-transform-origin: center center !important;
    -ms-transform-origin: center center !important;
    transform-origin: center center !important;
  }
  .game__game .game__wrapper {
    width: calc(100dvh - 36px) !important;
    margin-left: 0 !important;
    height: 100% !important;
    min-height: unset;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .game__game .game__wrapper iframe {
    width: 100% !important;
    height: 100% !important;
  }
}
/* stylelint-disable */
.breadcrumblist ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 24px;
}
.breadcrumblist ol li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumblist ol li + li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  border-top: 1px solid #474A4D;
  border-left: 1px solid #474A4D;
  width: 6px;
  height: 6px;
  -webkit-transform: translateY(-50%) rotate(135deg);
  -ms-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.breadcrumblist ol li + li::before:last-child {
  border-top: 1px solid #474A4D;
  border-left: 1px solid #474A4D;
}
.breadcrumblist ol li span {
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #474A4D;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.breadcrumblist ol li span.current-item {
  color: #F5F8FF;
}
.breadcrumblist ol li span.current-item:hover {
  color: var(--text-primary);
}
.breadcrumblist ol li span:hover {
  color: var(--text-accent);
}
.breadcrumblist ol li:last-child::before {
  border-top: 1px solid #474A4D;
  border-left: 1px solid #474A4D;
}
.breadcrumblist ol a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer {
  border-top: 1px solid #181B2A;
  padding-top: 16px;
  margin-bottom: 32px;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer__link, .footer__coopyright {
  color: #5F6368;
  font-size: 13px;
  font-weight: 500;
}

/* Панель поворота устройства */
.rotate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rotate-overlay__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  max-width: 400px;
  animation: rotateOverlayFadeIn 0.3s ease-out;
}

@keyframes rotateOverlayFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rotate-overlay__image {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  animation: rotateAnimation 2s ease-in-out infinite;
}

@keyframes rotateAnimation {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
}

.rotate-overlay__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.rotate-overlay__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.5;
}

.rotate-overlay__button {
  background-color: #000;
  color: var(--text-primary);
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  min-width: 160px;
}

.rotate-overlay__button:hover {
  background-color: #111;
  border-color: #fff;
  transform: translateY(-2px);
}

.rotate-overlay__button:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .rotate-overlay__image {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .rotate-overlay__title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .rotate-overlay__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .rotate-overlay__button {
    padding: 12px 36px;
    font-size: 14px;
  }
}

/*# sourceMappingURL=main.css.map */
