@import url("https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Mono", monospace;
  background-color: #0f0f0f;
  color: #fff;
  min-width: 320px;
}

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

ul,
ol {
  list-style: none;
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.header {
  background-color: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header__logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.header__logo-text {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1;
  white-space: nowrap;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 32px;
  text-align: center;
  white-space: nowrap;
}

.header__burger {
  display: none;
  width: 20px;
  height: 8px;
}

.header__burger img {
  width: 100%;
  height: 100%;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0f0f0f;
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu__close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Space Mono", monospace;
}

.mobile-menu__link {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.hero {
  background-color: #0f0f0f;
  padding: 80px 50px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.hero__title-wrap {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease both;
}

.hero__title {
  font-size: 130px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
}

.hero__subtitle {
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  filter: blur(3.25px);
  white-space: nowrap;
}

.hero__content {
  display: flex;
  align-items: center;
  gap: 83px;
  animation: fadeInUp 0.6s ease 0.15s both;
}

.hero__image {
  width: 501px;
  height: 372px;
  flex-shrink: 0;
  object-fit: contain;
}

.hero__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 496px;
}

.hero__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  color: #fff;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 50px;
  background: linear-gradient(
    235.715deg,
    #187600 16.349%,
    #32f900 46.955%,
    #bdf589 77.561%
  );
  color: #000;
  font-family: "Space Mono", monospace;
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  white-space: nowrap;
  max-width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(50, 249, 0, 0.35);
  filter: brightness(1.08);
}

.btn-gradient:active {
  transform: translateY(-1px);
}

.btn-gradient--lg {
  padding: 14px 60px;
  font-size: 18px;
  text-align: center;
  line-height: 1.1;
  background: linear-gradient(
    222.552deg,
    #187600 16.349%,
    #32f900 46.955%,
    #bdf589 77.561%
  );
}

.section-about {
  background-color: #0f0f0f;
  padding: 80px 50px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.section-about__title {
  font-size: 50px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 40px;
}

.section-about__image {
  width: 800px;
  height: 300px;
  object-fit: cover;
  margin-bottom: 40px;
}

.section-about__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #fff;
  margin-bottom: 40px;
}

.section-about__text p {
  margin-bottom: 0;
}

.section-about__text p + p {
  margin-top: 24px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.stats__item {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  text-align: center;
  gap: 8px;
}

.stats__item--green {
  background-color: #32f900;
  color: #000;
}

.stats__item--dark {
  background-color: #187600;
  color: #fff;
}

.stats__number {
  font-size: 80px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
}

.stats__label {
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.section-why {
  background-color: #0f0f0f;
  padding: 80px 50px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.section-why__title {
  font-size: 50px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.section-why__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-why__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #bdf589;
}

.section-why__item-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  width: 394px;
}

.section-why__item-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  width: 383px;
}

.section-why__item-arrow {
  width: 39px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-why__item-arrow img {
  width: 50px;
  transform: rotate(38.48deg);
  height: 20px;
}

.section-faq {
  background-color: #0f0f0f;
  padding: 80px 50px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  display: flex;
  gap: 40px;
  justify-content: center;
  position: relative;
}

.section-faq__image {
  position: absolute;
  width: 223px;
  height: 223px;
  object-fit: contain;
  left: 496px;
  top: 256px;
}

.section-faq__questions {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.faq-item__header {
  display: flex;
  align-items: center;
  gap: 21px;
  width: 100%;
}

.faq-item__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item:hover .faq-item__icon {
  transform: scale(1.2);
}

.faq-item__icon--minus {
  display: none;
}

.faq-item--open .faq-item__icon--plus {
  display: none;
}

.faq-item--open .faq-item__icon--minus {
  display: block;
}

.faq-item__question {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  color: #fff;
  flex: 1;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-item__question {
  color: #bdf589;
}

.faq-item__answer {
  border-left: 2px solid #bdf589;
  padding: 0 0 0 10px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease, padding 0.4s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
  padding: 6px 0 6px 10px;
}

.faq-item__answer p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #fff;
}

.section-faq__heading {
  width: 431px;
  height: 254px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid #fff;
}

.section-faq__heading-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.section-faq__heading-line:first-of-type {
  top: 99px;
}

.section-faq__heading-line:last-of-type {
  top: 171px;
}

.section-faq__heading-word {
  position: absolute;
  left: 20.5px;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.045;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.section-faq__heading-word:nth-child(3) {
  top: 27px;
  color: #fff;
}

.section-faq__heading-word:nth-child(4) {
  top: 109px;
  color: #bdf589;
}

.section-faq__heading-word:nth-child(5) {
  top: 186px;
  color: #fff;
}

.footer {
  background-color: #0f0f0f;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding: 40px 0 60px;
  position: relative;
}

.footer__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px 40px 0 0;
  background: linear-gradient(
    235.897deg,
    rgba(24, 118, 0, 0.76) 16.349%,
    rgba(50, 249, 0, 0.76) 46.955%,
    rgba(189, 245, 137, 0.76) 77.561%
  );
}

.footer__brand {
  font-size: 120px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.footer__content {
  position: relative;
  z-index: 1;
  max-width: 1105px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 739px;
}

.footer__links {
  text-align: left;
}

.footer__links p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.footer__links a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer__links a:hover {
  color: #0f0f0f;
  padding-left: 6px;
}

.footer__contact {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
  text-align: left;
}

.footer__bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer__social-icon {
  width: 43px;
  height: 43px;
  transition: transform 0.3s ease;
}

.footer__social-icon:hover {
  transform: translateY(-4px) scale(1.1);
}

.footer__social-icon img {
  width: 100%;
  height: 100%;
}

.catalog {
  background-color: #0f0f0f;
  padding: 80px 50px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.catalog__title {
  font-size: 50px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: #fff;
  text-align: center;
  width: 100%;
}

.catalog__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #fff;
  text-align: center;
  width: 100%;
}

.catalog__text p + p {
  margin-top: 24px;
}

.catalog__gallery {
  position: relative;
  width: 100%;
  height: 687px;
}

.catalog__card {
  display: block;
  position: absolute;
  width: 242px;
  height: 242px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(50, 249, 0, 0.25);
}

.catalog__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.catalog__card:hover img {
  transform: scale(1.08);
}

.catalog__card--start {
  left: 7px;
  top: 192px;
}

.catalog__card--start-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 17px;
}

.catalog__card--start-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog__card--start-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 70.905%,
    rgba(0, 0, 0, 0.8)
  );
}

.catalog__card--start-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 208px;
}

.catalog__card--start-text {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
}

.catalog__card--start-btn {
  width: 37px;
  height: 37px;
  border-radius: 59px;
  background-color: #32f900;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.catalog__card--start-btn img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.catalog__col {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 33px;
  width: 242px;
}

.catalog__col--1 {
  left: 282px;
  top: 0;
}

.catalog__col--2 {
  left: 557px;
  top: 170px;
}

.catalog__col .catalog__card {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
}

.catalog__card--single {
  left: 832px;
  top: 192px;
  width: 241px;
}

.catalog__gallery-mobile {
  display: none;
}

.game {
  background-color: #0f0f0f;
  padding: 80px 50px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.game__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease both;
}

.game__image {
  width: 240px;
  height: 240px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.game__image:hover {
  transform: scale(1.05) rotate(-2deg);
}

.game__title {
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.game__highlight {
  background-color: #3a8417;
  padding: 30px 40px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.game__highlight p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #fff;
}

.game__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.game__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #fff;
}

.policy {
  background-color: #0f0f0f;
  padding: 60px 50px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.policy__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease both;
}

.policy__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeIn 0.8s ease 0.15s both;
}

.policy__content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #fff;
}

.policy__content ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 4px;
}

