
:root {
  /* Official GTA VI palette — the signature logo gradient runs
     blue/purple -> magenta/hot-pink -> burnt orange (Miami sunset).
     --gold name kept so existing rules inherit the pink accent. */
  --gold: #ff2d8e;        /* hot pink — primary accent */
  --gold-hover: #ff4fa3;
  --orange: #ff6a2b;
  --purple: #7b2ff7;
  --blue: #2b2a8c;
  --grad: linear-gradient(115deg, #2b2a8c 0%, #7b2ff7 30%, #ff2d8e 62%, #ff6a2b 100%);
  --bg-dark: #07060f;
  --text: #fff;
  --border-gray: #4a3a5c;
  --shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
  --glow: 0 0 18px rgba(255, 45, 142, 0.55);
  --font-head: "Open Sans", sans-serif;
  --font-accent: "Russo One", Verdana, Arial, Helvetica, sans-serif;
}

/* =======================================================================
   CONTENTS
   1. Accessibility / skip-link        6. Platform picker + claim panel
   2. Layout (#home, #header, scrim)   7. Trust badges / FAQ (legacy base)
   3. Promo bar                        8. Language switcher
   4. Buttons                          9. Achievements / modals / sticky
   5. Hero (logo, action, card,       10. #infos premium redesign
      countdown, slots, stats)        11. Responsive + reduced-motion
   Note: legacy COD styles removed; #infos premium overrides live at EOF.
   ======================================================================= */

/* ---- 1. Accessibility ------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--gold);
  color: #000;
  padding: 10px 16px;
  font-family: var(--font-accent);
}
.skip-link:focus {
  left: 8px;
  top: 8px;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---- Layout ----------------------------------------------------------- */
#home {
  margin: 0;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: #000;
}
/* Cinematic scrim — keeps hero text readable + filmic mood. */
#home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 3, 10, 0.92) 0%, rgba(5, 3, 10, 0.55) 42%, rgba(5, 3, 10, 0.12) 78%, transparent 100%),
    linear-gradient(0deg, rgba(5, 3, 10, 0.85) 0%, transparent 42%),
    radial-gradient(120% 120% at 50% 45%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}
#header {
  position: fixed;
  padding: 20px;
  top: 38px;
  width: 100%;
  background: var(--bg-dark);
  transition: 0.4s;
  z-index: 999;
}
body.promo-dismissed #header { top: 0; }

/* ---- Announcement bar ------------------------------------------------- */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 44px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--orange));
  background-size: 200% 100%;
  animation: slotShimmer 6s linear infinite;
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.promo-bar__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.promo-bar__close:hover { color: #fff; }
.promo-bar[hidden] { display: none; }
body.promo-dismissed .promo-bar { display: none; }
.tiny {
  padding-top: 7px !important;
  padding-bottom: 9px !important;
}
.videobg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
#content {
  position: relative;
  width: 100%;
  /* Fill the viewport so the next section's divider line sits right at
     the bottom edge — visible at a glance, no content bleeding in. */
  min-height: calc(100vh - 6px);
  display: flex;
  align-items: safe center;
  padding: 132px 0 40px;
  box-sizing: border-box;
}
#content .actioncall {
  margin-top: 0;
  width: 100%;
}

/* ---- Buttons ---------------------------------------------------------- */
.button {
  display: inline-block;
  font-family: var(--font-accent);
  padding: 15px;
  background: linear-gradient(95deg, var(--purple) 0%, var(--gold) 55%, var(--orange) 100%);
  max-width: 200px;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  box-shadow: var(--glow);
  transition: 0.3s;
}
.button:hover {
  text-decoration: none;
  background: linear-gradient(95deg, #8f4dff 0%, var(--gold-hover) 55%, #ff8052 100%);
  color: #fff;
  box-shadow: 0 0 26px rgba(255, 46, 136, 0.8);
  transform: translateY(-1px);
  cursor: pointer;
}

/* ---- Hero ------------------------------------------------------------- */
span.action {
  display: block;
  color: var(--text);
  font-family: var(--font-head);
  text-shadow: var(--shadow);
}
.action__lead {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d8cee2;
  margin-bottom: 4px;
}
.action__main {
  display: block;
  font-size: 56px;
  font-weight: 800;
  line-height: 0.98;
}
.codtitle {
  font-size: 50px;
  font-family: var(--font-accent);
  font-weight: 900;
  line-height: 54px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.85));
}
.limited {
  display: block;
  margin-top: 4px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--orange);
  text-shadow: 0 0 12px rgba(255, 106, 43, 0.5);
}

