:root {
  --plx-ink: #050816;
  --plx-ink-2: #09122f;
  --plx-panel: rgba(255, 255, 255, 0.075);
  --plx-panel-strong: rgba(255, 255, 255, 0.115);
  --plx-line: rgba(255, 255, 255, 0.15);
  --plx-line-soft: rgba(255, 255, 255, 0.085);
  --plx-text: #ffffff;
  --plx-muted: #dbe5ff;
  --plx-muted-2: rgba(219, 229, 255, 0.72);
  --plx-cyan: #1393fb;
  --plx-blue: #2767f6;
  --plx-indigo: #3c41f1;
  --plx-violet: #6030e3;
  --plx-magenta: #8921d2;
  --plx-deep-blue: #053c8a;
  --plx-deep-purple: #452390;
  --plx-pink-deep: #820d64;
  --plx-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --plx-radius-xl: 36px;
  --plx-radius-lg: 28px;
  --plx-radius-md: 18px;
  --plx-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.plx-body {
  margin: 0;
  color: var(--plx-text);
  background: var(--plx-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.plx-body.admin-bar .plx-header { top: 32px; }
img { max-width: 100%; height: auto; }
a { color: inherit; }

.plx-skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  color: #000;
}
.plx-skip-link:focus { left: 16px; }

.plx-site-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(rgba(5, 8, 22, 0.20), rgba(5, 8, 22, 0.58)),
    url('../images/bg-pixallive-17.webp') center center / cover no-repeat;
}
.plx-site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(19, 147, 251, 0.23), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(96, 48, 227, 0.24), transparent 28%),
    radial-gradient(circle at 86% 80%, rgba(137, 33, 210, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(5, 8, 22, 0.25), rgba(5, 8, 22, 0.84));
}

.plx-pixel-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  animation: plx-grid-drift 18s linear infinite;
}

@keyframes plx-grid-drift {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-44px,-44px,0); }
}

.plx-container {
  width: min(var(--plx-container), calc(100% - 40px));
  margin-inline: auto;
}

.plx-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}
.plx-header.is-scrolled {
  padding: 10px 0;
  background: rgba(4, 8, 24, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}
.plx-header-inner {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 58px;
}
.plx-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 196px;
}
.plx-brand-logo {
  width: 206px;
  max-height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 8px 26px rgba(55, 110, 255, 0.32));
}
.plx-nav { justify-self: center; }
.plx-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(16px);
}
.plx-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.82);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.plx-menu a:hover,
.plx-menu .current-menu-item > a,
.plx-menu .current_page_item > a {
  color: #fff;
  background: linear-gradient(135deg, var(--plx-cyan), var(--plx-violet), var(--plx-magenta));
  transform: translateY(-1px);
}
.plx-header-cta,
.plx-btn {
  text-decoration: none !important;
}
.plx-header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--plx-blue), var(--plx-violet), var(--plx-magenta));
  box-shadow: 0 18px 40px rgba(96, 48, 227, 0.28);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.plx-header-cta:hover { transform: translateY(-2px); box-shadow: 0 22px 46px rgba(96, 48, 227, 0.38); }
.plx-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--plx-line);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  padding: 12px;
}
.plx-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 999px;
}

.plx-main { min-height: 70vh; }
.plx-section,
.plx-hero,
.plx-page-hero {
  position: relative;
}
.plx-section { padding: 82px 0; }
.plx-section-last { padding-bottom: 110px; }
.plx-section-frame { overflow: hidden; }

