/* ==========================================================================
   GAMEKEY Landing — match design mockup
   Page bg: #0a102b (PC) | PC content: 1200px centered | Breakpoint: 992px
   ========================================================================== */

:root {
  --gk-bg: #0a102b;
  --gk-card: rgba(14, 18, 36, 0.88);
  --gk-card-border: rgba(72, 118, 255, 0.32);
  --gk-white: #ffffff;
  --gk-muted: rgba(255, 255, 255, 0.68);
  --gk-pink: #ff2d9a;
  --gk-purple: #b040ff;
  --gk-blue: #2b7cff;
  --gk-blue-light: #4da3ff;
  --gk-orange: #ff6b2c;
  --gk-red: #e83434;
  --gk-header-h: 64px;
  --gk-radius: 16px;
  --gk-radius-sm: 12px;
  --gk-max: 1200px;
  --gk-hero-side: 32px;
  --gk-hero-side-left: 36px;
  --gk-hero-content-top: 16%;
  --gk-card-right: 52px;
  --gk-card-top: 58%;
  --gk-gallery-box-bg: #0a102b;
  --gk-font: "Inter", "Segoe UI", Arial, sans-serif;
  --gk-script: "Pacifico", "Segoe Script", cursive;
  --gk-buy-btn-bg: linear-gradient(90deg, #2b7cff 0%, #6366f1 38%, #b040ff 52%, #ff6b2c 100%);
}

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

html {
  scroll-behavior: smooth;
}

body.gk-landing {
  margin: 0;
  background: var(--gk-bg);
  color: var(--gk-white);
  font-family: var(--gk-font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button,
a {
  font: inherit;
}

.gk-pc-only {
  display: none !important;
}

.gk-mobile-only {
  display: block !important;
}

.gk-container {
  width: 100%;
  max-width: var(--gk-max);
  margin-inline: auto;
}

.gk-main {
  width: 100%;
}

/* -------------------------------------------------------------------------- */
/* Header (PC, full-width bar + fixed inner width)                            */
/* -------------------------------------------------------------------------- */

.gk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--gk-header-h);
  background: #000;
}

.gk-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-inline: 0;
}

.gk-logo {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.gk-logo__game {
  color: var(--gk-white);
}

.gk-logo__key {
  color: #ff8a2a;
}

.gk-search {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  min-height: 42px;
}

.gk-search__input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 0 18px;
  font-size: 14px;
  color: #333;
  background: transparent;
}

.gk-search__input::placeholder {
  color: #9aa0aa;
}

.gk-search__btn {
  width: 52px;
  border: 0;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.gk-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.gk-header__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gk-white);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.gk-header__icon-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--gk-white);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.gk-header__badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gk-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.gk-btn-delivery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #3b82f6);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

/* -------------------------------------------------------------------------- */
/* Hero — no mask on background image                                         */
/* -------------------------------------------------------------------------- */

.gk-hero {
  position: relative;
  overflow: visible;
  background: var(--gk-bg);
}

/* 背景图撑开 Hero 高度，完整显示（从导航下沿开始） */
.gk-hero__bg {
  position: relative;
  z-index: 0;
  line-height: 0;
}

.gk-hero__bg picture {
  display: block;
}

.gk-hero__bg img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.gk-hero__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 24px 16px 0;
  pointer-events: none;
}

.gk-hero__inner * {
  pointer-events: auto;
}

.gk-hero__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gk-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gk-game-logo {
  width: min(100%, 240px);
  margin-bottom: 4px;
}

.gk-game-logo img {
  width: 100%;
  height: auto;
}

.gk-script {
  font-family: var(--gk-script);
  color: var(--gk-pink);
  font-size: clamp(20px, 5vw, 26px);
  line-height: 1.2;
  margin: 0 0 8px;
  text-shadow: 0 0 18px rgba(255, 45, 154, 0.45);
}

.gk-hero__title-pc {
  display: none;
}

.gk-hero__desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 300px;
}

/* Purchase stack (card + trust below) */
.gk-hero__purchase-stack {
  width: 100%;
  max-width: 360px;
  margin-top: 14px;
  margin-bottom: -36px;
  position: relative;
  z-index: 5;
}

