/* ==========================================================
   GTA 6 — лендинг предзаказа
   Тёмная «вайс-сити» эстетика: неон розовый / фиолетовый / циан
   ========================================================== */

body.theme-prostore-like.information-gta6 {
  background: #0b0b10;
}

body.theme-prostore-like.information-gta6 .ps-g6-page {
  background: #0b0b10;
  color: #e7e7ef;
  overflow-x: hidden;
}

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

/* ---------- Кнопки ---------- */
.ps-g6-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-g6-btn:focus-visible {
  outline: 3px solid rgba(255, 45, 120, 0.55);
  outline-offset: 3px;
}
.ps-g6-btn--primary,
.ps-g6-btn--primary:link,
.ps-g6-btn--primary:visited {
  color: #0b0b10 !important;
  background: linear-gradient(135deg, #ff2d78 0%, #ff5a5f 55%, #ff9a4d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 10px 26px rgba(255, 45, 120, 0.35);
  text-decoration: none !important;
}
.ps-g6-btn--primary:hover,
.ps-g6-btn--primary:active,
.ps-g6-btn--primary:focus {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 16px 38px rgba(255, 45, 120, 0.45);
  color: #0b0b10 !important;
  text-decoration: none !important;
}
.ps-g6-btn--ghost,
.ps-g6-btn--ghost:link,
.ps-g6-btn--ghost:visited {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(6px);
  text-decoration: none !important;
}
.ps-g6-btn--ghost:hover,
.ps-g6-btn--ghost:active,
.ps-g6-btn--ghost:focus {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* ---------- Заголовки секций ---------- */
.ps-g6-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-g6-sechead__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #9aa0b5;
}
.ps-g6-sechead--center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.ps-g6-sechead--center .ps-g6-sechead__lead {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================
   HERO
   ========================================================== */
.ps-g6-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 0 140px;
  color: #fff;
  overflow: hidden;
  background: #0b0b10;
}
.ps-g6-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ps-g6-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.05);
  animation: psG6Zoom 18s ease-out forwards;
}
@keyframes psG6Zoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.02); }
}
.ps-g6-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 16, 0.72) 0%, rgba(11, 11, 16, 0.45) 40%, rgba(11, 11, 16, 0.86) 82%, #0b0b10 100%),
    linear-gradient(90deg, rgba(11, 11, 16, 0.65) 0%, rgba(11, 11, 16, 0.12) 55%, rgba(11, 11, 16, 0.5) 100%);
}
.ps-g6-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(60% 45% at 20% 20%, rgba(255, 61, 129, 0.22), transparent 70%),
    radial-gradient(55% 50% at 85% 80%, rgba(122, 63, 242, 0.25), transparent 70%);
  pointer-events: none;
}
.ps-g6-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.ps-g6-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.14em;
  text-transform: uppercase;
  color: #ff9ec2;
  background: rgba(255, 61, 129, 0.12);
  border: 1px solid rgba(255, 61, 129, 0.45);
  backdrop-filter: blur(6px);
}
.ps-g6-hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3d81;
  box-shadow: 0 0 12px #ff3d81;
  animation: psG6Pulse 1.8s ease-in-out infinite;
}
@keyframes psG6Pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.ps-g6-hero__subtitle {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #cfd3e0;
}
.ps-g6-hero__title {
  margin: 0 0 22px;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
}
.ps-g6-hero__title-line {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: clamp(1.4rem, 6.5vw, 5.6rem);
  white-space: nowrap;
}
.ps-g6-hero__title-num {
  display: inline-block;
  margin-left: 0.08em;
  font-size: 1.12em;
  vertical-align: baseline;
  background: linear-gradient(100deg, #ff3d81 0%, #ff7a59 40%, #ffd23f 75%, #a44dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 6px 40px rgba(255, 61, 129, 0.4));
}
.ps-g6-hero__lead {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #c9cddc;
}
.ps-g6-hero__release {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 26px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(11, 11, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.ps-g6-hero__release-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa0b5;
}
.ps-g6-hero__release-date {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.ps-g6-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.ps-g6-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  z-index: 1;
  background: #0b0b10;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 60L60 66C120 72 240 84 360 84C480 84 600 72 720 62C840 52 960 44 1080 44C1200 44 1320 52 1380 56L1440 60L1440 110L0 110Z'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 60L60 66C120 72 240 84 360 84C480 84 600 72 720 62C840 52 960 44 1080 44C1200 44 1320 52 1380 56L1440 60L1440 110L0 110Z'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
}

/* ---------- Обратный отсчёт ---------- */
.ps-g6-countdown {
  margin: 0 0 30px;
  max-width: 560px;
}
.ps-g6-countdown__title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa0b5;
}
.ps-g6-countdown__grid {
  display: flex;
  gap: 12px;
}
.ps-g6-countdown__cell {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 14px 6px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.ps-g6-countdown__num {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.ps-g6-countdown__label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9aa0b5;
}
.ps-g6-countdown__done {
  margin: 14px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #ffd23f;
}

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

/* ==========================================================
   ОБ ИГРЕ
   ========================================================== */
.ps-g6-about {
  padding: 60px 0 80px;
  background:
    radial-gradient(70% 60% at 90% 10%, rgba(122, 63, 242, 0.16), transparent 65%),
    #0b0b10;
}
.ps-g6-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.ps-g6-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-g6-about__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 61, 129, 0.16), rgba(122, 63, 242, 0.18) 50%, transparent 80%);
  pointer-events: none;
}
.ps-g6-about__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.ps-g6-about__p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #c3c7d6;
}
.ps-g6-about__p:last-child {
  margin-bottom: 0;
}