.plx-hero {
  min-height: 790px;
  display: flex;
  align-items: center;
  padding: 98px 0 86px;
}
.plx-hero::before,
.plx-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 18%, rgba(19, 147, 251, 0.26), transparent 30%),
    radial-gradient(circle at 74% 26%, rgba(96, 48, 227, 0.28), transparent 32%),
    radial-gradient(circle at 74% 76%, rgba(137, 33, 210, 0.24), transparent 34%);
}
.plx-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}
.plx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 9px 14px;
  border: 1px solid var(--plx-line);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .35px;
  backdrop-filter: blur(12px);
}
.plx-eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plx-cyan), var(--plx-magenta));
  box-shadow: 0 0 22px rgba(19,147,251,0.7);
}
.plx-hero-title,
.plx-page-title {
  margin: 0;
  color: #fff;
  font-size: clamp(56px, 8vw, 112px);
  line-height: .88;
  letter-spacing: -3px;
  font-weight: 950;
  text-wrap: balance;
}
.plx-hero-title em,
.plx-page-title em {
  display: block;
  font-style: normal;
  background: linear-gradient(92deg, #13a7ff 0%, #3c41f1 34%, #7030e6 62%, #b91fd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 12px 30px rgba(96,48,227,.25));
}
.plx-lead,
.plx-page-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--plx-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
}
.plx-page-lead { margin-inline: auto; }
.plx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.plx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 16px;
  color: #fff !important;
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.plx-btn:hover { transform: translateY(-3px); }
.plx-btn-primary {
  background: linear-gradient(135deg, var(--plx-cyan), var(--plx-violet), var(--plx-magenta));
  box-shadow: 0 20px 48px rgba(96, 48, 227, .32);
}
.plx-btn-ghost {
  background: rgba(255,255,255,.075);
  border-color: var(--plx-line);
  backdrop-filter: blur(12px);
}
.plx-btn-disabled {
  cursor: not-allowed;
  color: rgba(255,255,255,.55) !important;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
}
.plx-btn-disabled:hover { transform: none; }

.plx-hero-art {
  position: relative;
  min-height: 520px;
}
.plx-device-stack {
  position: absolute;
  inset: 6% 3%;
}
.plx-device-card {
  position: absolute;
  border-radius: 42px;
  border: 1px solid var(--plx-line);
  box-shadow: var(--plx-shadow);
  overflow: hidden;
}
.plx-card-back {
  inset: 8% 3% 16% 16%;
  transform: rotate(-8deg);
  background: linear-gradient(135deg, rgba(19,147,251,.30), rgba(137,33,210,.28)), url('../images/gradient-pixallive-18.webp') center / cover;
}
.plx-card-mid {
  inset: 16% 13% 8% 5%;
  transform: rotate(7deg);
  background: linear-gradient(135deg, rgba(5, 60, 138, .36), rgba(130, 13, 100, .28)), url('../images/bg-pixallive-17.webp') center / cover;
}
.plx-card-front {
  inset: 24% 1% 18% 18%;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(5, 8, 22, .72);
  backdrop-filter: blur(22px);
  transform: rotate(1deg);
}
.plx-card-front img {
  width: min(430px, 88%);
  max-height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 28px 60px rgba(0,0,0,.42));
}
.plx-device-logo { width: min(430px, 86%) !important; }
.plx-float-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  padding: 12px 15px;
  border: 1px solid var(--plx-line);
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(15px);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  box-shadow: var(--plx-shadow);
  animation: plx-float 4.6s ease-in-out infinite;
}
.plx-chip-one { left: 0; top: 20%; }
.plx-chip-two { right: 0; top: 52%; animation-delay: .8s; }
.plx-chip-three { left: 15%; bottom: 11%; animation-delay: 1.4s; }
@keyframes plx-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.plx-section-head { max-width: 760px; margin-bottom: 34px; }
.plx-section-head h2,
.plx-game-copy h2,
.plx-split-panel h2,
.plx-support-banner h2,
.plx-content-card h1,
.plx-content-card h2,
.plx-policy-card h2,
.plx-roadmap h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -1.4px;
  font-weight: 950;
}
.plx-feature-grid,
.plx-screen-grid,
.plx-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.plx-feature-card,
.plx-content-card,
.plx-policy-card,
.plx-contact-card,
.plx-roadmap {
  border: 1px solid var(--plx-line);
  border-radius: var(--plx-radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.plx-feature-card,
.plx-contact-card { padding: 28px; }
.plx-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--plx-cyan), var(--plx-indigo), var(--plx-magenta));
  box-shadow: 0 16px 38px rgba(60,65,241,.30);
}
.plx-feature-card h3,
.plx-contact-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
}
.plx-feature-card p,
.plx-game-copy p,
.plx-split-panel p,
.plx-support-banner p,
.plx-content-card p,
.plx-policy-card p,
.plx-contact-card p,
.plx-roadmap p {
  margin: 0;
  color: var(--plx-muted);
  line-height: 1.75;
}
.plx-contact-card a { color: #fff; font-weight: 900; text-decoration-color: rgba(255,255,255,.30); }

.plx-game-showcase {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--plx-line);
  border-radius: var(--plx-radius-xl);
  background:
    radial-gradient(circle at 12% 20%, rgba(19,147,251,.20), transparent 34%),
    radial-gradient(circle at 84% 76%, rgba(137,33,210,.20), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: var(--plx-shadow);
  backdrop-filter: blur(20px);
}
.plx-game-showcase-large { margin-top: 8px; }
.plx-game-media,
.plx-screen-card {
  min-height: 340px;
  border-radius: 28px;
  border: 1px solid var(--plx-line);
  background:
    radial-gradient(circle at 24% 24%, rgba(19,147,251,.26), transparent 34%),
    radial-gradient(circle at 74% 78%, rgba(137,33,210,.30), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  overflow: hidden;
  display: grid;
  place-items: center;
  position: relative;
}
.plx-game-media::before,
.plx-screen-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 22px;
  border: 1px dashed rgba(255,255,255,.17);
  pointer-events: none;
}
.plx-game-media img,
.plx-screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.plx-placeholder {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  place-items: center;
  padding: 32px;
  color: rgba(255,255,255,.74);
  text-align: center;
}
.plx-placeholder strong {
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 950;
}
.plx-placeholder span {
  max-width: 360px;
  color: rgba(219,229,255,.66);
  line-height: 1.6;
  font-weight: 700;
}
.plx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}
.plx-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--plx-line-soft);
  background: rgba(255,255,255,.085);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 900;
}
.plx-offset-top { margin-top: 34px; }