.gk-hero__purchase-stack .gk-card {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.gk-trust--below-card {
  margin-top: 14px;
  padding: 0;
  background: transparent;
  width: calc(100% + 32px);
  max-width: none;
  margin-left: -16px;
  margin-right: -16px;
  box-sizing: border-box;
}

.gk-trust--below-card .gk-trust__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 8px;
}

.gk-trust--below-card .gk-trust__item {
  flex: none;
  align-items: center;
  gap: 8px;
}

.gk-trust--below-card .gk-trust__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  min-width: 0;
  flex: 1 1 auto;
}

.gk-trust--below-card .gk-trust__title,
.gk-trust--below-card .gk-trust__sub {
  white-space: nowrap;
  line-height: 1.25;
}

.gk-trust--below-card .gk-trust__title {
  font-size: 11px;
}

.gk-trust--below-card .gk-trust__sub {
  font-size: 10px;
}

.gk-trust--below-card .gk-trust__icon {
  width: 34px;
  height: 34px;
}

.gk-trust--hero-inline {
  display: none !important;
}

/* Purchase card */
.gk-card {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 20px 18px;
  border-radius: var(--gk-radius);
  border: 1px solid var(--gk-card-border);
  background: rgba(14, 18, 36, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.gk-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gk-muted);
}

.gk-card__label svg {
  color: var(--gk-blue-light);
}

.gk-card__price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.gk-card__price {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.gk-card__old-price {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
}

.gk-card__discount {
  padding: 4px 10px;
  border-radius: 5px;
  background: var(--gk-red);
  font-size: 13px;
  font-weight: 700;
}

.gk-btn-buy {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  border: 0;
  border-radius: 5px;
  background: var(--gk-buy-btn-bg);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.gk-btn-wishlist {
  width: 100%;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.gk-card__benefits {
  display: none;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-direction: column;
  gap: 14px;
}

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

.gk-card__benefit-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #1c2440;
  display: grid;
  place-items: center;
  color: #ffffff;
}

.gk-card__benefit-icon svg {
  width: 28px;
  height: 28px;
}

.gk-card__benefit-title {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 700;
}

.gk-card__benefit-desc {
  margin: 0;
  font-size: 12px;
  color: var(--gk-muted);
  line-height: 1.45;
}

/* Trust badges */
.gk-trust {
  background: transparent;
}

.gk-trust__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px 12px;
}

.gk-trust__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
}

.gk-trust__copy {
  min-width: 0;
}

.gk-trust__icon {
  width: 40px;
  height: 40px;
  margin: 0;
  flex-shrink: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  display: block;
  color: inherit;
}

