/* ==========================================================
   Max Payne 1 & 2 Remake — лендинг предзаказа
   Нуар-эстетика: глубокий синий / снег / красный акцент
   ========================================================== */

body.theme-prostore-like.information-max-payne {
  background: #07090f;
}

body.theme-prostore-like.information-max-payne .ps-mp-page {
  background: #07090f;
  color: #e8e6e1;
  overflow-x: hidden;
}

.ps-mp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------- Кнопки ---------- */
.ps-mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  border: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.ps-mp-btn:focus-visible {
  outline: 3px solid rgba(214, 0, 28, 0.55);
  outline-offset: 3px;
}
.ps-mp-btn--primary,
.ps-mp-btn--primary:link,
.ps-mp-btn--primary:visited {
  color: #fff !important;
  background: linear-gradient(135deg, #e8383b 0%, #d6001c 60%, #9a0014 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 10px 26px rgba(214, 0, 28, 0.35);
  text-decoration: none !important;
}
.ps-mp-btn--primary:hover,
.ps-mp-btn--primary:active,
.ps-mp-btn--primary:focus {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 16px 38px rgba(214, 0, 28, 0.45);
  color: #fff !important;
  text-decoration: none !important;
}
.ps-mp-btn--ghost,
.ps-mp-btn--ghost:link,
.ps-mp-btn--ghost:visited {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  text-decoration: none !important;
}
.ps-mp-btn--ghost:hover,
.ps-mp-btn--ghost:active,
.ps-mp-btn--ghost:focus {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* ---------- Заголовки секций ---------- */
.ps-mp-sechead__title {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
}
.ps-mp-sechead__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #9aa0b5;
}
.ps-mp-sechead--center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.ps-mp-sechead--center .ps-mp-sechead__lead {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================
   HERO
   ========================================================== */
.ps-mp-hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 80px 0 140px;
  color: #fff;
  overflow: hidden;
  background: #07090f;
}
.ps-mp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ps-mp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.5) contrast(1.15) brightness(0.75) hue-rotate(-12deg);
  transform: scale(1.05);
  animation: psMpZoom 22s ease-out forwards;
}
@keyframes psMpZoom {
  from { transform: scale(1.15); }
  to { transform: scale(1.03); }
}
.ps-mp-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 15, 0.85) 0%, rgba(7, 9, 15, 0.55) 38%, rgba(7, 9, 15, 0.9) 82%, #07090f 100%),
    linear-gradient(90deg, rgba(7, 9, 15, 0.82) 0%, rgba(7, 9, 15, 0.18) 55%, rgba(7, 9, 15, 0.6) 100%);
}
.ps-mp-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(55% 45% at 20% 22%, rgba(214, 0, 28, 0.18), transparent 68%),
    radial-gradient(50% 50% at 85% 80%, rgba(30, 40, 70, 0.35), transparent 70%);
  pointer-events: none;
}
/* Снег */
.ps-mp-hero__snow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ps-mp-hero__snow i {
  position: absolute;
  top: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
  animation: psMpSnow linear infinite;
}
.ps-mp-hero__snow i:nth-child(3n) { width: 2px; height: 2px; }
.ps-mp-hero__snow i:nth-child(2n) { background: rgba(255, 255, 255, 0.55); }
.ps-mp-hero__snow i:nth-child(1)  { left: 3%; animation-duration: 9s; animation-delay: 0s; }
.ps-mp-hero__snow i:nth-child(2)  { left: 12%; animation-duration: 11s; animation-delay: 1.2s; }
.ps-mp-hero__snow i:nth-child(3)  { left: 21%; animation-duration: 8s; animation-delay: 0.4s; }
.ps-mp-hero__snow i:nth-child(4)  { left: 29%; animation-duration: 13s; animation-delay: 2s; }
.ps-mp-hero__snow i:nth-child(5)  { left: 37%; animation-duration: 9.5s; animation-delay: 0.8s; }
.ps-mp-hero__snow i:nth-child(6)  { left: 46%; animation-duration: 12s; animation-delay: 1.6s; }
.ps-mp-hero__snow i:nth-child(7)  { left: 54%; animation-duration: 8.5s; animation-delay: 0.2s; }
.ps-mp-hero__snow i:nth-child(8)  { left: 62%; animation-duration: 11.5s; animation-delay: 2.4s; }
.ps-mp-hero__snow i:nth-child(9)  { left: 70%; animation-duration: 9s; animation-delay: 1s; }
.ps-mp-hero__snow i:nth-child(10) { left: 78%; animation-duration: 12.5s; animation-delay: 0.6s; }
.ps-mp-hero__snow i:nth-child(11) { left: 85%; animation-duration: 8.8s; animation-delay: 1.8s; }
.ps-mp-hero__snow i:nth-child(12) { left: 92%; animation-duration: 10.5s; animation-delay: 0.3s; }
.ps-mp-hero__snow i:nth-child(13) { left: 8%; animation-duration: 10s; animation-delay: 2.8s; }
.ps-mp-hero__snow i:nth-child(14) { left: 17%; animation-duration: 9.2s; animation-delay: 3.2s; }
.ps-mp-hero__snow i:nth-child(15) { left: 33%; animation-duration: 12.8s; animation-delay: 2.2s; }
.ps-mp-hero__snow i:nth-child(16) { left: 42%; animation-duration: 8.2s; animation-delay: 3.6s; }
.ps-mp-hero__snow i:nth-child(17) { left: 58%; animation-duration: 11s; animation-delay: 2.6s; }
.ps-mp-hero__snow i:nth-child(18) { left: 67%; animation-duration: 9.7s; animation-delay: 3s; }
.ps-mp-hero__snow i:nth-child(19) { left: 75%; animation-duration: 10.8s; animation-delay: 1.4s; }
.ps-mp-hero__snow i:nth-child(20) { left: 96%; animation-duration: 8.6s; animation-delay: 2s; }
@keyframes psMpSnow {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(105vh) translateX(40px); opacity: 0; }
}
.ps-mp-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.ps-mp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffb3bd;
  background: rgba(214, 0, 28, 0.12);
  border: 1px solid rgba(214, 0, 28, 0.45);
  backdrop-filter: blur(6px);
}
.ps-mp-hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6001c;
  box-shadow: 0 0 12px #d6001c;
  animation: psMpPulse 1.8s ease-in-out infinite;
}
@keyframes psMpPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.ps-mp-hero__subtitle {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c7ccd9;
}
.ps-mp-hero__title {
  margin: 0 0 22px;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
}
.ps-mp-hero__title-line {
  display: block;
  width: 100%;
  max-width: 100%;
}
.ps-mp-hero__title-line--1 {
  font-size: clamp(1.5rem, 5.5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #e2e5ec;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.ps-mp-hero__title-line--2 {
  font-size: clamp(1.7rem, 6.8vw, 5.6rem);
  letter-spacing: 0.02em;
  background: linear-gradient(100deg, #ff5a66 0%, #e8383b 45%, #d6001c 75%, #8f0013 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 8px 44px rgba(214, 0, 28, 0.35));
}
.ps-mp-hero__lead {
  max-width: 640px;
  margin: 0 0 28px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #ccd0da;
}
.ps-mp-hero__release {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 26px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(7, 9, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.ps-mp-hero__release-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9aa0b5;
}
.ps-mp-hero__release-date {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.ps-mp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* ==========================================================
   ФАКТЫ
   ========================================================== */
.ps-mp-facts {
  padding: 70px 0 60px;
  background: #07090f;
}
.ps-mp-facts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.ps-mp-fact {
  padding: 20px 20px 18px;
  border-radius: 16px;
  background: linear-gradient(160deg, #10141f 0%, #0b0e16 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid rgba(214, 0, 28, 0.55);
}
.ps-mp-fact__label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff5a66;
}
.ps-mp-fact__value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: #e8e6e1;
}

/* ==========================================================
   ОБ ИГРЕ
   ========================================================== */
.ps-mp-about {
  padding: 60px 0 80px;
  background:
    radial-gradient(70% 60% at 90% 10%, rgba(214, 0, 28, 0.08), transparent 65%),
    #07090f;
}
.ps-mp-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.ps-mp-about__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.ps-mp-about__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(214, 0, 28, 0.12), transparent 55%, rgba(30, 40, 70, 0.25) 100%);
  pointer-events: none;
}
.ps-mp-about__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.ps-mp-about__p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #c6cad5;
}
.ps-mp-about__p:last-child {
  margin-bottom: 0;
}