.plx-screen-card { min-height: 260px; }
.plx-split-panel,
.plx-support-banner,
.plx-support-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}
.plx-split-panel,
.plx-support-banner {
  grid-template-columns: 1fr auto;
  padding: 42px;
  border: 1px solid var(--plx-line);
  border-radius: var(--plx-radius-xl);
  background:
    radial-gradient(circle at 12% 20%, rgba(19,147,251,.18), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(137,33,210,.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: var(--plx-shadow);
}
.plx-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 130px);
  gap: 12px;
}
.plx-mini-stats div {
  padding: 18px;
  border: 1px solid var(--plx-line-soft);
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  text-align: center;
}
.plx-mini-stats strong {
  display: block;
  font-size: 30px;
  color: #fff;
}
.plx-mini-stats span,
.plx-support-banner span,
.plx-small-note {
  display: block;
  margin-top: 12px;
  color: rgba(219,229,255,.66);
  font-size: 13px;
  line-height: 1.55;
}

.plx-page-hero {
  padding: 110px 0 64px;
  text-align: center;
}
.plx-page-title { font-size: clamp(48px, 7vw, 92px); }
.plx-simple-page { padding: 100px 0 120px; }
.plx-page-shell { min-height: 80vh; }
.plx-content-card,
.plx-policy-card {
  max-width: 880px;
  margin-inline: auto;
  padding: 42px;
}
.plx-wp-content { color: var(--plx-muted); line-height: 1.75; }
.plx-policy-card h2 { font-size: clamp(26px, 3vw, 36px); margin-top: 32px; }
.plx-policy-card h2:first-of-type { margin-top: 0; }
.plx-policy-card a { color: #fff; font-weight: 900; }

.plx-support-layout {
  grid-template-columns: .9fr 1.1fr;
}
.plx-card-list { display: grid; gap: 18px; }
.plx-contact-grid { align-items: stretch; }

.plx-roadmap {
  margin-top: 34px;
  padding: 34px;
}
.plx-roadmap h2 { font-size: clamp(30px, 4vw, 48px); }
.plx-roadmap-list { display: grid; gap: 14px; margin-top: 24px; }
.plx-roadmap-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--plx-line-soft);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}
.plx-roadmap-item > span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--plx-cyan), var(--plx-magenta));
  box-shadow: 0 0 20px rgba(19,147,251,.6);
}
.plx-roadmap-item strong { display: block; color: #fff; margin-bottom: 6px; }

.plx-footer {
  position: relative;
  padding: 78px 0 34px;
  background: rgba(3, 7, 22, .62);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,.10);
}
.plx-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(5,8,22,.20), rgba(5,8,22,.76)),
    url('../images/bg-pixallive-17.webp') center 72% / cover no-repeat;
  opacity: .72;
}
.plx-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr .8fr;
  gap: 42px;
}
.plx-footer-brand img { width: 240px; max-height: 58px; object-fit: contain; margin-bottom: 18px; }
.plx-footer-brand p { max-width: 390px; color: var(--plx-muted); line-height: 1.75; }
.plx-footer-col h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
}
.plx-footer-col a,
.plx-footer-col span {
  display: block;
  margin: 11px 0;
  color: rgba(219,229,255,.78);
  text-decoration: none;
  line-height: 1.5;
}
.plx-footer-col a:hover { color: #fff; }
.plx-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(219,229,255,.64);
  font-size: 13px;
}