.gk-trust__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gk-trust__title {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.gk-trust__sub {
  margin: 0;
  font-size: 10px;
  color: var(--gk-muted);
  line-height: 1.35;
}

.gk-trust--mobile-section {
  padding: 68px 16px 26px;
}

@media (max-width: 991px) {
  body.gk-landing {
    --gk-bg: #040d2e;
    --gk-gallery-box-bg: #040d2e;
    --gk-hero-mobile-align: 12px;
    --gk-header-h: 52px;
    background-color: #040d2e;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .gk-header {
    position: sticky;
    top: 0;
    z-index: 200;
  }

  .gk-header__inner {
    padding-inline: 12px;
    gap: 10px;
  }

  .gk-header__inner.gk-container {
    max-width: none;
  }

  .gk-search {
    display: none;
  }

  .gk-header__actions {
    gap: 6px;
  }

  .gk-header__link {
    font-size: 11px;
    gap: 4px;
  }

  .gk-btn-delivery {
    display: none;
  }

  .gk-logo {
    font-size: 18px;
  }

  .gk-header__icon-btn {
    width: 34px;
    height: 34px;
  }

  .gk-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .gk-hero__bg,
  .gk-hero__inner {
    grid-column: 1;
    grid-row: 1;
  }

  .gk-hero__bg {
    align-self: start;
    width: 100%;
  }

  .gk-hero__bg img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: unset;
    min-height: 0;
  }

  .gk-hero__inner {
    position: relative;
    inset: auto;
    align-self: start;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 9% 16px 0;
    box-sizing: border-box;
    pointer-events: none;
  }

  .gk-hero__grid {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    width: 100%;
    padding-left: var(--gk-hero-mobile-align, 12px);
    box-sizing: border-box;
  }

  .gk-hero__content {
    padding-top: 0;
    width: 100%;
    max-width: 360px;
  }

  .gk-game-logo {
    width: min(100%, 168px);
    margin-bottom: 120px;
  }

  .gk-hero__desc {
    font-size: 10px;
    line-height: 1.45;
    max-width: 268px;
    margin-left: 0;
    color: rgba(255, 255, 255, 0.9);
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .gk-hero__purchase-stack {
    max-width: 360px;
    margin-top: 14px;
    margin-bottom: -32px;
    margin-inline: 0;
  }

  .gk-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 16px 14px;
    background: rgba(14, 18, 36, 0.96);
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .gk-card__price {
    font-size: 30px;
  }

  .gk-card__old-price {
    font-size: 15px;
  }

  .gk-card__label {
    font-size: 10px;
  }

  .gk-btn-buy {
    font-size: 14px;
    min-height: 44px;
  }

  .gk-card__price-row {
    gap: 8px 10px;
  }

  .gk-card__discount {
    margin-left: auto;
  }

  .gk-card__benefits {
    display: flex;
    margin-top: 16px;
    padding-top: 14px;
    gap: 12px;
  }

  .gk-card__benefit {
    gap: 12px;
  }

  .gk-card__benefit-icon {
    width: 46px;
    height: 46px;
  }

  .gk-card__benefit-icon svg {
    width: 24px;
    height: 24px;
  }

  .gk-card__benefit-title {
    font-size: 12px;
  }

  .gk-card__benefit-desc {
    font-size: 11px;
  }

  .gk-gallery {
    margin-top: 0;
    padding-bottom: 12px;
  }

  .gk-features {
    padding-top: 0;
    padding-bottom: 28px;
  }

  .gk-features__copy--after-gallery {
    width: 100%;
    max-width: none;
    padding: 16px 2px 4px;
    margin: 0;
  }

  .gk-features__copy--after-gallery .gk-features__title {
    font-size: clamp(34px, 10vw, 42px);
    margin-bottom: 10px;
  }

  .gk-features__copy--after-gallery .gk-features__text {
    font-size: 13px;
    line-height: 1.55;
  }

  .gk-features__icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }

  .gk-feature__icon {
    width: 68px;
    height: 68px;
  }

  .gk-feature__icon img {
    width: 50px;
    height: 50px;
  }

  .gk-footer-banner__bg img {
    width: 100%;
    height: auto;
    max-width: 100%;
    min-height: 0;
    object-fit: unset;
  }

  .gk-site-footer {
    border-top: none;
    padding-top: 12px;
  }
}

/* -------------------------------------------------------------------------- */
/* Gallery                                                                    */
/* -------------------------------------------------------------------------- */

.gk-gallery {
  padding: 0 16px 32px;
  margin-top: 0;
  background: var(--gk-bg);
  position: relative;
  z-index: 2;
}

.gk-gallery__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border-radius: 0;
  background: linear-gradient(135deg, #111425 0%, var(--gk-bg) 100%);
}

.gk-gallery__main {
  position: relative;
  border-radius: var(--gk-radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #0a0e1a;
}

.gk-gallery__main img,
.gk-gallery__thumb:not(.gk-gallery__thumb--more) img {
  object-fit: cover;
}

.gk-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}

.gk-gallery__script {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  font-family: var(--gk-script);
  color: var(--gk-pink);
  font-size: clamp(18px, 5vw, 26px);
  line-height: 1.15;
  text-shadow: 0 0 16px rgba(255, 45, 154, 0.5);
  max-width: 48%;
  z-index: 2;
}

.gk-gallery__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.42);
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: none;
  z-index: 5;
}

.gk-gallery__main img,
.gk-gallery__main .gk-gallery__script {
  pointer-events: none;
}

.gk-gallery__play svg {
  width: 34px;
  height: 34px;
  margin-left: 5px;
  fill: currentColor;
}

.gk-gallery__play.is-pulse {
  transform: scale(1.08);
  transition: transform 0.25s ease;
}

/* -------------------------------------------------------------------------- */
/* Trailer lightbox (Rockstar official MP4)                                   */
/* -------------------------------------------------------------------------- */