/* ==========================================================
   ПОЧЕМУ ПРЕДЗАКАЗ
   ========================================================== */
.ps-mp-why {
  padding: 70px 0 80px;
  background: #0a0d15;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ps-mp-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.ps-mp-why__card {
  position: relative;
  padding: 28px 26px 24px;
  border-radius: 18px;
  background: linear-gradient(165deg, #10141f 0%, #0b0e16 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.ps-mp-why__card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 0, 28, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(214, 0, 28, 0.15);
}
.ps-mp-why__num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.06);
  user-select: none;
}
.ps-mp-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  font-size: 21px;
  color: #ff5a66;
  background: rgba(214, 0, 28, 0.12);
  border: 1px solid rgba(214, 0, 28, 0.3);
}
.ps-mp-why__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.ps-mp-why__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #9aa0b5;
}

/* ==========================================================
   ВИДЕО
   ========================================================== */
.ps-mp-video {
  padding: 70px 0 80px;
  background: #07090f;
}
.ps-mp-video__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.ps-mp-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}
.ps-mp-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(80% 70% at 50% 30%, rgba(214, 0, 28, 0.22), transparent 70%),
    radial-gradient(80% 70% at 50% 85%, rgba(30, 40, 70, 0.3), transparent 70%),
    linear-gradient(160deg, #161a26, #0b0e16);
  transition: transform 0.2s ease;
}
.ps-mp-video__frame:hover .ps-mp-video__placeholder {
  transform: scale(1.03);
}
.ps-mp-video__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, #e8383b, #d6001c);
  box-shadow: 0 0 0 10px rgba(214, 0, 28, 0.16), 0 12px 30px rgba(214, 0, 28, 0.4);
  padding-left: 5px;
  transition: transform 0.2s ease;
}
.ps-mp-video__frame:hover .ps-mp-video__play {
  transform: scale(1.1);
}
.ps-mp-video__name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.ps-mp-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.ps-mp-video__sources {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.ps-mp-video__src {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #9aa0b5;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ps-mp-video__src:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.ps-mp-video__src.is-active {
  color: #fff;
  background: linear-gradient(115deg, #e8383b 0%, #d6001c 100%);
  border-color: transparent;
}

/* ==========================================================
   ГАЛЕРЕЯ
   ========================================================== */
.ps-mp-gallery {
  padding: 70px 0 80px;
  background:
    radial-gradient(60% 50% at 10% 90%, rgba(214, 0, 28, 0.1), transparent 60%),
    #0a0d15;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ps-mp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.ps-mp-gallery__item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: #10141f;
  aspect-ratio: 16 / 10;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ps-mp-gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.ps-mp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.ps-mp-gallery__item:hover img {
  transform: scale(1.05);
}
.ps-mp-gallery__item:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* ---------- Лайтбокс ---------- */
.ps-mp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10500;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 5, 9, 0.92);
  backdrop-filter: blur(6px);
  padding: 24px;
}
.ps-mp-lightbox.is-open {
  display: flex;
}
.ps-mp-lightbox__img {
  max-width: min(92vw, 1300px);
  max-height: 86vh;
}
.ps-mp-lightbox__img img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.ps-mp-lightbox__close,
.ps-mp-lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
}
.ps-mp-lightbox__close:hover,
.ps-mp-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.ps-mp-lightbox__close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
}
.ps-mp-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
}
.ps-mp-lightbox__nav--prev { left: 18px; }
.ps-mp-lightbox__nav--next { right: 18px; }

