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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Unbounded", sans-serif;
  background-color: #0A0A14;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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;
}

address {
  font-style: normal;
}

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

.btn {
  display: inline-block;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.btn--primary {
  -webkit-box-shadow: 0 0 18px 0 #00a1ff;
          box-shadow: 0 0 18px 0 #00a1ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff8c00), to(#c93900));
  background: linear-gradient(180deg, #ff8c00 0%, #c93900 100%);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 60px;
  border: 2px solid #fff;
}

.btn--primary:hover {
  background: #C93900;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
          box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}
.logo {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #FF8C00;
}
.section-title {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(32px, 5vw, 56px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 20, 0.85);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__container {
  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;
  height: 70px;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  z-index: 101;
}

.header__logo-img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__logo-text {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header__nav-link:hover {
  color: #FF8C00;
}

.header__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;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 0;
}

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

.header__burger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

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

.header__burger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  margin-top: 130px;
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
  background: #001BCA;
  border-radius: 40px;
}

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

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

.hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero__text {
  font-size: 14px;
  font-weight: 300;
  color: #b0b0c0;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
}

.hero__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  width: 100%;
  border-radius: 16px;
}

.story {
  padding: 80px 0;
}

.story__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

.story__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 380px;
          flex: 0 0 380px;
}

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

.story__title {
  margin-bottom: 24px;
}

.story__text {
  font-size: 14px;
  font-weight: 300;
  color: #b0b0c0;
  line-height: 1.8;
}

.story__lines {
  margin-top: 10px;
}

.advantages {
  padding: 80px 0;
}

.advantages .container {
  position: relative;
}

.advantages__title {
  margin-bottom: 24px;
}

.advantages__intro {
  font-size: 14px;
  font-weight: 300;

  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 700px;
}

.advantages__decoration {
  margin-bottom: 40px;
}

.advantages__decoration img {
  max-width: 200px;
}

.advantages__lines {
  position: absolute;
  top: 10px;
  right: 90px;
  z-index: -1;
}

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

.advantage-card {
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 16px;
  padding: 28px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 140, 0, 0.2)), to(rgba(201, 57, 0, 0.2)));
  background: linear-gradient(180deg, rgba(255, 140, 0, 0.2) 0%, rgba(201, 57, 0, 0.2) 100%);
}

.advantage-card:nth-child(1), .advantage-card:nth-child(3), .advantage-card:nth-child(5) {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff8c00), to(#c93900));
  background: linear-gradient(180deg, #ff8c00 0%, #c93900 100%);
}

.advantage-card:hover {
  border-color: #FF8C00;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 30px rgba(255, 140, 0, 0.15);
          box-shadow: 0 8px 30px rgba(255, 140, 0, 0.15);
}

.advantage-card img {
  width: 100%;
  max-width: 70px;
  margin-bottom: 20px;
}

.advantage-card__title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #ffffff;
}

.advantage-card__text {
  font-size: 13px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.7;
}

.popular-games,
.games-page {
  padding: 80px 0;
}

.popular-games__title,
.games-page__title {
  margin-bottom: 16px;
}

.popular-games__decoration,
.games-page__decoration {
  margin-bottom: 16px;
}

.popular-games__decoration img,
.games-page__decoration img {
  max-width: 200px;
}

.popular-games__intro,
.games-page__intro {
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.popular-games__grid,
.games-page__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.popular-games__character,
.games-page__character {
  text-align: center;
}

.popular-games__character img,
.games-page__character img {
  max-width: 360px;
  margin: 0 auto;
}

.games-page {
  padding-top: 120px;
}

.games-page__title {
  text-align: center;
}

.games-page__decoration {
  text-align: center;
}

.games-page__decoration img {
  margin: 0 auto;
}

.popular-games__title {
  text-align: center;
}

.popular-games__decoration {
  text-align: center;
}

.popular-games__decoration img {
  margin: 0 auto;
}

.game-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(255, 140, 0, 0.5);
  aspect-ratio: 1/1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.game-card:hover {
  border-color: #FF8C00;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.game-card:hover .game-card__img {
  opacity: 0;
}

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

.game-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.game-card__overlay {
  position: absolute;
  inset: 0;
  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;
  background: linear-gradient(135deg, #FF8C00, #C93900);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.game-card__name {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
}

.faq {
  padding: 80px 0;
}

.faq .container {
  position: relative;
}

.faq__title {
  margin-bottom: 32px;
}

.faq__list {
  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;
  max-width: 800px;
}

.faq__item {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 140, 0, 0.2)), to(rgba(201, 57, 0, 0.2)));
  background: linear-gradient(180deg, rgba(255, 140, 0, 0.2) 0%, rgba(201, 57, 0, 0.2) 100%);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.faq__item[open] {
  border-color: #FF8C00;
}

.faq__item[open] .faq__question::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq__question {
  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;
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FF8C00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -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;
}

.faq__answer {
  padding: 0 24px 20px;
  font-size: 13px;
  font-weight: 300;
  color: #b0b0c0;
  line-height: 1.7;
}

.faq__img {
  position: absolute;
  top: 0;
  right: 40px;
  pointer-events: none;
}

