@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');


:root {
  --bg:       #0b0b0b;
  --text:     #ffffff;
  --cyan:     #00ccff;
  --yellow:   #ffcc00;
  --card-bg:  rgba(255, 255, 255, 0.07);
  --muted:    rgba(255, 255, 255, 0.6);
  --btn-bdr:  rgba(255, 255, 255, 0.7);
  --pad:      84px;
  --wrap-max: 1368px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img     { display: block; max-width: 100%; }
a       { color: inherit; text-decoration: none; }
address { font-style: normal; }

.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--pad);
  box-sizing: border-box;
}

.accent { color: var(--cyan); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  padding: 0 60px;
  background-color: var(--yellow);
  color: #0b0b0b;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 60px;
  border: 2px solid var(--btn-bdr);
  box-shadow: 0 4px 20px 0 rgba(255, 204, 0, 0.9);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
  max-width: 260px;
}
.btn:hover { opacity: 0.85; }

.sbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.sbg--dim { opacity: 0.3; }

.sec-title {
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

.sec-icon {
  width: 141px;
  height: 123px;
  object-fit: contain;
}

.card {
  background: var(--card-bg);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__icon  { width: 60px; height: 60px; object-fit: contain; }
.card__title {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cyan);
  line-height: 1.2;
}
.card__text { line-height: 1.6; }

.header { padding-top: 20px; padding-bottom: 20px; }
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.logo img { width: 30px; height: 30px; flex-shrink: 0; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-nav a { font-size: 14px; transition: color 0.2s; }
.header-nav a:hover,
.header-nav a.active { color: var(--cyan); }

.hero {
  position: relative;
  height: 703px;

  overflow: hidden;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  height: 100%;
}
.hero__text {
  position: relative;
  z-index: 2;
  padding-top: 174px;
  max-width: 776px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__title {
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}
.hero__desc { max-width: 533px; }
.hero__char {
  position: absolute;
  right: var(--pad);
  bottom: 0;
  width: 659px;
  height: 703px;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
  pointer-events: none;
}

.features {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.features .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 41px;
  align-items: flex-start;
}
.feat-left {
  width: 619px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feat-right {
  width: 540px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feat-row {
  display: flex;
  gap: 20px;
}
.feat-row .card { flex: 1; }

.gallery {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.gallery .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.gallery__inner {
  max-width: 807px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 190px);
  gap: 20px;
}
.gallery__grid .gallery__item {
  display: block;
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 24px;
  border: 3px solid var(--cyan);
  overflow: hidden;
  transition: border-color 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}
.gallery__grid .gallery__item:hover { border-color: #fff; }
.gallery__grid .gallery__item img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  object-fit: cover;
}
.gallery__item__name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 210, 240, 0.85);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery__item:hover .gallery__item__name { opacity: 1; }

.testimonials {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.testimonials .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  align-items: flex-end;
}
.test-left {
  width: 794px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(2, 387px);
  gap: 20px;
}
.test-char {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.test-char img {
  width: 376px;
  height: 489px;
  object-fit: contain;
  object-position: bottom;
}

.review {
  background: var(--card-bg);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review__avatar { width: 40px; height: 40px; }
.review__stars  { display: flex; gap: 4px; }
.review__stars img { width: 20px; height: 20px; }
.review__name {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cyan);
}
.review__quote { line-height: 1.6; }

.contact {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.contact .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 134px;
  align-items: center;
}
.contact__char {
  width: 387px;
  height: 503px;
  object-fit: contain;
  flex-shrink: 0;
}
.contact__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 652px;
}
.contact__desc { max-width: 533px; }
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__info span {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.3;
}

.footer { padding: 40px 0 20px; }
.footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.foot-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-nav a { font-size: 14px; transition: color 0.2s; }
.foot-nav a:hover { color: var(--cyan); }
.foot-social { display: flex; gap: 15px; }
.foot-social a { display: flex; }
.foot-social img { width: 40px; height: 40px; }
.foot-copy { color: var(--muted); }

.policy {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.policy .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.policy__inner {
  max-width: 1098px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.policy__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.policy__body p { line-height: 1.6; }
.policy__item {
  padding-left: 20px;
  line-height: 1.6;
}


.game-hero {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.game-hero .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.game-hero__inner {
  max-width: 875px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.game-hero__icon {
  width: 260px;
  height: 260px;
  border-radius: 24px;
  border: 3px solid var(--cyan);
  object-fit: cover;
  flex-shrink: 0;
}

.game-feat {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.game-feat .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.game-feat__left {
  width: 722px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.game-feat__right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.game-feat__screenshot {
  width: 448px;
  height: 448px;
  border-radius: 24px;
  border: 3px solid var(--cyan);
  object-fit: cover;
  flex-shrink: 0;
}


.cat-hero {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.cat-hero .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cat-hero__inner {
  max-width: 807px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 190px);
  gap: 20px;
}
.cat-card {
  display: block;
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 24px;
  border: 3px solid var(--cyan);
  overflow: hidden;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.cat-card:hover { border-color: #fff; }
.cat-card__name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 210, 240, 0.85);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.25s;
}
.cat-card:hover .cat-card__name { opacity: 1; }
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats { padding: 60px 0; }
.stats__inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: center;
}
.stat {
  width: 285px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat__value {
  font-size: 45px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.stat__label { line-height: 1.6; }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 9999;
  width: 100%;
  max-width: 900px;
  background: #0b0b0b;
  border: 2px solid var(--cyan);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-banner__icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.cookie-banner__title {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}
.cookie-banner__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  max-width: 820px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner__btn {
  flex: 1;
  padding: 18px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-banner__btn:hover { opacity: 0.85; }
.cookie-banner__btn--accept {
  background: var(--yellow);
  color: #0b0b0b;
  box-shadow: 0 0 18px rgba(255, 204, 0, 0.45);
}
.cookie-banner__btn--manage {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  :root { --pad: 15px; }

  .header .wrap {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hero {
    height: auto;
    padding-bottom: 40px;
  }
  .hero .wrap {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .hero__char {
    position: static;
    width: 244px;
    height: 261px;
    object-fit: contain;
    object-position: top center;
    align-self: center;
  }
  .hero__text {
    padding-top: 20px;
    max-width: 100%;
  }
  .hero__title { font-size: 34px; }
  .hero__desc  { max-width: 100%; }

  .features .wrap { flex-direction: column; gap: 30px; }
  .feat-left,
  .feat-right { width: 100%; }
  .feat-left .sec-title { font-size: 30px; }
  .feat-row { flex-direction: column; }
  .feat-row .card { flex: none; }

  .gallery__inner .sec-title { font-size: 30px; }
  .gallery__grid {
    grid-template-columns: repeat(2, 157px);
    gap: 15px;
  }
  .gallery__grid img {
    width: 157px;
    height: 157px;
  }

  .testimonials .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .test-left { width: 100%; }
  .test-left .sec-title { font-size: 30px; }
  .test-grid { grid-template-columns: 1fr; }
  .test-char {
    width: 100%;
    justify-content: center;
  }
  .test-char img { width: 100%; height: auto; }

  .contact .wrap {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .contact__char {
    width: 263px;
    height: 341px;
    align-self: center;
  }
  .contact__text  { max-width: 100%; }
  .contact__desc  { max-width: 100%; }
  .contact__text .sec-title { font-size: 30px; }

  .foot-nav {
    flex-direction: column;
    gap: 15px;
  }

  .policy__inner .sec-title { font-size: 30px; }

  .game-hero__inner .sec-title { font-size: 30px; }
  .game-feat .wrap { flex-direction: column; gap: 30px; }
  .game-feat__left { width: 100%; }
  .game-feat__left .sec-title { font-size: 30px; }
  .game-feat__right { width: 100%; justify-content: flex-start; }
  .game-feat__screenshot { width: 100%; height: auto; aspect-ratio: 1 / 1; }

  .cookie-banner {
    max-width: 90vw;
    padding: 24px 20px;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-banner__btn {
    width: 100%;
  }

  .cat-hero__inner .sec-title { font-size: 30px; }
  .cat-grid {
    grid-template-columns: repeat(2, 157px);
    gap: 15px;
  }
  .cat-card {
    width: 157px;
    height: 157px;
  }
  .stats__inner {
    flex-direction: column;
    align-items: center;
  }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}

@keyframes accentPulse {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50%       { text-shadow: 0 0 18px rgba(0, 204, 255, 0.5); }
}

.hero__char {
  animation: heroFloat 6s ease-in-out infinite;
}

.header {
  animation: fadeInDown 0.5s ease both;
}

.accent {
  animation: accentPulse 3s ease-in-out infinite;
}

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

.feat-right .card:nth-child(1) { transition-delay: 0s; }
.feat-right .card:nth-child(2) { transition-delay: 0.12s; }
.feat-right .card:nth-child(3) { transition-delay: 0.24s; }
.test-grid .review:nth-child(1) { transition-delay: 0s; }
.test-grid .review:nth-child(2) { transition-delay: 0.1s; }
.test-grid .review:nth-child(3) { transition-delay: 0.2s; }
.test-grid .review:nth-child(4) { transition-delay: 0.3s; }
.stats__inner .stat:nth-child(1) { transition-delay: 0s; }
.stats__inner .stat:nth-child(2) { transition-delay: 0.1s; }
.stats__inner .stat:nth-child(3) { transition-delay: 0.2s; }
.stats__inner .stat:nth-child(4) { transition-delay: 0.3s; }
.cat-grid .cat-card:nth-child(1),
.gallery__grid .gallery__item:nth-child(1) { transition-delay: 0s; }
.cat-grid .cat-card:nth-child(2),
.gallery__grid .gallery__item:nth-child(2) { transition-delay: 0.07s; }
.cat-grid .cat-card:nth-child(3),
.gallery__grid .gallery__item:nth-child(3) { transition-delay: 0.14s; }
.cat-grid .cat-card:nth-child(4),
.gallery__grid .gallery__item:nth-child(4) { transition-delay: 0.21s; }
.cat-grid .cat-card:nth-child(5),
.gallery__grid .gallery__item:nth-child(5) { transition-delay: 0.28s; }
.cat-grid .cat-card:nth-child(6),
.gallery__grid .gallery__item:nth-child(6) { transition-delay: 0.35s; }

.btn {
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px rgba(255, 204, 0, 0.55);
}

.logo {
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.logo:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 204, 255, 0.15);
}

.review {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.07);
}

.stat {
  transition: transform 0.25s ease;
}
.stat:hover {
  transform: translateY(-4px);
}
.stat:hover .stat__value {
  text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.foot-social a {
  transition: transform 0.2s ease, filter 0.2s ease;
}
.foot-social a:hover {
  transform: translateY(-3px) scale(1.12);
  filter: brightness(1.3);
}

.game-feat__screenshot {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.game-feat__screenshot:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 16px 40px rgba(0, 204, 255, 0.2);
}

.game-hero__icon {
  transition: transform 0.35s ease;
}
.game-hero__icon:hover {
  transform: scale(1.06) rotate(2deg);
}