.plx-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms ease;
}
.plx-reveal.is-visible { opacity: 1; transform: translateY(0); }
.plx-delay-1 { transition-delay: 110ms; }
.plx-delay-2 { transition-delay: 220ms; }
.plx-delay-3 { transition-delay: 330ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .plx-reveal { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 1024px) {
  body.plx-body.admin-bar .plx-header { top: 0; }
  .plx-hero-grid,
  .plx-game-showcase,
  .plx-split-panel,
  .plx-support-banner,
  .plx-support-layout { grid-template-columns: 1fr; }
  .plx-hero { min-height: auto; padding-top: 78px; }
  .plx-hero-art { min-height: 460px; }
  .plx-mini-stats { grid-template-columns: repeat(3, 1fr); }
  .plx-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .plx-header-inner { grid-template-columns: auto auto; }
  .plx-brand-logo { width: 178px; }
  .plx-menu-toggle { display: block; justify-self: end; }
  .plx-header-cta { display: none; }
  .plx-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    justify-self: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
  .plx-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .plx-menu {
    display: grid;
    gap: 6px;
    border-radius: 22px;
    padding: 12px;
    background: rgba(4, 8, 24, 0.94);
    box-shadow: var(--plx-shadow);
  }
  .plx-menu a { justify-content: center; }
  .plx-feature-grid,
  .plx-screen-grid,
  .plx-contact-grid { grid-template-columns: 1fr; }
  .plx-page-hero { padding-top: 82px; }
}

@media (max-width: 560px) {
  .plx-container { width: min(100% - 24px, var(--plx-container)); }
  .plx-section { padding: 58px 0; }
  .plx-section-last { padding-bottom: 76px; }
  .plx-hero-title,
  .plx-page-title { letter-spacing: -1.4px; }
  .plx-actions { flex-direction: column; }
  .plx-btn { width: 100%; }
  .plx-hero-art { min-height: 340px; }
  .plx-card-front { inset: 25% 2% 18% 10%; padding: 26px; }
  .plx-float-chip { display: none; }
  .plx-game-showcase,
  .plx-split-panel,
  .plx-support-banner,
  .plx-content-card,
  .plx-policy-card,
  .plx-roadmap { padding: 24px; border-radius: 24px; }
  .plx-game-media { min-height: 250px; }
  .plx-screen-card { min-height: 210px; }
  .plx-mini-stats { grid-template-columns: 1fr; }
  .plx-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .plx-footer-bottom { flex-direction: column; }
}