.contacts {
  padding: 80px 0 0;
}

.contacts__bg {
  background: -webkit-gradient(linear, left top, left bottom, from(#0060CC), to(#001BCA));
  background: linear-gradient(180deg, #0060CC 0%, #001BCA 100%);
  border-radius: 40px;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contacts__title {
  margin-bottom: 16px;
}

.contacts__decoration {
  margin-bottom: 16px;
}

.contacts__decoration img {
  max-width: 200px;
  margin: 0 auto;
}

.contacts__text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.contacts__info {
  margin-bottom: 32px;
}

.contacts__address {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contacts__phone a,
.contacts__email a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.contacts__phone a:hover,
.contacts__email a:hover {
  color: #FF8C00;
}

.contacts__chest img {
  max-width: 240px;
  margin: 0 auto;
}

.footer {
  background: #0A0A14;
  padding: 40px 0 24px;
}

.footer__container {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__top {
  margin-bottom: 20px;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.footer__logo-img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__logo-text {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__nav {
  margin-bottom: 20px;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 24px;
}

.footer__nav-link {
  font-size: 13px;
  font-weight: 400;
  color: #b0b0c0;
}

.footer__nav-link:hover {
  color: #FF8C00;
}

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

.footer__social-link {
  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;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0060CC;
  color: #ffffff;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.footer__social-link:hover {
  background: #FF8C00;
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__copy {
  font-size: 12px;
  color: #b0b0c0;
  font-weight: 300;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  border-left-color: 0;
  z-index: 200;
  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;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.cookie-popup.hidden {
  opacity: 0;
  pointer-events: none;
}

.cookie-popup__inner {
  background: #111125;
  border: 2px solid rgba(255, 140, 0, 0.4);
  border-radius: 20px;
  padding: 36px;
  max-width: 600px;
  text-align: center;
}

.cookie-popup__icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.cookie-popup__title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cookie-popup__text {
  font-size: 13px;
  font-weight: 300;
  color: #b0b0c0;
  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 {
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cookie-popup__btn--accept {
  background: #FF8C00;
  color: #ffffff;
  border: 2px solid #FF8C00;
}

.cookie-popup__btn--accept:hover {
  background: #C93900;
  border-color: #C93900;
}

.cookie-popup__btn--manage {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-popup__btn--manage:hover {
  background: rgba(255, 255, 255, 0.1);
}

.game-hero {
  padding: 120px 0 60px;
  text-align: center;
}

.game-hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.game-hero__decoration {
  margin-bottom: 24px;
}

.game-hero__decoration img {
  max-width: 200px;
  margin: 0 auto;
}

.game-hero__text {
  font-size: 14px;
  font-weight: 300;
  color: #b0b0c0;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

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

.game-hero__image {
  max-width: 400px;
  margin: 0 auto;
}

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

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

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

.game-details__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.game-details__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

.game-details__text {
  font-size: 14px;
  font-weight: 300;
  color: #b0b0c0;
  line-height: 1.8;
  margin-bottom: 24px;
}

.game-details__decoration img {
  max-width: 200px;
}

.game-details__screenshot {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}

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

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 99;
}

@media (max-width: 992px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 20, 0.97);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    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;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -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;
    z-index: 100;
  }
  .header__nav.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header__nav-list {
    -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: 32px;
  }
  .header__nav-link {
    font-size: 24px;
    font-weight: 600;
  }
  .hero__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .hero__image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    max-width: 350px;
  }
  .story__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .story__image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .advantages__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .game-details__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .game-details__screenshot {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .faq__img {
    position: static;
  }
}

@media (max-width: 768px) {
  .advantages__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .popular-games__grid,
  .games-page__grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 500px;
  }
  .faq__question {
    font-size: 13px;
    padding: 16px 20px;
  }
  .contacts__bg {
    border-radius: 24px 24px 0 0;
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 40px;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__text {
    font-size: 13px;
  }
  .popular-games__grid,
  .games-page__grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .game-card__name {
    font-size: 12px;
  }
  .game-hero {
    padding: 100px 0 40px;
  }
  .game-hero__title {
    font-size: 28px;
  }
  .game-hero__image {
    max-width: 280px;
  }
  .game-details__title {
    font-size: 24px;
  }
  .section-title {
    font-size: 28px;
  }
  .contacts__address {
    font-size: 12px;
  }
  .footer__nav-list {
    gap: 12px 16px;
  }
  .legal-page__content h2 {
    font-size: 16px;
  }
}

.legal-page {
  padding: 120px 0 80px;
}

.legal-page__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.legal-page__decoration {
  margin-bottom: 32px;
}

.legal-page__decoration img {
  max-width: 200px;
}

.legal-page__content {
  max-width: 900px;
}

.legal-page__content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 8px;
}

.legal-page__content p {
  font-size: 14px;
  font-weight: 300;
  color: #b0b0c0;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page__address {
  margin-top: 8px;
}

.legal-page__address p {
  margin-bottom: 4px;
}

.legal-page__address a {
  color: #b0b0c0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.legal-page__address a:hover {
  color: #FF8C00;
}