body.gk-trailer-open {
  overflow: hidden;
}

.gk-trailer[hidden]:not(.is-open) {
  display: none !important;
}

.gk-trailer.is-open {
  display: flex;
}

.gk-trailer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.gk-trailer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.gk-trailer__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
}

.gk-trailer__close {
  position: absolute;
  top: -44px;
  right: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.gk-trailer__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.gk-trailer__iframe,
.gk-trailer__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.gk-trailer__video {
  object-fit: contain;
}

.gk-trailer__frame.is-youtube .gk-trailer__video {
  display: none;
}

.gk-trailer__frame.is-mp4 .gk-trailer__iframe {
  display: none;
}

@media (max-width: 991px) {
  .gk-trailer__close {
    top: -40px;
    right: 4px;
  }
}

.gk-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gk-gallery__thumb {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  font: inherit;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #0a0e1a;
}

.gk-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gk-gallery__thumbs:not(:has(.gk-gallery__thumb--more)) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gk-gallery__thumb--more {
  background: #05070f;
}

.gk-gallery__thumb--more img {
  filter: brightness(0.35);
  transform: scale(1.08);
}

.gk-gallery__more-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: clamp(22px, 5.5vw, 36px);
  font-weight: 800;
  letter-spacing: 0.04em;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* -------------------------------------------------------------------------- */
/* Product image lightbox                                                     */
/* -------------------------------------------------------------------------- */

body.gk-lightbox-open {
  overflow: hidden;
}

.gk-lightbox[hidden]:not(.is-open) {
  display: none !important;
}

.gk-lightbox.is-open {
  display: block;
}

.gk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  color: #fff;
}

.gk-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: #000;
}

.gk-lightbox__shell {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 16px 16px;
  box-sizing: border-box;
}

.gk-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}

.gk-lightbox__header {
  text-align: center;
  padding: 0 48px 12px;
  flex-shrink: 0;
}

.gk-lightbox__title {
  margin: 0;
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 700;
  line-height: 1.35;
}

.gk-lightbox__counter {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.gk-lightbox__stage {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gk-lightbox__main {
  position: relative;
  flex: 1;
  max-width: min(920px, 100%);
  height: min(56vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gk-lightbox__photo {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}

.gk-lightbox__side {
  position: absolute;
  top: 50%;
  width: 28%;
  max-height: 88%;
  object-fit: cover;
  opacity: 0.28;
  filter: blur(2px);
  transform: translateY(-50%);
  pointer-events: none;
  border-radius: 4px;
}

.gk-lightbox__side--left {
  left: -18%;
}

.gk-lightbox__side--right {
  right: -18%;
}

.gk-lightbox__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.gk-lightbox__nav svg {
  width: 22px;
  height: 22px;
}

.gk-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.gk-lightbox__thumbs {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
  padding: 16px 8px 4px;
  scrollbar-width: thin;
}

.gk-lightbox__thumb-btn {
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0;
  width: 72px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  opacity: 0.72;
}

.gk-lightbox__thumb-btn.is-active {
  border-color: #fff;
  opacity: 1;
}

.gk-lightbox__thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .gk-lightbox__side {
    display: none;
  }

  .gk-lightbox__main {
    height: min(48vh, 360px);
  }

  .gk-lightbox__nav {
    width: 38px;
    height: 38px;
  }
}

/* -------------------------------------------------------------------------- */
/* Features                                                                   */
/* -------------------------------------------------------------------------- */

.gk-features {
  padding: 8px 16px 36px;
  background: var(--gk-bg);
}

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

.gk-features__copy {
  max-width: 560px;
}

.gk-features__eyebrow {
  margin: 0 0 4px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
}

.gk-features__title {
  margin: 0 0 14px;
  font-size: clamp(38px, 10vw, 68px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #ff2d9a, #b040ff, #ff6b2c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 45, 154, 0.35));
}

.gk-features__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gk-muted);
}

.gk-features__icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}

.gk-feature {
  text-align: center;
}

.gk-feature__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}

.gk-feature__icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.gk-feature__label {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

/* -------------------------------------------------------------------------- */
/* Footer banner — no mask                                                    */
/* -------------------------------------------------------------------------- */

.gk-footer-banner {
  position: relative;
  overflow: hidden;
  background: var(--gk-bg);
}

.gk-footer-banner__bg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  min-height: 0;
}