/* ==========================================================
   ФОРМА
   ========================================================== */
.ps-mp-form {
  padding: 80px 0;
  background:
    radial-gradient(70% 60% at 15% 20%, rgba(214, 0, 28, 0.12), transparent 60%),
    radial-gradient(70% 60% at 90% 85%, rgba(30, 40, 70, 0.25), transparent 60%),
    #07090f;
}
.ps-mp-form__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 0;
  max-width: 1120px;
  margin: 0 0 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  background: linear-gradient(165deg, #10141f 0%, #0a0d15 100%);
}
.ps-mp-form__info {
  padding: 40px 38px;
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(214, 0, 28, 0.12), transparent 60%),
    linear-gradient(165deg, #121624 0%, #0c0f18 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.ps-mp-form__game {
  margin: 26px 0 22px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(214, 0, 28, 0.35);
}
.ps-mp-form__game-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff5a66;
}
.ps-mp-form__game-name {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.ps-mp-form__game-date {
  display: block;
  font-size: 13px;
  color: #9aa0b5;
}
.ps-mp-form__benefits {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ps-mp-form__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #c6cad5;
}
.ps-mp-form__benefits li .fa {
  margin-top: 3px;
  color: #ff5a66;
}
.ps-mp-form__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #7f8599;
}
.ps-mp-form__wrap {
  padding: 40px 38px;
}
.ps-mp-form__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ps-mp-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9aa0b5;
}
.ps-mp-req {
  color: #d6001c;
}
.ps-mp-control {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: #0f1320;
  color: #fff;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.3;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.ps-mp-control option {
  background-color: #0f1320;
  color: #e8e6e1;
}
.ps-mp-control option:first-child,
.ps-mp-control option[value=""] {
  color: #8a90a5;
}
.ps-mp-control::placeholder {
  color: #5f6579;
}
.ps-mp-control:focus {
  outline: none;
  border-color: rgba(214, 0, 28, 0.7);
  box-shadow: 0 0 0 3px rgba(214, 0, 28, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
.ps-mp-control.is-invalid {
  border-color: #ff3d3d;
  box-shadow: 0 0 0 3px rgba(255, 61, 61, 0.18);
}
.ps-mp-field--captcha {
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ps-mp-field--captcha > div,
.ps-mp-field--captcha form {
  margin: 0 !important;
}
.ps-mp-field--captcha .g-recaptcha {
  max-width: 100%;
}
.ps-mp-form__submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}
.ps-mp-form__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.ps-mp-alert {
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.ps-mp-alert--ok {
  color: #7ef0b0;
  background: rgba(39, 174, 96, 0.14);
  border: 1px solid rgba(39, 174, 96, 0.4);
}
.ps-mp-alert--err {
  color: #ffb3b3;
  background: rgba(255, 61, 61, 0.12);
  border: 1px solid rgba(255, 61, 61, 0.4);
}
.ps-mp-field__error {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #ff8f8f;
}

/* ==========================================================
   FAQ
   ========================================================== */
.ps-mp-faq {
  padding: 70px 0 80px;
  background: #0a0d15;
}
.ps-mp-faq__list {
  max-width: 780px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ps-mp-faq__item {
  border-radius: 16px;
  background: #10141f;
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
}
.ps-mp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 800;
  color: #fff;
  list-style: none;
  user-select: none;
}
.ps-mp-faq__q::-webkit-details-marker {
  display: none;
}
.ps-mp-faq__q::after {
  content: "+";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  color: #ff5a66;
  background: rgba(214, 0, 28, 0.12);
  border: 1px solid rgba(214, 0, 28, 0.3);
  transition: transform 0.2s ease;
}
.ps-mp-faq__item[open] .ps-mp-faq__q::after {
  transform: rotate(45deg);
}
.ps-mp-faq__a {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #b9bdcb;
}

/* ==========================================================
   ФИНАЛЬНЫЙ CTA
   ========================================================== */
.ps-mp-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
  background: #07090f;
}
.ps-mp-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ps-mp-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(0.5) contrast(1.1) brightness(0.6);
}
.ps-mp-cta__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 15, 0.9) 0%, rgba(7, 9, 15, 0.55) 50%, rgba(7, 9, 15, 0.92) 100%);
}
.ps-mp-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ps-mp-cta__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.ps-mp-cta__lead {
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.7;
  color: #ccd0da;
}
.ps-mp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.ps-mp-cta__call {
  margin: 22px 0 0;
  font-size: 14px;
  color: #9aa0b5;
}
.ps-mp-cta__call a {
  color: #ff5a66;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.ps-mp-cta__call a:hover {
  color: #ffb3bd;
}