/* ==========================================================
   ПОЧЕМУ ПРЕДЗАКАЗ
   ========================================================== */
.ps-g6-why {
  padding: 70px 0 80px;
  background: #0d0d14;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ps-g6-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.ps-g6-why__card {
  position: relative;
  padding: 28px 26px 24px;
  border-radius: 18px;
  background: linear-gradient(165deg, #16161f 0%, #101018 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-g6-why__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 61, 129, 0.4);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 61, 129, 0.15);
}
.ps-g6-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-g6-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: #ff6aa0;
  background: rgba(255, 61, 129, 0.12);
  border: 1px solid rgba(255, 61, 129, 0.28);
}
.ps-g6-why__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.ps-g6-why__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #9aa0b5;
}

/* ==========================================================
   ВИДЕО
   ========================================================== */
.ps-g6-video {
  padding: 70px 0 80px;
  background: #0b0b10;
}
.ps-g6-video__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.ps-g6-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-g6-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(122, 63, 242, 0.35), transparent 70%),
    radial-gradient(80% 70% at 50% 85%, rgba(255, 61, 129, 0.25), transparent 70%),
    linear-gradient(160deg, #1a1a26, #101018);
  transition: transform 0.2s ease;
}
.ps-g6-video__frame:hover .ps-g6-video__placeholder {
  transform: scale(1.03);
}
.ps-g6-video__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  font-size: 24px;
  color: #0b0b10;
  background: linear-gradient(135deg, #ff3d81, #ff7a59);
  box-shadow: 0 0 0 10px rgba(255, 61, 129, 0.18), 0 12px 30px rgba(255, 61, 129, 0.4);
  padding-left: 5px;
  transition: transform 0.2s ease;
}
.ps-g6-video__frame:hover .ps-g6-video__play {
  transform: scale(1.1);
}
.ps-g6-video__name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.ps-g6-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.ps-g6-video__sources {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.ps-g6-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-g6-video__src:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.ps-g6-video__src.is-active {
  color: #0b0b10;
  background: linear-gradient(115deg, #ff3d81 0%, #ff7a59 100%);
  border-color: transparent;
}

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

/* ---------- Лайтбокс ---------- */
.ps-g6-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10500;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(6px);
  padding: 24px;
}
.ps-g6-lightbox.is-open {
  display: flex;
}
.ps-g6-lightbox__img {
  max-width: min(92vw, 1300px);
  max-height: 86vh;
}
.ps-g6-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-g6-lightbox__close,
.ps-g6-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-g6-lightbox__close:hover,
.ps-g6-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.ps-g6-lightbox__close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
}
.ps-g6-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
}
.ps-g6-lightbox__nav--prev { left: 18px; }
.ps-g6-lightbox__nav--next { right: 18px; }