.gk-footer-banner__bg picture {
  display: block;
  line-height: 0;
}

.gk-footer-banner__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.gk-footer-banner__text--pc {
  display: none;
}

.gk-footer-banner__text--mobile {
  justify-content: flex-end;
  padding: 20px 18px 24px;
}

.gk-footer-banner__script {
  margin: 0;
  font-family: var(--gk-script);
  color: var(--gk-pink);
  font-size: clamp(26px, 7vw, 42px);
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(255, 45, 154, 0.55);
  text-align: right;
}

/* -------------------------------------------------------------------------- */
/* Site footer — copyright                                                    */
/* -------------------------------------------------------------------------- */

.gk-site-footer {
  background: var(--gk-bg);
  padding: 20px 16px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gk-site-footer__inner {
  width: 100%;
  max-width: var(--gk-max);
  margin-inline: auto;
  text-align: center;
}

.gk-site-footer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--gk-muted);
}

@media (min-width: 992px) {
  .gk-site-footer {
    padding: 24px 0 32px;
  }

  .gk-site-footer p {
    font-size: 13px;
  }
}

/* -------------------------------------------------------------------------- */
/* Desktop ≥992px                                                             */
/* -------------------------------------------------------------------------- */

@media (min-width: 992px) {
  :root {
    --gk-hero-content-top: 13%;
  }

  .gk-pc-only {
    display: block !important;
  }

  .gk-mobile-only {
    display: none !important;
  }

  .gk-header__inner.gk-container {
    padding-inline: 0;
  }

  .gk-main {
    max-width: var(--gk-max);
    margin-inline: auto;
  }

  .gk-hero__inner {
    padding: 0 var(--gk-hero-side) 0 var(--gk-hero-side-left);
  }

  .gk-hero__grid {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
  }

  .gk-hero__content {
    padding: var(--gk-hero-content-top) 0 0 0;
    max-width: 480px;
  }

  .gk-game-logo {
    width: 360px;
    margin-bottom: 4px;
  }

  .gk-hero__purchase-stack {
    position: absolute;
    right: var(--gk-card-right);
    top: var(--gk-card-top);
    transform: translateY(-50%);
    width: 340px;
    max-width: none;
    margin: 0;
  }

  .gk-trust--below-card {
    margin-top: 16px;
    width: 440px;
    margin-left: -50px;
    margin-right: 0;
    padding: 0 2px;
  }

  .gk-trust--below-card .gk-trust__row {
    gap: 12px 10px;
  }

  .gk-trust--below-card .gk-trust__icon {
    width: 40px;
    height: 40px;
  }

  .gk-card {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin: 0;
    padding: 22px 20px;
  }

  .gk-card__benefits {
    display: flex;
  }

  .gk-gallery {
    padding: 0 0 40px;
    margin-top: -80px;
  }

  .gk-gallery__grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 14px;
    border-radius: 0;
    align-items: stretch;
  }

  .gk-gallery__main {
    grid-column: 1;
    grid-row: 1 / 3;
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
    align-self: stretch;
  }

  .gk-gallery__thumbs {
    display: contents;
  }

  .gk-gallery__thumb:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
  }

  .gk-gallery__thumb:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }

  .gk-gallery__thumb:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .gk-gallery__thumb:nth-child(4),
  .gk-gallery__thumb--more {
    grid-column: 3;
    grid-row: 2;
  }

  .gk-gallery__thumb {
    aspect-ratio: 16 / 9;
    width: 100%;
    min-height: 0;
  }

  .gk-features {
    padding: 12px 0 48px;
  }

  .gk-features__inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
  }

  .gk-features__copy {
    flex: 0 1 auto;
    max-width: 420px;
  }

  .gk-features__eyebrow {
    font-size: 20px;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
  }

  .gk-features__icons {
    display: flex;
    flex: 0 0 auto;
    max-width: none;
    width: auto;
    gap: 8px;
    margin-left: auto;
    justify-content: flex-end;
  }

  .gk-feature {
    flex: 0 0 auto;
    width: 125px;
  }

  .gk-feature__icon {
    width: 76px;
    height: 76px;
    margin-bottom: 10px;
  }

  .gk-feature__icon img {
    width: 64px;
    height: 64px;
  }

  .gk-feature__label {
    font-size: 11px;
    letter-spacing: 0.12em;
    line-height: 1.6;
  }

  .gk-footer-banner__text--mobile {
    display: none;
  }

  .gk-footer-banner__text--pc {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 28px 8px 36px;
  }

  .gk-footer-banner__script--left {
    text-align: left;
  }

  .gk-footer-banner__script--right {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  :root {
    --gk-hero-content-top: 13%;
    --gk-hero-side-left: 40px;
    --gk-card-right: 56px;
    --gk-card-top: 59%;
  }
}

