@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

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

:root {
  --blue: #004dff;
  --blue-tint: rgba(0, 77, 255, 0.07);
  --blue-shadow: 0px 4px 30px 0px rgba(0, 77, 255, 0.6);
  --text: #171717;
  --text-muted: rgba(23, 23, 23, 0.6);
  --white: #ffffff;
  --font: 'Anton', sans-serif;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

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

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

.wrap {
  width: 100%;
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 84px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  text-transform: uppercase;
  padding: 24px 60px;
  border-radius: 60px;
  box-shadow: var(--blue-shadow);
  white-space: nowrap;
  line-height: 1;
  max-width: 187px;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.header {
  width: 100%;
  padding: 20px 0;
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.7; }
.logo img { width: 30px; height: 30px; }
.logo span {
  font-size: 28px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav a {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

.hero { padding-bottom: 60px; }
.hero .wrap { display: flex; flex-direction: column; }
.hero__img {
  width: 100%;
  height: 463px;
  object-fit: cover;
  display: block;
}
.hero__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 40px;
}
.hero__desc {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  max-width: 387px;
}

.about {
  background: var(--blue-tint);
  overflow: hidden;
  padding: 60px 0;
}
.about .wrap {
  display: grid;
  grid-template-columns: 39fr 61fr;
  gap: 30px;
  align-items: end;
}
.about__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-self: start;
}
.about__heading {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text);
}
.about__right {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 20px;
  align-items: end;
}
.about__image-wrap {
  height: 497px;
  overflow: hidden;
  position: relative;
}
.about__image-wrap img {
  position: absolute;
  width: 100.09%;
  height: 145.92%;
  left: -0.04%;
  top: -22.7%;
  object-fit: cover;
}
.about__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__pills {
  display: flex;
  align-items: center;
  gap: 15px;
}
.pill-bar {
  width: 229px;
  height: 41px;
  background: var(--blue);
  border-radius: 30px;
  flex-shrink: 0;
}
.pill-dot {
  width: 41px;
  height: 41px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.about__text {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}

.edge {
  padding: 60px 0;
}
.edge .wrap {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
.edge__image-wrap {
  flex: 0 0 410px;
  height: 535px;
  overflow: hidden;
}
.edge__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.edge__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.edge__heading {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
}
.edge__text {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}
.edge__cards {
  display: flex;
  gap: 20px;
}
.card {
  background: var(--blue);
  border-radius: 30px;
  padding: 20px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 77, 255, 0.35);
}
.card__inner {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.card__title {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.card__text {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
}
.card__icon-wrap {
  width: 37px;
  height: 59px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.card__icon-wrap img {
  position: absolute;
  width: 178.18%;
  height: 112.64%;
  left: -32.73%;
  top: -4.6%;
  object-fit: cover;
}

.hall {
  background: var(--blue-tint);
  overflow: hidden;
  padding: 60px 0;
}
.hall .wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.hall__left {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hall__heading {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
}
.hall__grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hall__row {
  display: flex;
  gap: 20px;
}
.hall__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact {
  padding: 60px 0;
}
.contact .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.contact__inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.contact__heading {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
}
.contact__text {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.contact__badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  padding: 20px;
  border-radius: 16px;
  line-height: 1.3;
  text-align: center;
  transition: transform 0.2s ease;
}
.badge:hover { transform: translateY(-4px); }
.contact__img {
  width: 437px;
  height: 316px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.contact__img:hover { transform: scale(1.02); }

.footer {
  padding: 40px 0 20px;
  border-top: 1px solid rgba(23,23,23,0.08);
}
.footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer__nav a {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.footer__nav a:hover { opacity: 0.5; }
.footer__social {
  display: flex;
  gap: 15px;
  align-items: center;
}
.footer__social a {
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.footer__social a:hover { transform: scale(1.15); }
.footer__social img {
  width: 40px;
  height: 40px;
}
.footer__copy {
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
}

.policy {
  padding: 40px 0 80px;
}
.policy .wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.policy__title {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 1098px;
  width: 100%;
}
.policy__body {
  max-width: 1098px;
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.policy__body p { margin: 0; }
.policy__section-title {
  margin-top: 16px;
  font-size: 14px;
  text-transform: uppercase;
}

.game-hero {
  background: var(--blue-tint);
  overflow: hidden;
  padding: 60px 0;
}
.game-hero .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.game-hero__left {
  flex: 0 0 820px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.game-hero__title {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
}
.game-hero__sub {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.game-hero__subtitle {
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.1;
}
.game-hero__desc {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}
.game-hero__image {
  flex-shrink: 0;
  width: 340px;
  height: 340px;
  border-radius: 34px;
  object-fit: cover;
  align-self: center;
  transition: transform 0.35s ease;
}
.game-hero__image:hover { transform: scale(1.03); }

.game-second {
  padding: 60px 0;
}
.game-second .wrap {
  display: flex;
  gap: 60px;
  align-items: flex-end;
}
.game-second__decor {
  flex-shrink: 0;
  width: 41px;
  height: 285px;
  position: relative;
  overflow: visible;
  order: 3;
}
.game-second__decor-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}
.game-second__right {
  flex: 0 0 1099px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  order: 2;
}
.game-second__heading {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
}
.game-second__sub {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.game-second__desc {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}
.game-second__image {
  width: 600px;
  height: 340px;
  border-radius: 34px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.game-second__image:hover { transform: scale(1.02); }

.catalog-hero {
  background: var(--blue-tint);
  overflow: hidden;
  padding: 60px 0;
}
.catalog-hero .wrap {
  display: grid;
  grid-template-columns: 480px 700px;
  gap: 20px;
  align-items: start;
}
.catalog-hero__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.catalog-hero__heading {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
}
.catalog-hero__desc-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.catalog-hero__text {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}
.catalog-hero__grid {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  gap: 20px;
}
.game-card {
  display: block;
  width: 220px;
  height: 220px;
  border-radius: 34px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.game-card__name {
  position: absolute;
  inset: 0;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 22px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.game-card:hover img { transform: scale(1.04); }
.game-card:hover .game-card__name { opacity: 1; }

.hall__thumb-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 34px;
  overflow: hidden;
  flex-shrink: 0;
}
.hall__thumb-wrap .hall__thumb {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: transform 0.3s ease;
}
.hall__thumb-wrap__name {
  position: absolute;
  inset: 0;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 22px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hall__thumb-wrap:hover .hall__thumb { transform: scale(1.04); }
.hall__thumb-wrap:hover .hall__thumb-wrap__name { opacity: 1; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .wrap {
    padding: 0 15px;
    max-width: 360px;
  }

  .header { padding: 20px 0; }
  .header .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .logo img { width: 30px; height: 30px; }
  .logo span { font-size: 28px; }
  .nav { gap: 20px; }
  .nav a { font-size: 14px; }

  .hero { padding-bottom: 40px; }
  .hero__img { height: 128px; }
  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 20px;
  }
  .hero__desc { max-width: 100%; }
  .btn { font-size: 14px; padding: 16px 40px; }

  .about { padding: 40px 0; }
  .about .wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .about__left { gap: 20px; }
  .about__heading { font-size: 40px; }
  .about__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .about__image-wrap {
    width: 100%;
    height: 280px;
  }
  .about__image-wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
  }
  .about__panel { width: 100%; }

  .edge { padding: 40px 0; }
  .edge .wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .edge__image-wrap {
    flex: none;
    width: 276px;
    height: 361px;
    margin: 0 auto;
  }
  .edge__heading { font-size: 40px; }
  .edge__cards { flex-direction: column; }
  .card { flex: none; }
  .card__inner { width: 100%; }

  .hall { padding: 40px 0; }
  .hall .wrap {
    flex-direction: column;
    gap: 20px;
  }
  .hall__left { flex: none; }
  .hall__heading { font-size: 40px; }
  .hall__thumb-wrap {
    width: calc((100% - 30px) / 3);
    height: auto;
    aspect-ratio: 1;
    border-radius: 24px;
  }
  .hall__row { gap: 15px; flex-wrap: nowrap; width: 100%; }
  .hall__grid { gap: 15px; width: 100%; }

  .contact { padding: 40px 0; }
  .contact__heading { font-size: 40px; }
  .contact__badges { flex-direction: column; gap: 12px; }
  .contact__img {
    width: 324px;
    height: 234px;
    object-fit: cover;
  }

  .footer { padding: 30px 0 20px; }
  .footer__copy { white-space: normal; text-align: center; }

  .policy { padding: 30px 0 60px; }
  .policy__title { font-size: 40px; }

  .game-hero { padding: 40px 0; }
  .game-hero .wrap { flex-direction: column; gap: 20px; align-items: flex-start; }
  .game-hero__left { flex: none; }
  .game-hero__title { font-size: 40px; }
  .game-hero__subtitle { font-size: 30px; }
  .game-hero__image { flex: none; width: 240px; height: 240px; align-self: flex-start; }

  .game-second { padding: 40px 0; }
  .game-second .wrap { flex-direction: column; gap: 60px; align-items: flex-start; }
  .game-second__decor { order: 2; width: auto; height: auto; overflow: visible; }
  .game-second__decor-inner { position: static; transform: none; display: flex; align-items: center; gap: 15px; }
  .game-second__right { order: 1; flex: none; }
  .game-second__heading { font-size: 40px; }
  .game-second__image { width: 100%; height: 187px; }

  .catalog-hero { padding: 40px 0; }
  .catalog-hero .wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .catalog-hero__heading { font-size: 40px; }
  .catalog-hero__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }
  .game-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
  }
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}
.cookie-overlay.hidden {
  display: none;
}
.cookie-banner {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 20px;
  padding: 32px 32px 36px;
  max-width: 680px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-banner__icon {
  width: 80px;
  height: 80px;
}
.cookie-banner__title {
  font-family: var(--font);
  font-size: 32px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
}
.cookie-banner__text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}
.cookie-banner__btn-accept {
  display: block;
  width: 100%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  text-transform: uppercase;
  padding: 22px 20px;
  border-radius: 60px;
  border: 2px solid var(--blue);
  cursor: pointer;
  line-height: 1;
  box-shadow: var(--blue-shadow);
  text-align: center;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.cookie-banner__btn-accept:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.cookie-banner__btn-customize {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--blue);
  font-family: var(--font);
  font-size: 18px;
  text-transform: uppercase;
  padding: 22px 20px;
  border-radius: 60px;
  border: 2px solid var(--blue);
  cursor: pointer;
  line-height: 1;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cookie-banner__btn-customize:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner { padding: 24px 20px 28px; gap: 16px; }
  .cookie-banner__title { font-size: 22px; }
  .cookie-banner__btn-accept,
  .cookie-banner__btn-customize { font-size: 15px; padding: 18px 16px; }
}