/* ---- Premium hero: subheadline, trust strip ----------------------------- */
.hero-left {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 13px;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 45, 142, 0.45);
  border-radius: 999px;
  background: rgba(255, 45, 142, 0.08);
}
.codtitle { margin: 0 0 16px; }
.hero-logo {
  display: block;
  width: min(320px, 68%);
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 26px rgba(255, 45, 142, 0.28));
  animation: logoFloat 5.5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero-sub {
  margin: 14px 0 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: #ece6f2;
  text-shadow: var(--shadow);
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #cdc3d6;
  text-shadow: var(--shadow);
}
.trust-strip__item { white-space: nowrap; }
.trust-strip__sep { color: var(--gold); }

/* ---- Premium hero: glass conversion card -------------------------------- */
.hero-card {
  position: relative;
  z-index: 2;
  margin-top: 6px;
  padding: 22px;
  background: rgba(16, 9, 22, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.hero-card .countdown {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 16px;
  padding: 14px 12px 12px;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}
.hero-card .countdown .cd-label { margin-bottom: 10px; }

/* Segmented countdown — HRS : MIN : SEC digit tiles */
.cd-segments {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}
.cd-seg {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-seg__num {
  min-width: 56px;
  padding: 10px 8px;
  font-family: var(--font-accent);
  font-size: 32px;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.cd-seg__lbl {
  margin-top: 7px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #b4a9bf;
}
.cd-colon {
  font-family: var(--font-accent);
  font-size: 28px;
  color: var(--gold);
  margin-top: 10px;
}
.countdown.is-urgent .cd-seg__num {
  color: #ff7a7a;
  border-color: rgba(255, 59, 59, 0.55);
  background: linear-gradient(180deg, rgba(255, 59, 59, 0.18), rgba(255, 59, 59, 0.05));
}
.countdown.is-urgent .cd-colon { color: #ff5b5b; }

/* Card groups + dividers for clean hierarchy */
.hero-card__group {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-card__group:first-of-type { padding-top: 2px; border-top: 0; }
.hero-card__slots { margin: 0; }
.slots-text {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  color: #ddd;
  margin-bottom: 7px;
}
.slots-text .slots-left {
  color: var(--gold);
  font-weight: 800;
}
.slots-pct {
  white-space: nowrap;
  color: #b7adc2;
  font-size: 12px;
}
.slots-pct .slots-pct-num { color: var(--orange); font-weight: 800; }

/* Live stats — players (left) + viewers (right), one row */
.hero-card__stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 12px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.stat--right { align-items: flex-end; text-align: right; }
.stat__val {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-accent);
  font-size: 18px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}
.stat--right .stat__val { color: var(--gold); }
.stat__lbl {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2px;
  color: #b4a9bf;
  white-space: nowrap;
}
.stat .dot {
  flex: none;
  width: 9px;
  height: 9px;
  margin: 0;
  border-radius: 50%;
  background: #3ddc4b;
  box-shadow: 0 0 0 0 rgba(61, 220, 75, 0.7);
  animation: pulse 1.6s infinite;
}
.stat .viewers-eye { font-size: 15px; opacity: 0.9; }

/* CTA caption — trust microcopy under the main button */
.cta-caption {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.3px;
  color: #b4a9bf;
}

/* Geo badge — "Available in <country>" */
.geo-badge {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: #e8e2ee;
  text-shadow: var(--shadow);
}
.geo-badge[hidden] { display: none; }
.geo-badge .geo-country { color: var(--gold); }
.geo-badge__flag { font-size: 14px; line-height: 1; }

/* ---- Value-prop chips --------------------------------------------------- */
.value-props {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.vprop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: #e8e2ee;
  text-shadow: var(--shadow);
}
.vprop__ic { font-size: 13px; }

/* ---- Social proof: avatar stack + rating -------------------------------- */
.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 16px;
}
.avatar-stack {
  display: inline-flex;
  align-items: center;
}
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #0a0410;
  margin-left: -9px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.avatar--1 { margin-left: 0; background: linear-gradient(135deg, #ff2d8e, #7b2ff7); }
.avatar--2 { background: linear-gradient(135deg, #ff6a2b, #ff2d8e); }
.avatar--3 { background: linear-gradient(135deg, #7b2ff7, #2b2a8c); }
.avatar--4 { background: linear-gradient(135deg, #ffb648, #ff6a2b); }
.avatar-stack__txt {
  margin-left: 11px;
  font-family: var(--font-head);
  font-size: 13px;
  color: #cfc6d6;
  text-shadow: var(--shadow);
}
.avatar-stack__txt strong { color: #fff; }
.rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 13px;
  color: #cfc6d6;
  text-shadow: var(--shadow);
}
.rating__stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1px;
}
.rating strong { color: #fff; }
.rating__count { color: #b4a9bf; }

/* ---- Platform icons (trust strip) -------------------------------------- */
.platforms {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.plat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: #d7cee0;
}
.plat__ic {
  width: 18px;
  height: 18px;
  flex: none;
}

/* CTA goes red in the final 5 minutes (mirrors the countdown). */
.hero-card.is-urgent .hero-card__cta {
  background: linear-gradient(95deg, #c0182f 0%, #ff3b3b 60%, #ff7a3b 100%);
  box-shadow: 0 0 22px rgba(255, 59, 59, 0.6);
}
.slots-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.slots-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--orange));
  background-size: 200% 100%;
  animation: slotShimmer 3s linear infinite;
  transition: width 1s ease;
}
@keyframes slotShimmer {
  to { background-position: 200% 0; }
}
.hero-card .downloads-live {
  display: block;
  margin: 0 0 16px;
  font-size: 13px;
}
.hero-card__cta {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  text-align: center;
  overflow: hidden;
}
.hero-card__cta::after { content: "  →"; }
.hero-card__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.hero-card__cta:hover::before { left: 150%; }
.button-ghost {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-accent);
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.25s;
}
.button-ghost::before {
  content: "\25B6";
  color: var(--gold);
  margin-right: 8px;
  font-size: 12px;
}
.button-ghost:hover {
  border-color: var(--gold);
  background: rgba(255, 45, 142, 0.1);
}

/* ---- Countdown urgent state (under 5 min) ------------------------------- */
.countdown.is-urgent {
  border-color: #ff3b3b;
  animation: urgentpulse 1.1s infinite;
}
.countdown.is-urgent .cd-label,
.countdown.is-urgent .cd-time { color: #ff5b5b; }
@keyframes urgentpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(255, 59, 59, 0); }
}

/* ---- Scroll indicator --------------------------------------------------- */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.scroll-indicator__text {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: var(--shadow);
}
.scroll-indicator__mouse {
  position: relative;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
}
.scroll-indicator:hover .scroll-indicator__mouse { border-color: var(--gold); }
.scroll-indicator:hover .scroll-indicator__text { color: #fff; }
.scroll-indicator__chevron {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: #fff;
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

/* ---- Reveal-on-scroll --------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--d1 { transition-delay: 0.12s; }
.reveal--d2 { transition-delay: 0.24s; }
.reveal--d3 { transition-delay: 0.36s; }

/* ---- Trailer modal ------------------------------------------------------ */
.trailer {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border: 1px solid var(--gold);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.75);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}
.modal-backdrop-cta.open .trailer { transform: translateY(0) scale(1); }
.trailer__video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}
.trailer .modal-close {
  z-index: 2;
  top: 6px;
  right: 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* ---- Header links ----------------------------------------------------- */
.linkheader {
  color: var(--gold);
  font-size: 12px;
  font-family: var(--font-accent);
}
.linkheader:hover {
  text-decoration: none;
  color: var(--gold-hover);
}
.linkheader--btn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  letter-spacing: inherit;
}
/* In-modal text switch link (e.g. "Already have a demo? Log in") */
.dlflow__switch {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: none;
  border: 0;
  color: #b4a9bf;
  font-family: var(--font-head);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}
.dlflow__switch:hover { color: var(--gold); }
.form-ok {
  margin: 0;
  color: #3ddc4b;
  font-family: var(--font-head);
  font-size: 13px;
}
#or,
.links-top .sep {
  color: #6b6276;
  font-size: 11px;
  font-family: var(--font-accent);
}

/* Header layout (desktop): logo left, account nav right, single tidy row */
#header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
/* The spacer absorbs the slack; the nav takes exactly what it needs.
   Bootstrap 3 gives these columns a percentage width, which is too narrow
   once the labels are in a longer language (German "ABMELDEN" overflowed). */
#header .col-md-8 { flex: 1 1 0; min-width: 0; width: auto; }
#header .col-md-2:first-child { flex: 0 0 auto; width: auto; }
.links-top {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
}
.links-top .linkheader { line-height: 1; }
.links-top .lang-switch { margin-right: 4px; }

/* ---- Urgency: countdown + live counter -------------------------------- */
.urgency {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
}
.countdown {
  display: inline-flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 8px 16px;
}
.cd-label {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold);
}
.cd-time {
  font-family: var(--font-accent);
  font-size: 28px;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.downloads-live {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--text);
  text-shadow: var(--shadow);
}
.downloads-live strong {
  color: var(--gold);
}
.downloads-live .dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-radius: 50%;
  background: #3ddc4b;
  box-shadow: 0 0 0 0 rgba(61, 220, 75, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(61, 220, 75, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(61, 220, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 75, 0); }
}

/* ---- Infos section ---------------------------------------------------- */
#infos {
  border-top: 4px solid var(--gold);
  position: relative;
  width: 100%;
  display: block;
  background: #000 linear-gradient(rgba(10, 4, 16, 0.78), rgba(10, 4, 16, 0.88)), url('images/kw9580jk7i4c1.jpg') center / cover no-repeat;
  background-blend-mode: normal;
  z-index: 99;
  padding-top: 100px;
  padding-bottom: 60px;
}
@supports (background-image: image-set(url('x') type('image/webp'))) {
  #infos {
    background-image: linear-gradient(rgba(10, 4, 16, 0.78), rgba(10, 4, 16, 0.88)),
                      image-set(url('images/kw9580jk7i4c1.webp') type('image/webp'),
                                url('images/kw9580jk7i4c1.jpg') type('image/jpeg'));
  }
}
/* ---- Platform picker (cards styled under .claim__platforms below) ----- */
.lista, .lista li { list-style: none; }

/* ---- Selected platform / product -------------------------------------- */
.title-platform {
  text-transform: uppercase;
  font-size: 35px;
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 30px;
  text-shadow: var(--shadow);
}
.selected-platform {
  color: var(--text);
}
.registered {
  font-size: 25px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 30px;
  text-shadow: var(--shadow);
}
/* ---- Trust badges ----------------------------------------------------- */
.trust-badges {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.trust-badges li {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-shadow: var(--shadow);
}

/* ---- FAQ (legacy base; premium overrides at end of file) ------------- */
.faq {
  margin-top: 16px;
  max-width: 760px;
}
.faq details {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 10px;
}
.faq summary {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}
.faq details[open] summary {
  color: var(--gold);
}
.faq p {
  margin: 10px 0 0;
  color: #ddd;
  font-family: var(--font-head);
  font-size: 14px;
}

/* ---- Back to top ------------------------------------------------------ */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1040;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(16, 9, 22, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); }
@media screen and (max-width: 1000px) {
  .back-to-top { bottom: 74px; } /* clear the sticky CTA bar */
}

/* ---- Footer ----------------------------------------------------------- */
.footer {
  background-color: var(--bg-dark);
  border-top: 4px solid var(--gold);
  font-family: var(--font-head);
  width: 100%;
}
.footer-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 20px 40px;
  text-align: center;
}
.footer-disclaimer {
  display: inline-block;
  padding: 10px 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 45, 142, 0.4);
  border-radius: 999px;
  background: rgba(255, 45, 142, 0.08);
  font-size: 12.5px;
  font-weight: 700;
  color: #f3d0e3;
}
.footer-note {
  margin: 0 auto 18px;
  max-width: 620px;
  font-size: 12px;
  line-height: 1.6;
  color: #b7adc2;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
}
.footer-links a { color: #e8e2ee; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-links__sep { color: #5a4a63; }
.footer-esrb { display: block; margin: 0 auto 16px; }
.footer-copy {
  margin: 0 auto;
  max-width: 680px;
  font-size: 11px;
  line-height: 1.6;
  color: #978ca4;
}

/* ---- Responsive ------------------------------------------------------- */
@media screen and (max-width: 1000px) {
  /* Header: logo left, language switch right; hide empty col + account links */
  #header .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header .col-md-2,
  #header .links-top { width: auto; float: none; padding: 0; }
  #header .col-md-8 { display: none; }
  .links-top { display: flex; align-items: center; gap: 4px; }
  .links-top .linkheader,
  .links-top #or,
  .links-top .sep { display: none; }
  /* ...but keep one account entry point (#36) — see .nav-account below. */
  .links-top .nav-account { display: inline-flex; }

  .action__lead { font-size: 18px; }
  .action__main { font-size: 44px; }
  .limited { font-size: 24px; }
  .hero-sub { font-size: 16px; }
  .hero-card { margin-top: 22px; }
  .hero-card .countdown .cd-time { font-size: 28px; }
  .scroll-indicator { display: none; }
}

@media screen and (min-width: 1001px) and (max-width: 1200px) {
  /* Narrow desktop / tablet landscape: keep hero + card from cramping */
  .action__main { font-size: 46px; }
  .hero-card { padding: 18px; }
  .cd-seg__num { min-width: 48px; font-size: 28px; }
}

@media screen and (max-width: 420px) {
  /* Countdown tiles + promo bar fit narrow phones */
  .cd-segments { gap: 6px; }
  .cd-seg__num { min-width: 0; font-size: 26px; padding: 9px 6px; }
  .cd-colon { font-size: 22px; margin-top: 8px; }
  .promo-bar { font-size: 11px; padding: 0 32px; line-height: 1.25; }
  .action__main { font-size: 38px; }
  .action__lead { font-size: 16px; }
  .limited { font-size: 22px; }
}

/* ---- Language switcher ------------------------------------------------ */
.lang-switch {
  display: inline-flex;
  gap: 2px;
  margin-right: 12px;
  vertical-align: middle;
}
.lang-btn {
  font-family: var(--font-accent);
  font-size: 11px;
  padding: 3px 8px;
  background: transparent;
  color: #888;
  border: 1px solid var(--border-gray);
  border-radius: 3px;
  cursor: pointer;
  transition: 0.2s;
}
.lang-btn.active,
.lang-btn:hover {
  color: #190810;
  background: var(--gold);
  border-color: var(--gold);
}

/* ---- Achievement toasts ----------------------------------------------- */
.achievements {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.achv {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  max-width: 320px;
  padding: 12px 16px;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.4s;
}
.achv.show {
  transform: translateX(0);
  opacity: 1;
}
.achv__icon {
  font-size: 22px;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(255, 46, 136, 0.6));
}
.achv__title {
  display: block;
  font-family: var(--font-accent);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
}
.achv__desc {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text);
}

/* ---- Shared CTA modal ------------------------------------------------- */
.modal-backdrop-cta {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-backdrop-cta.open {
  opacity: 1;
}
.modal-backdrop-cta[hidden] {
  display: none;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: 0;
  color: #aaa;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover {
  color: var(--text);
}

/* ---- Download flow ---------------------------------------------------- */
.dlflow,
.exitpop {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 30px 28px;
  background: linear-gradient(160deg, #161616, #050505);
  border: 1px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}
.modal-backdrop-cta.open .dlflow,
.modal-backdrop-cta.open .exitpop {
  transform: translateY(0) scale(1);
}
.dlflow__title,
.exitpop__title {
  font-family: var(--font-accent);
  color: var(--text);
  font-size: 22px;
  margin: 0 0 18px;
}
.dlflow__steps {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  counter-reset: step;
}
.dlflow__steps li {
  flex: 1;
  text-align: center;
  position: relative;
  font-family: var(--font-head);
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
}
.dlflow__steps li::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: #222;
  color: #888;
  font-weight: 700;
}
.dlflow__steps li.active {
  color: var(--gold);
}
.dlflow__steps li.active::before {
  background: var(--gold);
  color: #000;
}
.dlflow__panel p {
  font-family: var(--font-head);
  color: #ddd;
  font-size: 15px;
}
.dlflow__next,
.dlflow__start,
.dlflow__survey,
.exitpop__cta {
  display: inline-block;
  max-width: none;
  width: 100%;
  text-align: center;
  margin-top: 12px;
}
.dlflow__survey::after { content: "  \2192"; }
.dlflow__progress {
  height: 10px;
  border-radius: 5px;
  background: #222;
  overflow: hidden;
  margin-top: 16px;
}
.dlflow__progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-hover), var(--gold));
}
.dlflow__ready {
  color: var(--gold) !important;
  font-weight: 700;
}

/* ---- Exit-intent popup ------------------------------------------------ */
.exitpop {
  text-align: center;
}
.exitpop__text {
  color: #ccc;
  font-family: var(--font-head);
  font-size: 15px;
}
.exitpop__dismiss {
  display: block;
  margin: 14px auto 0;
  background: transparent;
  border: 0;
  color: #777;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

/* ---- Sticky mobile CTA bar -------------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.96);
  border-top: 2px solid var(--gold);
}
.sticky-cta[hidden] {
  display: none;
}
.sticky-cta__info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.sticky-cta__info strong {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;
}
.cd-mini {
  font-size: 18px !important;
  color: var(--gold);
}
.sticky-cta__btn {
  margin: 0;
  padding: 10px 22px;
  font-size: 16px;
  white-space: nowrap;
}
@media screen and (min-width: 1001px) {
  .sticky-cta {
    display: none !important;
  }
}

/* ---- Cookie consent --------------------------------------------------- */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.95);
  border-top: 3px solid var(--gold);
}
.cookie-consent[hidden] {
  display: none;
}
.cookie-consent p {
  margin: 0;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 13px;
  max-width: 640px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  font-family: var(--font-accent);
  font-size: 13px;
  padding: 8px 18px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}
.cookie-accept {
  background: var(--gold);
  color: #fff;
}
.cookie-accept:hover {
  background: var(--gold-hover);
}
.cookie-decline {
  background: transparent;
  color: #ccc;
  border: 1px solid var(--border-gray);
}

/* =======================================================================
   #infos — premium redesign (matches hero language)
   ======================================================================= */
.infos-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; }
/* Flow order: header · claim · steps · gallery · details · editions · FAQ */
.infos-inner > .gallery-wrap { order: 1; }
.infos-inner > .detail-grid { order: 2; }
.infos-inner > .vscompare { order: 3; }
.infos-inner > .editions { order: 4; }
.infos-inner > .faq-wrap { order: 5; }

