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

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Anton', sans-serif;
  background: #010101;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-menu-open { overflow: hidden; }

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

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

.page { width: 100%;  }

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

.header {
  position: relative;
  z-index: 50;
  padding: 20px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.header__logo-icon {
  width: 30px;
  height: 30px;
}

.header__logo-text {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
  text-transform: uppercase;
}

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

.header__nav-link {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
}

.header__nav-link:hover { opacity: .75; }

.header__nav-link--active {
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.header__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.header__burger--open .header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__burger--open .header__burger-line:nth-child(2) { opacity: 0; }

.header__burger--open .header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.section { position: relative; padding: 80px 0; }

.section--first { padding-top: 40px; }

.section__inner { position: relative; z-index: 2; }

.section--decorated::before,
.section--decorated::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  transform: translateZ(0);
  will-change: transform;
  pointer-events: none;
  z-index: 1;
  opacity: .55;
}

.section--decorated::before {
  background: #00D0E2;
  top: -200px;
  left: -240px;
}

.section--decorated::after {
  background: #FFDF35;
  bottom: -200px;
  right: -240px;
}

.hero { padding: 30px 0 80px; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 600px;
}

.hero__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 90px);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.hero__image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 600px;
  width: auto;
  height: auto;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 380px;
  justify-self: end;
}

.hero__text {
  font-size: 14px;
  line-height: 21px;
  margin: 0;
  color: #ffffff;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 20px 60px;
  border-radius: 60px;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #010101;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  border: none;
  cursor: pointer;
  text-align: center;
}

.button:hover { transform: translateY(-2px); opacity: .92; }

.button--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.spark__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.spark__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.spark__row {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
  align-items: flex-end;
}

.spark__image {
  width: 100%;
  height: auto;
  max-height: 431px;
  object-fit: cover;
  border-radius: 30px;
}

.spark__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.spark__text {
  font-size: 14px;
  line-height: 21px;
  margin: 0;
  color: #ffffff;
}

.why__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.why__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  max-width: 943px;
}

.why__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.why__intro {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.why__card {
  background: rgba(1, 1, 1, 0.45);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.why__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.why__card-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.why__card-text {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0;
}

.gallery__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gallery__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gallery__text {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0;
}

.gallery__images {
  display: grid;
  grid-template-columns: 285fr 590fr 285fr;
  gap: 20px;
}

.gallery__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
}

.popular__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.popular__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  max-width: 943px;
}

.popular__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.popular__text {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0;
}

.popular__grid {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  gap: 20px;
  justify-content: center;
}

.popular__card {
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 26px;
  overflow: hidden;
}

.popular__card:hover { transform: scale(1.04); }

.popular__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contacts__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contacts__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.contacts__row {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
  align-items: center;
}

.contacts__image {
  width: 100%;
  height: 431px;
  object-fit: cover;
  border-radius: 30px;
}

.contacts__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts__text {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0;
}

.contacts__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts__detail {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  line-height: 21px;
  margin: 0;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.footer {
  padding: 40px 0 24px;
  position: relative;
}

.footer__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer__logo-icon { width: 30px; height: 30px; }

.footer__logo-text {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
  text-transform: uppercase;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footer__nav-link {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
}

.footer__nav-link:hover { opacity: .75; }

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

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.footer__social-link-image {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer__copy {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  flex-basis: 100%;
  text-align: left;
}

.cookie {
  position: fixed;
  inset: 0;
  background: rgba(1, 1, 1, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.cookie.is-visible { display: flex; }

.cookie__banner {
  position: relative;
  width: 100%;
  max-width: 620px;
  background: #010101;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1.5px solid;
  border-image: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%) 1;
  border-image-slice: 1;
}

.cookie__icon {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.cookie__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
}

.cookie__text {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0;
}

.cookie__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie__button {
  display: block;
  width: 100%;
  padding: 18px 24px;
  border-radius: 60px;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  text-decoration: none;
}

.cookie__button:hover { transform: translateY(-1px); opacity: .92; }

.cookie__button--accept {
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  color: #010101;
}

.cookie__button--decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.legal__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 100%;
}

.legal__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

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

.legal__paragraph {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0;
}

.legal__paragraph-label {
  font-weight: 400;
  color: #ffffff;
}

.game-detail__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}

.game-detail__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.game-detail__text {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0;
}

.game-detail__icon {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 26px;
}

.game-strategy__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: center;
}

.game-strategy__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  margin: 0 0 20px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.game-strategy__image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
}

.game-strategy__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game-strategy__text {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0;
}

.games-catalog__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.games-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  gap: 20px;
  justify-content: center;
}

.games-catalog__card {
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 26px;
  overflow: hidden;
}

.games-catalog__card:hover { transform: scale(1.04); }

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

.invitation__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.invitation__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  margin: 0 0 20px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00D0E2 0%, #FFDF35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.invitation__text {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0 0 24px;
}

.invitation__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.invitation__contact {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0;
}

.invitation__image {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy { justify-self: stretch; max-width: 100%; }
  .hero__media { min-height: 360px; }

  .spark__row { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__images { grid-template-columns: 1fr 1fr; }
  .gallery__img:nth-child(3) { grid-column: span 2; }
  .contacts__row { grid-template-columns: 1fr; }
  .game-strategy__inner { grid-template-columns: 1fr; }
  .invitation__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .header__nav {
    position: fixed;
    inset: 0;
    background: #010101;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    z-index: 100;
  }

  .header__nav.is-open { transform: translateX(0); }

  .header__nav-link {
    font-size: 28px;
    line-height: 36px;
  }

  .header__burger {
    display: flex;
    position: relative;
    z-index: 200;
  }

  .gallery__images { grid-template-columns: 1fr; }
  .gallery__img:nth-child(3) { grid-column: auto; }
  .gallery__img { height: 280px; }

  .popular__grid { grid-template-columns: repeat(2, 180px); }
  .games-catalog__grid { grid-template-columns: repeat(2, 180px); }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__copy { text-align: left; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }

  .why__grid { grid-template-columns: 1fr; }
  .popular__grid { grid-template-columns: repeat(2, 1fr); }
  .popular__card,
  .games-catalog__card {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .games-catalog__grid { grid-template-columns: repeat(2, 1fr); }

  .button { padding: 16px 32px; }

  .cookie__banner { padding: 24px; border-radius: 20px; }
  .cookie__title { font-size: 20px; }

  .game-detail__icon { width: 140px; height: 140px; }
}

.inline-link{color:#ff8a40;text-decoration:underline;text-underline-offset:3px;font-weight:500}
.inline-link:hover{opacity:.85}
.editorial-meta{display:block;color:rgba(255,255,255,.78);font-size:13px;line-height:1.6;margin:6px 0 14px;letter-spacing:.02em}
.editorial-note{border-left:2px solid #ff8a40;padding:6px 0 6px 16px;margin:18px 0;font-size:14px;line-height:1.6;color:rgba(255,255,255,.85)}
.source-line{font-size:14px;line-height:1.7;color:rgba(255,255,255,.85);margin:14px 0 0}
.byline{margin-bottom:8px;color:rgba(255,255,255,.78);font-size:13px;line-height:1.6}