/* -------------------------------------------------------------------------- */
/* Regional preferences modal (G2A-style)                                     */
/* -------------------------------------------------------------------------- */

.gk-regional-trigger {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  color: inherit;
}

body.gk-regional-open {
  overflow: hidden;
}

.gk-regional[hidden] {
  display: none !important;
}

.gk-regional {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gk-regional__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.gk-regional__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.gk-regional__close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #666;
  cursor: pointer;
}

.gk-regional__title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
}

.gk-regional__subtitle {
  margin: 0 0 22px;
  color: #666;
  font-size: 14px;
}

.gk-regional__field {
  display: block;
  margin-bottom: 16px;
}

.gk-regional__label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.gk-regional__select {
  width: 100%;
  height: 46px;
  border: 1px solid #d5dbe7;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  color: #111;
  background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.gk-regional__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.gk-regional__save,
.gk-regional__cancel {
  width: 100%;
  height: 46px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.gk-regional__save {
  border: 0;
  background: #2b7cff;
  color: #fff;
}

.gk-regional__cancel {
  border: 1px solid #2b7cff;
  background: #fff;
  color: #2b7cff;
}

.gk-regional__currency-trigger {
  display: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.gk-regional__currency-trigger-label {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 8px;
}

.gk-regional__picker {
  display: none;
  margin-top: 8px;
}

.gk-regional__picker[hidden] {
  display: none !important;
}

.gk-regional__picker-list {
  max-height: min(280px, 42vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #d5dbe7;
  border-radius: 8px;
  background: #fff;
  padding-bottom: 28px;
  box-sizing: border-box;
}

.gk-regional__picker-option {
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid #eef1f6;
  background: #fff;
  color: #111;
  font-size: 14px;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.gk-regional__picker-option:last-child {
  border-bottom: 0;
  margin-bottom: 4px;
}

.gk-regional__picker-option--active {
  background: #eef4ff;
  font-weight: 700;
}

@media (max-width: 991px) {
  .gk-regional {
    align-items: flex-start;
    padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gk-regional__dialog {
    width: 100%;
    max-height: none;
    margin: auto 0;
    padding: 24px 18px max(20px, env(safe-area-inset-bottom));
  }

  .gk-regional__select {
    font-size: 16px;
  }

  .gk-regional__field--currency .gk-regional__select--native {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    white-space: nowrap;
  }

  .gk-regional__field--currency {
    position: relative;
  }

  .gk-regional__currency-trigger {
    display: flex;
    align-items: center;
  }

  .gk-regional__picker:not([hidden]) {
    display: block;
  }

  .gk-regional__picker-list {
    max-height: min(240px, 38vh);
    padding-bottom: 36px;
  }
}

/* Bookmark hint modal */
body.gk-bookmark-open {
  overflow: hidden;
}

.gk-bookmark[hidden] {
  display: none !important;
}

.gk-bookmark {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gk-bookmark__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.gk-bookmark__dialog {
  position: relative;
  z-index: 1;
  width: min(400px, 100%);
  padding: 24px 22px 20px;
  background: #fff;
  color: #111;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.gk-bookmark__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: #666;
  cursor: pointer;
}

.gk-bookmark__title {
  margin: 0 28px 12px 0;
  font-size: 18px;
  font-weight: 700;
}

.gk-bookmark__text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #444;
}

.gk-bookmark__ok {
  width: 100%;
  padding: 12px 16px;
  border: 0;
  border-radius: 8px;
  background: #2b7cff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