/* ==========================================================
   ФОРМА
   ========================================================== */
.ps-g6-form {
  padding: 80px 0;
  background:
    radial-gradient(70% 60% at 15% 20%, rgba(255, 61, 129, 0.14), transparent 60%),
    radial-gradient(70% 60% at 90% 85%, rgba(122, 63, 242, 0.18), transparent 60%),
    #0b0b10;
}
.ps-g6-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, #16161f 0%, #0e0e15 100%);
}
.ps-g6-form__info {
  padding: 40px 38px;
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(255, 61, 129, 0.12), transparent 60%),
    linear-gradient(165deg, #181822 0%, #12121a 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.ps-g6-form__game {
  margin: 26px 0 22px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 61, 129, 0.3);
}
.ps-g6-form__game-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff5a95;
}
.ps-g6-form__game-name {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.ps-g6-form__game-date {
  display: block;
  font-size: 13px;
  color: #9aa0b5;
}
.ps-g6-form__benefits {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ps-g6-form__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #c3c7d6;
}
.ps-g6-form__benefits li .fa {
  margin-top: 3px;
  color: #ff6aa0;
}
.ps-g6-form__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #7f8599;
}
.ps-g6-form__wrap {
  padding: 40px 38px;
}
.ps-g6-form__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ps-g6-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9aa0b5;
}
.ps-g6-req {
  color: #ff3d81;
}
.ps-g6-control {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: #14141c;
  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-g6-control option {
  background-color: #14141c;
  color: #e7e7ef;
}
.ps-g6-control option:first-child,
.ps-g6-control option[value=""] {
  color: #8a90a5;
}
.ps-g6-control::placeholder {
  color: #5f6579;
}
.ps-g6-control:focus {
  outline: none;
  border-color: rgba(255, 61, 129, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 61, 129, 0.2);
  background: rgba(255, 255, 255, 0.07);
}
.ps-g6-control.is-invalid {
  border-color: #ff3d3d;
  box-shadow: 0 0 0 3px rgba(255, 61, 61, 0.18);
}
.ps-g6-field--captcha {
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ps-g6-field--captcha > div,
.ps-g6-field--captcha form {
  margin: 0 !important;
}
.ps-g6-field--captcha .g-recaptcha {
  max-width: 100%;
}
.ps-g6-form__submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}
.ps-g6-form__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.ps-g6-alert {
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.ps-g6-alert--ok {
  color: #7ef0b0;
  background: rgba(39, 174, 96, 0.14);
  border: 1px solid rgba(39, 174, 96, 0.4);
}
.ps-g6-alert--err {
  color: #ffb3b3;
  background: rgba(255, 61, 61, 0.12);
  border: 1px solid rgba(255, 61, 61, 0.4);
}
.ps-g6-field__error {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #ff8f8f;
}

/* ==========================================================
   FAQ
   ========================================================== */
.ps-g6-faq {
  padding: 70px 0 80px;
  background: #0d0d14;
}
.ps-g6-faq__list {
  max-width: 780px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ps-g6-faq__item {
  border-radius: 16px;
  background: #16161f;
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
}
.ps-g6-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-g6-faq__q::-webkit-details-marker {
  display: none;
}
.ps-g6-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: #ff6aa0;
  background: rgba(255, 61, 129, 0.12);
  border: 1px solid rgba(255, 61, 129, 0.3);
  transition: transform 0.2s ease;
}
.ps-g6-faq__item[open] .ps-g6-faq__q::after {
  transform: rotate(45deg);
}
.ps-g6-faq__a {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #b9bdcb;
}

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

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

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

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

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

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