

*, *::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: #100425;
  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: 1200px;
  margin: 0 auto;
  padding: 0 42px;
}

.header {
  position: relative;
  z-index: 50;
  background: #0a0218;
}

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

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

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

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

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

.header__nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-transform: uppercase;
}

.header__nav-link:hover { color: #0DF1EC; }

.header__nav-link--active {
  background: linear-gradient(90deg, #DC00D3 0%, #0DF1EC 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: 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);
}

.header__close {
  display: none;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

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

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

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

.section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 48px;
}

.section__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.15;
  margin: 0;
  color: #ffffff;
}

.section__lead {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: #c9c2dc;
  margin: 0;
  max-width: 940px;
}

.hero {
  position: relative;
  padding: 32px 0;
}

.hero__card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  isolation: isolate;
  background: linear-gradient(135deg, #2C0E70 0%, #161B6B 50%, #1C2B95 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 4, 60, 0.85) 0%, rgba(20, 4, 60, 0.55) 50%, rgba(20, 4, 60, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

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

.hero__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(90deg, #DC00D3 0%, #0DF1EC 100%);
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 12px 32px rgba(220, 0, 211, 0.4);
}

.button:hover {
  background: linear-gradient(90deg, #e21fda 0%, #36f6f1 100%);
}

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

.button--outline::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(90deg, #DC00D3 0%, #0DF1EC 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;
}

.who__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.who__row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.who__image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.who__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.who__text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #c9c2dc;
  margin: 0;
}

.who__closing {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #c9c2dc;
  margin: 0;
  text-align: left;
}

.cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  position: relative;
  padding: 32px;
  background: linear-gradient(140deg, rgba(123, 41, 200, 0.28) 0%, rgba(40, 12, 90, 0.45) 100%);
  border: 1px solid rgba(220, 0, 211, 0.18);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card__text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #d6cdec;
}

.cards__closing {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #d6cdec;
  margin: 32px auto 24px;
  max-width: 940px;
}

.cards__cta {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

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

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

.review__text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #c9c2dc;
  margin: 0;
}

.review__image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.review__closing {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #d6cdec;
  margin: 32px auto 0;
  max-width: 940px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonials__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.testimonials__grid--gap {
  margin-top: 24px;
}

.testimonial {
  position: relative;
  padding: 28px;
  background: linear-gradient(140deg, rgba(123, 41, 200, 0.22) 0%, rgba(40, 12, 90, 0.38) 100%);
  border: 1px solid rgba(220, 0, 211, 0.15);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial__id {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial__stars {
  display: flex;
  gap: 2px;
}

.testimonial__star {
  width: 16px;
  height: 16px;
}

.testimonial__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
}

.testimonial__quote {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #d6cdec;
}

.testimonials__closing {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #d6cdec;
  margin: 32px auto 0;
  max-width: 940px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact__image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.contact__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact__detail {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact__text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #c9c2dc;
  margin: 0;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.games__card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: #1a0a3c;
  border: 1px solid rgba(220, 0, 211, 0.18);
}

.games__card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.games__card-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(10, 2, 24, 0.6) 0%, rgba(10, 2, 24, 0.9) 100%);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

.game-detail__inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 48px;
  align-items: flex-start;
}

.game-detail__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.game-detail__media {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

.game-detail__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(220, 0, 211, 0.2);
}

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

.game-detail__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: #ffffff;
}

.game-detail__heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  margin: 16px 0 4px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.game-detail__text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #d6cdec;
  margin: 0 0 14px;
}

.game-detail__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
  list-style: disc;
}

.game-detail__list li::marker { color: #DC00D3; }

.game-detail__list-title {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 2px;
}

.game-detail__list-text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #d6cdec;
  margin: 0;
}

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

.legal__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
}

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

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

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

.footer {
  position: relative;
  padding: 42px 0;
  background: #0a0218;
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.footer__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 2, 24, 0.4) 0%, rgba(10, 2, 24, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

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

.footer__nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
}

.footer__nav-link:hover { color: #0DF1EC; }

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

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

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

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

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

.cookie {
  position: fixed;
  inset: 0;
  background: rgba(10, 2, 24, 0.65);
  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: #100425;
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(220, 0, 211, 0.25);
}

.cookie__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
}

.cookie__text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #d6cdec;
  margin: 0;
}

.cookie__buttons {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.cookie__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  text-decoration: none;
  color: #ffffff;
}

.cookie__button--accept {
  background: linear-gradient(90deg, #DC00D3 0%, #0DF1EC 100%);
  box-shadow: 0 12px 32px rgba(220, 0, 211, 0.4);
}

.cookie__button--decline {
  background: #0a0218;
  position: relative;
  z-index: 1;
}

.cookie__button--decline::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(90deg, #DC00D3 0%, #0DF1EC 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__card { grid-template-columns: 1fr; padding: 40px 32px; }
  .hero__bg { object-position: center; opacity: .25; }
  .who__row { grid-template-columns: 1fr; }
  .cards__grid { grid-template-columns: 1fr; }
  .review__inner { grid-template-columns: 1fr; }
  .testimonials__grid--three { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
  .games__grid { grid-template-columns: repeat(2, 1fr); }
  .game-detail__inner { grid-template-columns: 1fr; gap: 32px; }
  .game-detail__left { max-width: 440px; margin: 0 auto; width: 100%; }
}

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

  .header__nav {
    position: fixed;
    inset: 0;
    background: #100425;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    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: 20px; }

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

  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid--three { grid-template-columns: 1fr; }

  .cookie__buttons { flex-direction: column; }
  .cookie__button { width: 100%; min-width: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .hero { padding: 16px 0; }
  .hero__card { padding: 32px 24px; border-radius: 20px; }
  .games__grid { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .cookie__banner { padding: 24px; border-radius: 14px; }
  .cookie__title { font-size: 20px; }
}