/* Section header */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.sec-head .eyebrow { margin: 0 0 14px; }
.sec-title {
  margin: 0;
  font-family: var(--font-accent);
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}
.sec-title__accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-sub {
  margin: 16px auto 0;
  max-width: 620px;
  font-family: var(--font-head);
  font-size: 15px;
  line-height: 1.6;
  color: #bdb2c8;
}
.sec-head--sm { margin-bottom: 26px; }

/* Claim grid: platforms · panel · art */
.claim {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 50px;
}

/* Platform selector cards (override legacy .lista) */
.claim__platforms .lista { display: flex; flex-direction: column; gap: 12px; padding: 0; margin: 0; }
.claim__platforms .lista li {
  width: auto;
  height: auto;
  margin: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.claim__platforms .lista li:hover {
  border: 2px solid rgba(255, 45, 142, 0.5);
  transform: translateX(3px);
}
.claim__platforms .lista li.selected {
  border: 2px solid transparent !important;
  background-image: linear-gradient(rgba(20, 10, 26, 0.92), rgba(20, 10, 26, 0.92)), var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--glow);
}
.claim__platforms .lista button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-transform: none;
  white-space: normal;
  color: #fff;
}
.claim__platforms .plat__ic { width: 26px; height: 26px; color: #cdc3d6; flex: none; }
.claim__platforms .lista li.selected .plat__ic { color: #fff; }
.lista__name { font-family: var(--font-head); font-size: 16px; font-weight: 700; }
.lista__tag {
  margin-left: auto;
  padding: 3px 9px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0a0410;
  background: var(--gold);
  border-radius: 999px;
}
.lista__tag--soon { color: #cdc3d6; background: rgba(255, 255, 255, 0.12); }

/* Claim panel (glass) */
.claim__panel {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 26px 24px;
  background: rgba(16, 9, 22, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}
.claim__eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b4a9bf;
  margin-bottom: 10px;
}
.claim__panel .title-platform {
  font-size: 30px;
  line-height: 1;
  margin: 0 0 10px;
}
.claim__scarcity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-size: 13px;
  color: #cfc6d6;
}
.claim__scarcity .plat-slots { color: var(--orange); font-weight: 800; }
.claim__scarcity-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 106, 43, 0.6);
  animation: pulse 1.7s infinite;
  flex: none;
}
.claim__cta {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  text-align: center;
  overflow: hidden;
}
.claim__cta::after { content: "  →"; }
.claim__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.claim__cta:hover::before { left: 150%; }
.claim__panel .cta-caption { margin: 8px 0 18px; }
.claim__panel .trust-badges { justify-content: center; margin: auto 0 0; padding-top: 4px; }