.policy__content li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #fff;
}

.policy__content li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #bdf589;
}

.policy__content a {
  color: #bdf589;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.policy__content a:hover {
  opacity: 0.75;
}

.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  background-color: #3a8417;
  padding: 40px 50px;
  transform: translateY(110%);
  transition: transform 0.5s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner__title {
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.cookie-banner__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.cookie-banner__text + .cookie-banner__text {
  margin-top: 18px;
}

.cookie-banner__actions {
  display: flex;
  gap: 30px;
  margin-top: 28px;
}

.cookie-banner__btn {
  font-family: "Space Mono", monospace;
  font-size: 18px;
  font-weight: 400;
  color: #0f0f0f;
  background-color: #bdf589;
  border: none;
  cursor: pointer;
  padding: 14px 70px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-banner__btn:hover {
  background-color: #d4f8b0;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .header {
    padding: 10px 20px;
  }

  .header__logo-text {
    font-size: 24px;
    letter-spacing: -2.4px;
  }

  .header__nav {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero__title-wrap {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .hero__title {
    font-size: 46px;
    text-align: center;
    width: 100%;
  }

  .hero__subtitle {
    font-size: 30px;
    filter: blur(2px);
    text-align: center;
    width: 100%;
  }

  .hero__content {
    flex-direction: column;
    gap: 20px;
  }

  .hero__image {
    width: 100%;
    height: auto;
  }

  .hero__info {
    width: 100%;
    gap: 20px;
  }

  .section-about {
    padding: 40px 20px;
  }

  .section-about__title {
    font-size: 28px;
    letter-spacing: -0.84px;
    margin-bottom: 20px;
  }

  .section-about__image {
    width: 100%;
    height: 240px;
    margin-bottom: 20px;
  }

  .section-about__text {
    margin-bottom: 20px;
  }

  .stats {
    flex-direction: column;
  }

  .stats__item {
    width: 100%;
    padding: 20px 10px;
  }

  .stats__number {
    font-size: 24px;
  }

  .section-why {
    padding: 40px 20px;
  }

  .section-why__title {
    font-size: 28px;
    letter-spacing: -0.84px;
    margin-bottom: 20px;
  }

  .section-why__item {
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }

  .section-why__item-desc {
    width: 100%;
  }

  .section-why__item-title {
    width: 100%;
  }

  .section-why__item-arrow {
    align-self: flex-end;
  }

  .section-faq {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .section-faq__image {
    position: static;
    width: 223px;
    height: 223px;
    order: 0;
  }

  .section-faq__heading {
    width: 100%;
    height: 167px;
    order: 1;
  }

  .section-faq__heading-word {
    font-size: 28px;
    letter-spacing: 1.96px;
    left: 21px;
  }

  .section-faq__heading-word:nth-child(3) {
    top: 27px;
  }

  .section-faq__heading-word:nth-child(4) {
    top: 76px;
  }

  .section-faq__heading-word:nth-child(5) {
    top: 125px;
  }

  .section-faq__heading-line:first-of-type {
    top: 66px;
  }

  .section-faq__heading-line:last-of-type {
    top: 116px;
  }

  .section-faq__questions {
    width: 100%;
    order: 2;
  }

  .catalog {
    padding: 40px 20px;
    gap: 20px;
  }

  .catalog__title {
    font-size: 28px;
    letter-spacing: -0.84px;
  }

  .catalog__gallery {
    display: none;
  }

  .catalog__gallery-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .catalog__gallery-mobile .catalog__card--start {
    position: static;
    width: 242px;
    height: 242px;
  }

  .catalog__gallery-mobile .catalog__row {
    display: flex;
    gap: 10px;
    width: 100%;
  }

  .catalog__gallery-mobile .catalog__row .catalog__card {
    position: static;
    width: calc(50% - 5px);
    height: 0;
    padding-bottom: calc(50% - 5px);
  }

  .catalog__gallery-mobile .catalog__row .catalog__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .catalog__gallery-mobile .catalog__row .catalog__card {
    position: relative;
  }

  .catalog__gallery-mobile .catalog__card--single-mobile {
    position: static;
    width: 241px;
    height: 242px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer__gradient {
    height: 100%;
    border-radius: 40px 40px 0 0;
    background: linear-gradient(
      256.935deg,
      rgba(24, 118, 0, 0.76) 16.349%,
      rgba(50, 249, 0, 0.76) 46.955%,
      rgba(189, 245, 137, 0.76) 77.561%
    );
  }

  .footer__brand {
    font-size: 40px;
  }

  .footer__content {
    align-items: center;
    text-align: center;
  }

  .footer__info-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer__contact {
    text-align: center;
    order: -1;
  }

  .footer__links {
    text-align: center;
  }

  .footer__bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer__copyright {
    font-size: 12px;
  }

  .game {
    padding: 40px 20px;
  }

  .game__top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .game__title {
    font-size: 28px;
    letter-spacing: -0.84px;
    margin-bottom: 20px;
  }

  .game__highlight {
    padding: 20px;
    margin-bottom: 20px;
  }

  .game__highlight p {
    font-size: 16px;
  }

  .policy {
    padding: 40px 20px;
  }

  .policy__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .cookie-banner {
    padding: 24px 20px;
  }

  .cookie-banner__title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .cookie-banner__text {
    font-size: 14px;
    line-height: 1.5;
  }

  .cookie-banner__text + .cookie-banner__text {
    margin-top: 14px;
  }

  .cookie-banner__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .cookie-banner__btn {
    width: 100%;
    padding: 14px 0;
  }
}
