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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Saira Semi Condensed', sans-serif;
  font-weight: 400;
  color: #060606;
  background-color: #fffffd;
  line-height: 1.2;
  font-size: 14px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.header {
  background-color: #060606;
  width: 100%;
}

.header__inner {
  max-width: 1368px;
  margin: 0 auto;
  padding: 10px 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

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

.logo__icon {
  width: 30px;
  height: 30px;
  --fill-0: white;
}

.logo__text {
  font-size: 26px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: normal;
}

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

.nav a {
  font-size: 14px;
  color: white;
  white-space: nowrap;
  line-height: normal;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.7;
}

.header__badge {
  width: 214px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__overlay {
  position: relative;
  max-width: 1080px;
  margin: 30px auto;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  padding: 20px;
  overflow: hidden;
}

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

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  color: #fffcfa;
}

.hero__title {
  font-size: 100px;
  font-weight: 900;
  line-height: 1.2;
}

.hero__desc {
  font-size: 14px;
  max-width: 876px;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1678c3;
  color: white;
  font-family: 'Saira Semi Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 24px 50px;
  border-radius: 50px;
  border: 2px solid white;
  white-space: nowrap;
  transition: background-color 0.3s;
  line-height: normal;
  max-width: 200px;
}

.btn:hover {
  background-color: #1264a3;
}

.about {
  background: linear-gradient(to bottom, #d979ff, #fffefc);
  padding: 60px 84px;
}

.about__inner {
  max-width: 1368px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.about__left {
  display: flex;
  gap: 30px;
  align-items: flex-end;
}

.about__decor {
  width: 259px;
  height: 262px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 554px;
  flex-shrink: 0;
}

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

.section-title {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.about__desc {
  font-size: 14px;
  line-height: 1.2;
}

.about__image {
  width: 307px;
  height: 546px;
  border-radius: 30px;
  object-fit: cover;
  flex-shrink: 0;
}

.advantages {
  max-width: 996px;
  margin: 60px auto;
  padding: 0 15px;
}

.advantages__header {
  text-align: center;
  margin-bottom: 30px;
}

.advantages__header .section-title {
  margin-bottom: 30px;
}

.advantages__header p {
  font-size: 14px;
  line-height: 1.2;
}

.advantages__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.advantage-card {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  display: flex;
}

.advantage-card:nth-child(1) {
  background-color: #daffc9;
}

.advantage-card:nth-child(2) {
  background-color: #ffdcb6;
}

.advantage-card:nth-child(3) {
  background-color: #f0d3ff;
}

.advantage-card__content {
  padding: 20px 20px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 631px;
  flex-shrink: 0;
}

.advantage-card__title {
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.advantage-card__desc {
  font-size: 14px;
  line-height: 1.2;
}

.advantage-card__image {
  width: 355px;
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}

.games {
  background-color: #d979ff;
  padding: 60px 84px;
}

.games__inner {
  max-width: 1368px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.games__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 690px;
  flex-shrink: 0;
}

.games__icon {
  width: 127px;
  height: 128px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.games__desc {
  font-size: 14px;
  line-height: 1.2;
}

.games__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 450px;
  flex-shrink: 0;
}

.games__row {
  display: flex;
  gap: 15px;
  width: 100%;
}

.games__row a {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.games__row img {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.games__row a img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.games__row a:hover,
.games__center a:hover {
  transform: scale(1.05);
}

.games__center a {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  transition: transform 0.3s;
}

.games__center img {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.games__center a img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.faq {
  max-width: 1368px;
  margin: 60px auto;
  padding: 0 84px;
}

.faq__header {
  max-width: 996px;
  margin-bottom: 30px;
}

.faq__header .section-title {
  margin-bottom: 30px;
}

.faq__header p {
  font-size: 14px;
  line-height: 1.2;
}

.faq__body {
  display: flex;
  gap: 90px;
  align-items: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 770px;
  flex-shrink: 0;
}

.faq__item {
  background-color: rgba(22, 120, 195, 0.3);
  border-radius: 20px;
  padding: 20px;
}

.faq__question {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.faq__question-text {
  flex: 1;
}

.faq__question-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.faq__question-answer {
  font-size: 14px;
  line-height: 1.2;
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq__image {
  width: 340px;
  height: 671px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.cta {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.cta__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.cta__overlay {
  position: relative;
  max-width: 1080px;
  margin: 30px auto;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  padding: 20px;
  overflow: hidden;
}

.cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  color: #fffcfa;
}

.cta__title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.2;
}

.cta__desc {
  font-size: 14px;
  max-width: 876px;
  line-height: 1.2;
}

.cta__contacts {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.cta__image {
  width: 170px;
  height: 172px;
  object-fit: cover;
  border-radius: 12px;
}

.footer {
  background-color: #060606;
  width: 100%;
}

.footer__inner {
  max-width: 1368px;
  margin: 0 auto;
  padding: 20px 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

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

.footer__nav a {
  font-size: 14px;
  color: white;
  white-space: nowrap;
  line-height: normal;
  transition: opacity 0.3s;
}

.footer__nav a:hover {
  opacity: 0.7;
}

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

.social a {
  width: 28px;
  height: 28px;
  display: block;
}

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

.footer__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: normal;
}

.footer__badge {
  width: 214px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.policy {
  max-width: 1368px;
  margin: 0 auto;
  padding: 20px 84px 60px;
}

.policy__title {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}

.policy__content {
  font-size: 14px;
  line-height: 1.2;
  max-width: 1098px;
}

.policy__content p {
  margin-bottom: 0;
}

.policy__content p:empty {
  height: 16.8px;
}

.game-hero {
  background-color: #d979ff;
  padding: 30px 84px;
}

.game-hero__inner {
  max-width: 1368px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.game-hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.game-hero__desc {
  font-size: 14px;
  line-height: 1.2;
}

.game-hero__decor {
  width: 127px;
  height: 128px;
  object-fit: cover;
  border-radius: 12px;
}

.game-hero__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.game-hero__image {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
}

.game-content {
  max-width: 996px;
  margin: 60px auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

.game-content__desc {
  font-size: 14px;
  line-height: 1.2;
}

.game-content__screenshot {
  width: 800px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 800 / 300;
  border-radius: 30px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .header__inner {
    padding: 10px 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .header__left {
    width: 100%;
  }

  .header__badge {
    width: 117px;
    height: 44px;
  }

  .hero__overlay {
    margin: 30px 15px;
    border-radius: 20px;
  }

  .hero__title {
    font-size: 32px;
  }

  .about {
    padding: 60px 15px;
  }

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

  .about__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .about__decor {
    width: 218px;
    height: 222px;
  }

  .about__content {
    width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

  .about__image {
    width: 100%;
    max-width: 307px;
    height: auto;
    aspect-ratio: 307 / 546;
  }

  .advantages {
    padding: 0 15px;
    margin: 40px auto;
  }

  .advantage-card {
    flex-direction: column;
  }

  .advantage-card__content {
    width: 100%;
    padding: 20px;
  }

  .advantage-card__title {
    font-size: 24px;
  }

  .advantage-card__image {
    position: static;
    width: 100%;
    height: 167px;
  }

  .games {
    padding: 60px 15px;
  }

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

  .games__left {
    width: 100%;
  }

  .games__grid {
    width: 100%;
    max-width: 330px;
  }

  .games__row {
    justify-content: space-between;
  }

  .games__row > a,
  .games__row > img {
    width: calc((100% - 30px) / 3);
    height: auto;
    aspect-ratio: 1;
  }

  .games__center > a,
  .games__center > img {
    width: 300px;
    height: 300px;
    max-width: calc(100% - 30px);
  }

  .faq {
    padding: 0 15px;
  }

  .faq__header {
    max-width: 100%;
  }

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

  .faq__list {
    width: 100%;
  }

  .faq__question-title {
    font-size: 18px;
  }

  .faq__image {
    width: 250px;
    height: 494px;
    align-self: flex-start;
  }

  .policy {
    padding: 20px 15px 40px;
  }

  .policy__title {
    font-size: 32px;
  }

  .game-hero {
    padding: 30px 15px;
  }

  .game-hero__inner {
    flex-direction: column;
    gap: 30px;
  }

  .game-hero__left {
    width: 100%;
  }

  .game-hero__image {
    width: 250px;
    height: 250px;
  }

  .game-content__screenshot {
    border-radius: 15px;
  }

  .cta__overlay {
    margin: 30px 15px;
    border-radius: 20px;
  }

  .cta__title {
    font-size: 32px;
  }

  .cta__contacts {
    font-size: 14px;
  }

  .footer__inner {
    padding: 10px 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__badge {
    width: 117px;
    height: 44px;
  }
}

/* ============================================================
   Scroll reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.advantage-card:nth-child(2).reveal {
  transition-delay: 0.08s;
}

.advantage-card:nth-child(3).reveal {
  transition-delay: 0.16s;
}

.faq__item:nth-child(2).reveal {
  transition-delay: 0.06s;
}

.faq__item:nth-child(3).reveal {
  transition-delay: 0.12s;
}

.faq__item:nth-child(4).reveal {
  transition-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Hover effects
   ============================================================ */
.btn {
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(22, 120, 195, 0.35);
}

.logo {
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo__icon {
  transition: transform 0.4s ease;
}

.logo:hover .logo__icon {
  transform: rotate(20deg);
}

.header__badge,
.footer__badge {
  transition: transform 0.4s ease;
}

.header__badge:hover,
.footer__badge:hover {
  transform: scale(1.03);
}

.advantage-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.advantage-card__image {
  transition: transform 0.5s ease;
}

.advantage-card:hover .advantage-card__image {
  transform: scale(1.05);
}

.faq__item {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq__item:hover {
  background-color: rgba(22, 120, 195, 0.45);
  transform: translateX(4px);
}

.faq__chevron {
  transition: transform 0.3s ease;
}

.faq__item:hover .faq__chevron {
  transform: translateY(3px);
}

.about__image,
.faq__image,
.game-hero__image {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about__image:hover,
.faq__image:hover,
.game-hero__image:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.about__decor,
.games__icon,
.game-hero__decor,
.cta__image {
  transition: transform 0.4s ease;
}

.about__decor:hover,
.games__icon:hover,
.game-hero__decor:hover,
.cta__image:hover {
  transform: rotate(-3deg) scale(1.05);
}

.social a {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social a:hover {
  transform: translateY(-3px) scale(1.1);
}

.game-content__screenshot {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.game-content__screenshot:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   Cookie consent banner
   ============================================================ */
.cookie {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 620px;
  background-color: #ffffff;
  border: 2px solid #1678c3;
  border-radius: 26px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie--visible {
  opacity: 1;
  transform: none;
}

.cookie--hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie__icon {
  width: 64px;
  height: 64px;
  border: 2px solid #1678c3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie__icon img {
  width: 36px;
  height: 36px;
}

.cookie__title {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: #1678c3;
  line-height: 1.2;
}

.cookie__text {
  font-size: 14px;
  line-height: 1.35;
  color: #060606;
}

.cookie__actions {
  display: flex;
  gap: 16px;
}

.cookie__btn {
  font-family: 'Saira Semi Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 50px;
  cursor: pointer;
  line-height: normal;
  border: 2px solid #1678c3;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie__btn--accept {
  background-color: #1678c3;
  color: #ffffff;
}

.cookie__btn--accept:hover {
  background-color: #1264a3;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(22, 120, 195, 0.35);
}

.cookie__btn--manage {
  background-color: #ffffff;
  color: #1678c3;
}

.cookie__btn--manage:hover {
  background-color: #1678c3;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie {
    left: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
    max-width: none;
    padding: 24px;
    border-radius: 20px;
    gap: 18px;
  }

  .cookie__icon {
    width: 52px;
    height: 52px;
  }

  .cookie__icon img {
    width: 30px;
    height: 30px;
  }

  .cookie__title {
    font-size: 22px;
  }

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

  .cookie__btn {
    width: 100%;
    padding: 16px;
  }
}
