*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  font-family: "Arial", sans-serif;
  background-color: #00111C;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

.link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link:hover, .link:focus {
  color: #59FF00;
}

.link:active {
  color: #673DFF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(0, 17, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.header__inner {
  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__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: #ffffff;
}

.header__logo img {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #00080d;
    padding: 80px 30px 30px;
    -webkit-transition: right 0.4s ease;
    transition: right 0.4s ease;
    z-index: 999;
    border-left: 1px solid rgba(89, 255, 0, 0.15);
  }
  .header__nav.is-open {
    right: 0;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

@media (max-width: 768px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
  }
}

.header__nav-link {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #59FF00;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.header__nav-link:hover {
  color: #59FF00;
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-link--active {
  color: #59FF00;
}

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

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

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

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

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url(/wp-content/themes/site/assets/images/bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(103, 61, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero__text {
  max-width: 780px;
  margin: 0 auto 36px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.hero__btn {
  display: inline-block;
  margin-bottom: 40px;
}

.hero__image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  border-radius: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.btn--primary {
  background: #59FF00;
  color: #00111C;
}

.btn--primary:hover {
  background: #74ff29;
  -webkit-box-shadow: 0 0 24px rgba(89, 255, 0, 0.4);
          box-shadow: 0 0 24px rgba(89, 255, 0, 0.4);
}

.btn--outline {
  background: transparent;
  color: #59FF00;
  border: 2px solid #59FF00;
}

.btn--outline:hover {
  background: rgba(89, 255, 0, 0.1);
}

.stats {
  padding: 60px 0;
}

.stats__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .stats__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.stats__item {
  text-align: center;
}

.stats__number {
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: #59FF00;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stats__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.chronicle {
  padding: 80px 0;
}

.chronicle .container {
  position: relative;
}

.chronicle__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 24px;
}

.chronicle__text {
  max-width: 800px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

.chronicle__btn {
  margin-top: 24px;
}

.chronicle__image {
  margin-top: 50px;
  border-radius: 16px;
  overflow: hidden;
}

.chronicle__image img {
  width: 100%;
  border-radius: 16px;
}

.chronicle__decoration {
  position: absolute;
  top: 20px;
  right: 40px;
  max-width: 120px;
  opacity: 0.5;
  width: 100%;
}

@media (max-width: 768px) {
  .chronicle__decoration {
    display: none;
  }
}

.categories {
  padding: 80px 0;
  text-align: center;
}

.categories__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 48px;
}

.categories__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .categories__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.categories__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 24px 32px;
  text-align: center;
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
}

.categories__card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #673DFF;
  border-radius: 0 0 4px 4px;
}

.categories__card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(103, 61, 255, 0.3);
}

.categories__card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
}

.categories__card-title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: #59FF00;
}

.categories__card-text {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.6;
}

.panorama {
  padding: 20px 0;
}

.panorama__image {
  border-radius: 16px;
  overflow: hidden;
}

.panorama__image img {
  width: 100%;
  border-radius: 16px;
}

.popular {
  padding: 80px 0;
}

.popular__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 768px) {
  .popular__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.popular__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.popular__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}

.popular__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.popular__side-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .popular__side-image {
    width: 100%;
    max-width: 400px;
  }
}

.popular__side-image img {
  width: 100%;
  border-radius: 12px;
}

.popular .games-grid {
  max-width: 500px;
}

.games-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .games-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .games-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.game-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.game-card:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.game-card:hover .game-card__overlay {
  opacity: 1;
}

.game-card:hover .game-card__image {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.game-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 17, 28, 0.8);
  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;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 12px;
}

.game-card__name {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  color: #59FF00;
  text-align: center;
  line-height: 1.2;
}

.games-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  background-image: url(/wp-content/themes/site/assets/images/bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.games-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(103, 61, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.games-hero__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 24px;
}

.games-hero__text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.games-page-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 0;
}

@media (max-width: 768px) {
  .games-page-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .games-page-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.contacts {
  padding: 80px 0;
  text-align: center;
  background-image: url(/wp-content/themes/site/assets/images/bg2.webp);
  background-position: right 0 center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.contacts__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 20px;
}

.contacts__text {
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contacts__info {
  font-size: 15px;
  font-weight: 700;
  color: #59FF00;
  line-height: 1.8;
}

.contacts__info a {
  color: #59FF00;
}

.contacts__info a:hover {
  text-decoration: underline;
}

.contacts__image {
  margin-top: 50px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 30px;
  display: block;
}

.contacts__image img {
  width: 100%;
  border-radius: 16px;
}

.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer__logo img {
  width: 32px;
  height: 32px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer__nav-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: #59FF00;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.footer__social-link {
  width: 52px;
  height: 52px;
  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: 50%;
  background: rgba(255, 255, 255, 0.08);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.footer__social-link img {
  width: 30px;
  height: 30px;
}

.footer__social-link:hover {
  background: rgba(89, 255, 0, 0.2);
}

.footer__copy {
  font-size: 13px;
}

.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2000;
  width: 90%;
  max-width: 520px;
  background: #002036;
  border: 1px solid rgba(89, 255, 0, 0.2);
  border-radius: 20px;
  padding: 32px 28px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.cookie-popup.is-visible {
  opacity: 1;
  visibility: visible;
}

.cookie-popup.is-hiding {
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(20px);
          transform: translateX(-50%) translateY(20px);
}

.cookie-popup__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
}

.cookie-popup__title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  margin-bottom: 12px;
}

.cookie-popup__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cookie-popup__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.cookie-popup__btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #59FF00;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.cookie-popup__btn--accept {
  background: #59FF00;
  color: #00111C;
}

.cookie-popup__btn--accept:hover {
  background: #74ff29;
}

.cookie-popup__btn--decline {
  background: transparent;
  color: #59FF00;
}

.cookie-popup__btn--decline:hover {
  background: rgba(89, 255, 0, 0.08);
}

.text-page {
  padding: 140px 0 80px;
  background-image: url(/wp-content/themes/site/assets/images/bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.text-page__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 32px;
}

.text-page__content {
  max-width: 800px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.text-page__content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  color: #ffffff;
  margin: 32px 0 12px;
}

.text-page__content p {
  margin-bottom: 16px;
}

.text-page__content a {
  color: #59FF00;
}

.text-page__content a:hover {
  text-decoration: underline;
}

.game-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  background-image: url(/wp-content/themes/site/assets/images/bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.game-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(103, 61, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.game-hero__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 20px;
}

.game-hero__text {
  max-width: 780px;
  margin: 0 auto 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.game-hero__btn {
  margin-bottom: 40px;
}

.game-hero__image {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.game-hero__image img {
  width: 100%;
  border-radius: 16px;
}

.game-description {
  padding: 80px 0;
}

.game-description__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  margin-bottom: 24px;
}

.game-description__text {
  max-width: 800px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.game-description__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .game-description__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.game-description__screenshot {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 560px;
  border-radius: 12px;
  overflow: hidden;
}

.game-description__screenshot img {
  width: 100%;
  border-radius: 12px;
}

.game-description__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.game-description__decoration {
  width: 120px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .game-description__decoration {
    display: none;
  }
}

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