/* Box art */
.claim__art { display: flex; align-items: center; justify-content: center; }
.claim__art .product-img { width: 100%; max-width: 300px; height: 380px; }

/* How it works steps */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  max-width: 760px;
  margin: 0 auto 56px;
}
.step { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #e8e2ee; }
.step__n {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 14px;
  color: #fff;
  background: var(--grad);
  box-shadow: var(--glow);
}
.step__arrow { color: var(--gold); font-size: 18px; }

/* FAQ — premium accordion (override legacy) */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq { margin-top: 6px; max-width: none; }
.faq details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq details[open] { border-color: rgba(255, 45, 142, 0.35); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-accent);
  font-size: 22px;
  line-height: 1;
  color: var(--gold);
}
.faq details[open] summary { color: var(--gold); }
.faq details[open] summary::after { content: "\2212"; }
.faq p {
  margin: 0;
  padding: 0 18px 16px;
  color: #bdb2c8;
  font-family: var(--font-head);
  font-size: 14px;
  line-height: 1.6;
}

/* Box art — GTA VI key art */
.claim__art .claim__cover {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* Detail cards: what's included + key features */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto 52px;
}
.detail-card {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
.detail-card__title {
  margin: 0 0 16px;
  font-family: var(--font-accent);
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}
.checklist, .specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li, .specs li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-size: 14px;
  color: #d7cee0;
}
.checklist li::before {
  content: "\2713";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--grad);
}
.specs li svg { width: 20px; height: 20px; flex: none; color: var(--gold); }

