

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

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

body {
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a14;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.title-gradient {
  background: linear-gradient(90deg, #4D6BFE 0%, #8B5CF6 60%, #6D3FCC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.header {
  position: relative;
  z-index: 50;
  padding: 24px 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: 38px;
  height: 32px;
  object-fit: contain;
}

.header__logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
}

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

.header__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  background: transparent;
}

.header__nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header__nav-link--active {
  background: linear-gradient(90deg, #4D6BFE 0%, #8B5CF6 100%);
  border-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: 26px;
  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);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(90deg, #4D6BFE 0%, #8B5CF6 100%);
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 16px 36px rgba(77, 107, 254, 0.35);
}

.button:hover {
  background: linear-gradient(90deg, #5d7bff 0%, #9c6dff 100%);
}

.button--outline {
  background: #0a0a14;
  position: relative;
  z-index: 1;
}

.button--outline::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(90deg, #4D6BFE 0%, #8B5CF6 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}

.hero {
  position: relative;
  padding: 40px 0 0;
  overflow: hidden;
}

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

.hero__character {
  position: relative;
  max-height: 640px;
  width: auto;
  height: auto;
  max-width: 100%;
  z-index: 2;
  justify-self: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero__text {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #b8b8c8;
  margin: 0;
  max-width: 460px;
}

.hero__cta { align-self: flex-start; }

.hero__big-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 56px;
  width: 100%;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
  z-index: 1;
  white-space: nowrap;
}

.hero__decor-star {
  position: absolute;
  right: -40px;
  bottom: 120px;
  width: 200px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

.marquee {
  position: relative;
  background: #6D3FCC;
  padding: 16px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.marquee__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
}

.section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.section--tight { padding: 60px 0; }

.section__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}

.section__title--center { text-align: center; }

.section__text {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #b8b8c8;
  margin: 0;
}

.section__text--center { text-align: center; }

.easy__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.easy__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.easy__tiger {
  width: 100%;
  max-width: 480px;
  height: auto;
  justify-self: center;
}

.gallery__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.gallery__title { text-align: center; }

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

.gallery__item {
  width: 100%;
  aspect-ratio: 220 / 320;
  border-radius: 22px;
  overflow: hidden;
  background: #15152a;
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.flow__image {
  width: 100%;
  max-width: 480px;
  height: auto;
  justify-self: center;
}

.flow__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.clicks__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

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

.clicks__card {
  width: 180px;
  height: 180px;
  border-radius: 22px;
  overflow: hidden;
  background: #15152a;
  position: relative;
}

.clicks__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reach {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}

.reach__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.reach__cat {
  width: 100%;
  max-width: 420px;
  height: auto;
  justify-self: center;
  position: relative;
  z-index: 2;
}

.reach__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.reach__text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #b8b8c8;
  margin: 0;
}

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

.reach__detail {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  background: linear-gradient(90deg, #4D6BFE 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.reach__decor-star {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 180px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.reach__big-text {
  position: relative;
  margin-top: 40px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 12vw, 180px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

.games__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}

.games__intro-text {
  max-width: 940px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #b8b8c8;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}

.games__card {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: #15152a;
}

.games__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-detail {
  position: relative;
  padding: 60px 0 80px;
}

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

.game-detail__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}

.game-detail__text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #b8b8c8;
  margin: 0;
  max-width: 820px;
}

.game-detail__icon {
  width: 220px;
  height: 220px;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 16px 50px rgba(139, 92, 246, 0.3);
}

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

.legal__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}

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

.legal__paragraph {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #b8b8c8;
  margin: 0;
}

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

.footer {
  position: relative;
  padding: 48px 0 32px;
  background: #050510;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

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

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

.footer__logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
}

.footer__nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer__legal-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #b8b8c8;
}

.footer__legal-link:hover { color: #ffffff; }

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

.footer__social-link {
  display: inline-flex;
  width: 28px;
  height: 28px;
}

.footer__social-link:hover { opacity: .8; }

.footer__social-link-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__copy {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  color: #8a8aa0;
}

.cookie {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 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: 720px;
  background: #0a0a14;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid #8B5CF6;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.35);
}

.cookie__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.cookie__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #4D6BFE 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cookie__text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #c8c8d8;
  margin: 0;
}

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

.cookie__button {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  color: #ffffff;
}

.cookie__button--accept {
  background: linear-gradient(90deg, #4D6BFE 0%, #8B5CF6 100%);
  box-shadow: 0 16px 36px rgba(77, 107, 254, 0.35);
}

.cookie__button--manage {
  background: #0a0a14;
  position: relative;
  z-index: 1;
}

.cookie__button--manage::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(90deg, #4D6BFE 0%, #8B5CF6 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; min-height: auto; gap: 30px; }
  .hero__character { max-height: 480px; }
  .hero__decor-star { display: none; }
  .hero__big-text { position: static; margin-top: 20px; }

  .easy__inner { grid-template-columns: 1fr; gap: 30px; }
  .flow__inner { grid-template-columns: 1fr; gap: 30px; }
  .reach__inner { grid-template-columns: 1fr; gap: 30px; }
  .reach__decor-star { display: none; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .clicks__grid { grid-template-columns: repeat(3, 140px); }
  .clicks__card { width: 140px; height: 140px; }

  .games__grid { grid-template-columns: repeat(2, 180px); justify-content: center; }
}

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

  .header__nav {
    position: fixed;
    inset: 0;
    background: #0a0a14;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    z-index: 100;
    padding: 80px 24px 32px;
    overflow-y: auto;
  }

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

  .header__nav-link {
    font-size: 18px;
    padding: 14px 36px;
  }

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

  .footer__nav { gap: 8px; }
  .footer__nav-link { font-size: 13px; padding: 10px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .gallery__grid { grid-template-columns: 1fr; }
  .clicks__grid { grid-template-columns: repeat(2, 140px); }
  .games__grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .cookie__banner { padding: 28px; }
}