/* ---------- Дисклеймер ---------- */
.ps-mp-disclaimer {
  padding: 22px 0 40px;
  background: #07090f;
}
.ps-mp-disclaimer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #62687d;
  max-width: 900px;
}

/* ==========================================================
   Анимации появления
   ========================================================== */
.ps-mp-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.ps-mp-reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .ps-mp-hero__bg img,
  .ps-mp-hero__badge::before,
  .ps-mp-hero__snow i,
  .ps-mp-hero__title-line--2 {
    animation: none;
  }
  .ps-mp-hero__snow i { display: none; }
  .ps-mp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================
   Адаптив
   ========================================================== */
@media (max-width: 991px) {
  .ps-mp-about__grid,
  .ps-mp-form__card {
    grid-template-columns: 1fr;
  }
  .ps-mp-form__info {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .ps-mp-form__info,
  .ps-mp-form__wrap {
    padding: 30px 26px;
  }
  .ps-mp-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ps-mp-gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 575px) {
  .ps-mp-hero {
    min-height: 88vh;
    padding: 60px 0 110px;
  }
  .ps-mp-form .ps-mp-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ps-mp-form__card {
    border-radius: 18px;
  }
  .ps-mp-form__info,
  .ps-mp-form__wrap {
    padding: 24px 14px;
  }
  .ps-mp-form__info .ps-mp-sechead__title {
    font-size: 1.5rem;
  }
  .ps-mp-form__info .ps-mp-sechead__lead {
    font-size: 14px;
  }
  .ps-mp-form__game {
    margin: 18px 0 16px;
    padding: 14px 16px;
  }
  .ps-mp-form__game-name {
    font-size: 17px;
  }
  .ps-mp-form__game-date {
    font-size: 12px;
  }
  .ps-mp-form__benefits {
    gap: 8px;
    margin-bottom: 16px;
  }
  .ps-mp-form__benefits li {
    font-size: 13px;
  }
  .ps-mp-form__note {
    font-size: 11px;
  }
  .ps-mp-form__body {
    gap: 12px;
  }
  .ps-mp-control {
    padding: 12px 14px;
    font-size: 16px;
  }
  .ps-mp-field label {
    font-size: 11px;
  }
  .ps-mp-form__submit {
    padding: 15px 24px;
  }
  .ps-mp-field--captcha .g-recaptcha {
    transform: scale(0.94);
    transform-origin: left center;
  }
  .ps-mp-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ps-mp-hero__actions .ps-mp-btn {
    width: 100%;
  }
  .ps-mp-why__grid {
    grid-template-columns: 1fr;
  }
  .ps-mp-video__grid {
    grid-template-columns: 1fr;
  }
  .ps-mp-gallery__grid {
    grid-template-columns: 1fr;
  }
  .ps-mp-gallery__item,
  .ps-mp-gallery__item:first-child {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 16 / 10;
  }
  .ps-mp-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ps-mp-cta {
    padding: 70px 0;
  }
}

@media (max-width: 360px) {
  .ps-mp-field--captcha .g-recaptcha {
    transform: scale(0.82);
    transform-origin: left center;
  }
}