/* Screenshots gallery */
.gallery-wrap { margin: 0 auto 52px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__item {
  position: relative;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery__item:hover {
  border-color: rgba(255, 45, 142, 0.5);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}
.gallery__item:hover img { transform: scale(1.07); }

/* GTA V → VI comparison */
.vscompare { max-width: 760px; margin: 0 auto 52px; }
.vstable {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}
.vsrow {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-head);
  font-size: 14px;
  color: #cfc6d6;
}
.vsrow:first-child { border-top: 0; }
.vsrow--head {
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #b4a9bf;
}
.vsrow__vi-h { color: var(--gold); font-weight: 700; }
.vsrow__k { color: #fff; font-weight: 700; }
.vsrow__vi { color: #fff; font-weight: 700; }

/* Editions: Demo vs Full game */
.editions { margin: 0 auto 52px; }
.editions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
.edition-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
.edition-card--demo {
  border-color: transparent;
  background-image: linear-gradient(rgba(20, 10, 26, 0.92), rgba(20, 10, 26, 0.92)), var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--glow);
}
.edition-card__tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.edition-card--demo .edition-card__tag { background: var(--gold); color: #190810; }
.edition-card__name {
  margin: 12px 0 4px;
  font-family: var(--font-accent);
  font-size: 22px;
  color: #fff;
}
.edition-card__price {
  font-family: var(--font-accent);
  font-size: 30px;
  color: #fff;
  margin-bottom: 4px;
}
.edition-card--demo .edition-card__price strong { color: var(--gold); }
.edition-card__launch {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 12px;
  color: #b4a9bf;
}
.edition-card__launch .launch-days { color: var(--orange); }
.edition-card .checklist { margin: 14px 0 20px; }
.edition-card__cta { margin-top: auto; display: block; width: 100%; max-width: none; text-align: center; }

/* Trailer — responsive 16:9 YouTube embed */
.trailer__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.trailer__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.cookie-link { color: var(--gold); }

/* Lightbox */
.lightbox { padding: 40px; }
.lb-img {
  max-width: 92vw;
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.75);
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s;
}
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-nav:hover { background: var(--gold); border-color: var(--gold); }
.lightbox .modal-close { top: 18px; right: 26px; font-size: 34px; z-index: 2; }

/* Sign-up form (download flow step 2) */
.signup-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #cfc6d6;
}
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.signup-form input::placeholder { color: #6f6479; }
/* Keep browser autofill dark to match the theme */
.signup-form input:-webkit-autofill,
.signup-form input:-webkit-autofill:hover,
.signup-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px #1a1020 inset;
  caret-color: #fff;
}
.signup-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 45, 142, 0.18);
}
.signup-form input:user-invalid,
.signup-form input.input-invalid { border-color: #ff5b5b; box-shadow: 0 0 0 3px rgba(255, 91, 91, 0.15); }
.field-hint {
  margin-top: -2px;
  color: #ff7a7a;
  font-family: var(--font-head);
  font-size: 12px;
}
.signup-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.signup-form__submit { width: 100%; max-width: none; margin-top: 4px; }
.form-error {
  margin: 0;
  color: #ff7a7a;
  font-family: var(--font-head);
  font-size: 13px;
}
.dlflow__note {
  margin: 6px 0 0;
  color: #b4a9bf;
  font-family: var(--font-head);
  font-size: 12px;
}

/* Responsive */
@media screen and (max-width: 900px) {
  .claim { grid-template-columns: 1fr; }
  .claim__art { order: -1; }
  .claim__art .claim__cover { min-height: 220px; max-height: 280px; }
  .detail-grid { grid-template-columns: 1fr; }
  .editions__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .sec-title { font-size: 30px; }
  .step__arrow { transform: rotate(90deg); }
  .lb-nav { width: 42px; height: 42px; font-size: 24px; }
}

/* ---- Reduced motion --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   Backlog stavke 12, 14 — brojač koraka, indikator jačine lozinke.
   ============================================================ */

/* #12 — explicit "Step X of 3" above the dot breadcrumb */
.dlflow__counter {
  margin: 0 0 8px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #b4a9bf;
}
.dlflow__counter strong {
  color: var(--gold);
  font-weight: 700;
}

/* #14 — password strength meter */
.pwmeter {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: -6px 0 14px;
}
.pwmeter__track {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #2a2333;
  overflow: hidden;
}
.pwmeter__fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 2px;
  background: #8a8a8a;
  transition: width 0.18s ease, background-color 0.18s ease;
}
.pwmeter__label {
  flex: 0 0 auto;
  min-width: 8.5em;
  text-align: right;
  font-family: var(--font-head);
  font-size: 11px;
  color: #b4a9bf;
}
.pwmeter[data-level="0"] .pwmeter__fill { background: #6b6472; }
.pwmeter[data-level="1"] .pwmeter__fill { background: #e0483c; }
.pwmeter[data-level="2"] .pwmeter__fill { background: #e08a2b; }
.pwmeter[data-level="3"] .pwmeter__fill { background: #d8c22e; }
.pwmeter[data-level="4"] .pwmeter__fill { background: #3fbf72; }
.pwmeter[data-level="1"] .pwmeter__label { color: #f08a80; }
.pwmeter[data-level="4"] .pwmeter__label { color: #7fd8a4; }

@media (prefers-reduced-motion: reduce) {
  .pwmeter__fill { transition: none; }
}

/* #36 — account icon in the header. Desktop keeps the text links, so it only
   shows on the narrow layout where those are hidden (see the 1000px query). */
.nav-account {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #cfc6d8;
  text-decoration: none;
  border-radius: 50%;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav-account:hover,
.nav-account:focus-visible {
  color: var(--gold);
  background: rgba(255, 45, 142, 0.12);
}

/* ============================================================
   Language picker (server-rendered pages: legal, blog, errors,
   unsubscribe, password reset). Options are filled by i18n.js.
   ============================================================ */
.langpick { display: inline-flex; align-items: center; }
.langpick__sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.lang-select {
  /* Opaque, not rgba(): the dropdown list inherits this colour, and a
     translucent one leaves the options unreadable over the page. */
  background-color: #17111f;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23b4a9bf' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #e8e2ee;
  border-radius: 8px;
  padding: 7px 28px 7px 11px;
  font-family: var(--font-head), system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  color-scheme: dark;
  max-width: 160px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .15s ease, background-color .15s ease;
}
.lang-select:hover { background-color: #201829; border-color: rgba(255, 255, 255, .32); color: #fff; }
.lang-select:focus-visible { outline: 2px solid var(--gold, #ffb43a); outline-offset: 2px; }

/* The open list. Firefox and Chrome both read these off the option itself,
   so they need explicit opaque colours rather than inherited ones. */
.lang-select option {
  background-color: #17111f;
  color: #e8e2ee;
  padding: 8px 10px;
}
.lang-select option:checked,
.lang-select option:hover {
  background-color: var(--gold, #ffb43a);
  color: #1a1206;
  font-weight: 700;
}

/* Compact variant used in the crowded site header (shows EN / DE / FR …). */
.lang-select[data-short] {
  max-width: 78px;
  padding: 6px 24px 6px 9px;
  font-size: 12px;
  background-position: right 7px center;
}
