*, *::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: #140408;
  color: #ffffff;
  line-height: 1.4;
  -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;
  padding: 24px 0;
  background: #000000;
}

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

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

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

.header__logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  color: #ffffff;
  text-transform: capitalize;
}

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

.header__nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
}

.header__nav-link:hover { color: #BC0229; }

.header__nav-link--active {
  color: #BC0229;
}

.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);
}

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

.section--bg {
  position: relative;
  background: #140408;
  overflow: hidden;
}

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

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

.section__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 4, 8, 0.55);
  z-index: 1;
  pointer-events: none;
}

.section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 736px;
  margin: 0 auto 48px;
  text-align: center;
}

.section__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  text-transform: capitalize;
  margin: 0;
  color: #ffffff;
}

.section__subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.25;
  margin: 0;
  color: #ffffff;
}

.section__lead {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

.section__closing {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.25;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

.hero {
  position: relative;
  padding: 96px 0;
  text-align: center;
  background: #140408;
  overflow: hidden;
}

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

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 4, 8, 0.5);
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 736px;
  margin: 0 auto;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  text-transform: capitalize;
  margin: 0;
  color: #ffffff;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 24px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(180deg, #BC0229 -10.71%, #63182F 84.58%);
  box-shadow: 0 8px 24px rgba(158, 29, 29, 0.32);
  border: none;
  cursor: pointer;
  text-align: center;
}

.button:hover {
  background: linear-gradient(180deg, #d80330 0%, #74203a 100%);
}

.card {
  position: relative;
  padding: 32px;
  background: linear-gradient(132.97deg, rgba(255, 255, 255, 0.17) 2.84%, rgba(243, 243, 243, 0.015) 99.04%);
  border-radius: 0 20px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  isolation: isolate;
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  border: 2px solid #BC0229;
  pointer-events: none;
  z-index: 3;
}

.card::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.card::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

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

.card__text {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

.review__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

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

.stats {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 261px;
  padding: 12px 12px;
  border-radius: 20px;
}

.stats__value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1.1;
  text-transform: capitalize;
  margin: 0;
  background: linear-gradient(180deg, #BC0229 0%, #63182F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stats__label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  margin: 0;
  color: #ffffff;
  text-align: center;
}

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

.reviews__author {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  color: #ffffff;
}

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

.games__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(132.97deg, rgba(255, 255, 255, 0.17) 2.84%, rgba(243, 243, 243, 0.015) 99.04%);
  border-radius: 0 20px 0 20px;
  isolation: isolate;
  color: #ffffff;
  text-align: center;
}

.games__card::before,
.games__card::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  border: 2px solid #BC0229;
  pointer-events: none;
  z-index: 3;
}

.games__card::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.games__card::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.games__card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

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

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

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

.game-detail__media {
  position: relative;
  padding: 24px;
  background: linear-gradient(132.97deg, rgba(255, 255, 255, 0.17) 2.84%, rgba(243, 243, 243, 0.015) 99.04%);
  border-radius: 0 20px 0 20px;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

.game-detail__media::before,
.game-detail__media::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  border: 2px solid #BC0229;
  pointer-events: none;
  z-index: 3;
}

.game-detail__media::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.game-detail__media::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.game-detail__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.game-detail__cta {
  align-self: stretch;
}

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

.game-detail__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.05;
  text-transform: capitalize;
  margin: 0 0 16px;
  color: #ffffff;
}

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

.game-detail__text {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: #ffffff;
  margin: 0 0 12px;
}

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

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

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

.game-detail__list-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

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

.legal__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  margin: 0;
  text-transform: capitalize;
  color: #ffffff;
}

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

.legal__paragraph {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: #ffffff;
  margin: 0;
}

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

.footer {
  position: relative;
  padding: 42px 0;
  background: #140408;
  overflow: hidden;
  text-align: center;
}

.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: rgba(20, 4, 8, 0.45);
  z-index: 1;
  pointer-events: none;
}

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

.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: 20px;
  line-height: 1.4;
  color: #ffffff;
}

.footer__nav-link:hover { color: #BC0229; }

.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.footer__contact {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  color: #ffffff;
}

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

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

.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: 16px;
  line-height: 1.4;
  margin: 0;
  color: #ffffff;
}

.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: 560px;
  background: #140408;
  border-radius: 0 20px 0 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  isolation: isolate;
}

.cookie__banner::before,
.cookie__banner::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  border: 2px solid #BC0229;
  pointer-events: none;
}

.cookie__banner::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.cookie__banner::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.cookie__icon {
  width: 40px;
  height: 40px;
  display: block;
}

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

.cookie__text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.45;
  color: #ffffff;
  margin: 0;
}

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

.cookie__button {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  text-decoration: none;
}

.cookie__button--accept {
  background: linear-gradient(180deg, #BC0229 -10.71%, #63182F 84.58%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(158, 29, 29, 0.32);
}

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

@media (max-width: 1024px) {
  .review__grid { 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: 460px; margin: 0 auto; width: 100%; }
  .stats { flex-wrap: wrap; }
  .stats__item { width: calc(50% - 12px); }
}

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

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

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

  .header__nav-link { font-size: 26px; }

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

  .stats { flex-direction: column; align-items: center; }
  .stats__item { width: 100%; max-width: 320px; }

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

  .games__grid { grid-template-columns: 1fr; }
}

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

  .button { font-size: 16px; padding: 16px 20px; }

  .card,
  .games__card,
  .cookie__banner { padding: 24px; }

  .stats__value { font-size: 56px; }
}

.inline-link{color:#ff6f6f;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 #ff6f6f;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}
