:root {
  --pc-bg: #13013c;
  --pc-bg-soft: #1a0648;
  --pc-surface: #1d1e2a;
  --pc-surface-2: #242636;
  --pc-surface-3: #2c2e40;
  --pc-border: rgba(255, 255, 255, 0.08);
  --pc-border-strong: rgba(255, 255, 255, 0.14);
  --pc-text: #ffffff;
  --pc-text-soft: #b8b4ce;
  --pc-text-dim: #8e89a7;
  --pc-yellow: #fcd310;
  --pc-yellow-2: #ffd84c;
  --pc-green: #58b66e;
  --pc-green-2: #4aa662;
  --pc-red: #ff4d77;
  --pc-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  --pc-shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.2);
  --pc-radius: 24px;
  --pc-radius-lg: 30px;
  --pc-max: 1440px;
  --pc-font: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--pc-font);
  color: var(--pc-text);
  line-height: 1.5;
  background:
    radial-gradient(circle at 25% 10%, rgba(168, 77, 255, 0.24), transparent 22%),
    radial-gradient(circle at 78% 14%, rgba(255, 210, 49, 0.08), transparent 18%),
    radial-gradient(circle at 68% 32%, rgba(93, 47, 228, 0.22), transparent 22%),
    linear-gradient(180deg, #39117e 0%, #22075c 20%, #12013c 42%, #11003a 60%, #0a0024 100%);
}

body.pc-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.pc-app-bg,
.pc-app-noise,
.pc-app-stars,
.pc-app-bubbles {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.pc-app-bg {
  z-index: -4;
}

.pc-app-noise {
  z-index: -3;
  opacity: 0.04;
  background-image:
    linear-gradient(transparent 0, rgba(255, 255, 255, 0.4) 50%, transparent 100%),
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  background-size: 220px 220px, 180px 180px;
  mix-blend-mode: screen;
}

.pc-app-stars {
  z-index: -2;
  overflow: hidden;
}

.pc-star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.75), 0 0 18px rgba(148, 101, 255, 0.55);
  animation: pcTwinkle linear infinite;
}

@keyframes pcTwinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

.pc-app-bubbles {
  z-index: -1;
  overflow: hidden;
}

.pc-bubble {
  position: absolute;
  bottom: -120px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 35%, rgba(130, 78, 255, 0.14) 65%, rgba(130, 78, 255, 0) 100%);
  opacity: 0.48;
  animation: pcFloat linear infinite;
}

@keyframes pcFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.48;
  }
  100% {
    transform: translateY(-120vh) translateX(18px);
    opacity: 0;
  }
}

.pc-app {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 36px), var(--pc-max));
  margin: 20px auto 36px;
}

.pc-main-shell {
  position: relative;
}

.pc-header {
  margin-bottom: 28px;
}

.pc-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 10px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(130, 66, 232, 0.98), rgba(94, 41, 185, 0.96));
  box-shadow: 0 14px 32px rgba(39, 0, 98, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.pc-brand {
  display: inline-flex;
  align-items: center;
}

.pc-brand__logo {
  max-width: 170px;
  width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.pc-brand__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffcc2a, #f39d05);
  color: #4f1f00;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pc-site-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.pc-site-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pc-topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.pc-user-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 10px 0 14px;
  border-radius: 14px;
  background: rgba(24, 7, 61, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-user-mini__text {
  display: flex;
  flex-direction: column;
  text-align: right;
  line-height: 1.2;
}

.pc-user-mini__text strong {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pc-user-mini__text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
}

.pc-user-mini__avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
}

.pc-user-mini__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-cart-pill,
.pc-pill,
.pc-mobile-toggle,
.pc-mobile-checkout,
.pc-sidebar-button,
.pc-footer__store-btn,
.pc-hero-cta,
.pc-giftcard-box__button,
.pc-button {
  appearance: none;
  border: none;
  outline: none;
}

.pc-cart-pill {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2f2100;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(180deg, var(--pc-yellow-2), var(--pc-yellow));
  box-shadow: 0 10px 20px rgba(252, 211, 16, 0.16);
}

.pc-cart-pill__count {
  min-width: 18px;
  text-align: center;
}

.pc-cart-pill__total {
  font-size: 12px;
}

.pc-pill {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.pc-pill--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-pill--solid {
  color: #2f2100;
  background: linear-gradient(180deg, var(--pc-yellow-2), var(--pc-yellow));
}

.pc-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
}

.pc-mobile-menu {
  display: none !important;
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(24, 7, 61, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-mobile-menu.is-open {
  display: grid !important;
  gap: 8px;
}

.pc-mobile-menu a,
.pc-mobile-menu button,
.pc-mobile-menu span {
  min-height: 44px;
  border-radius: 14px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 700;
}

.pc-hero {
  position: relative;
  margin-top: 16px;
}

.pc-hero-stage {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 540px);
  align-items: center;
  gap: 18px;
  min-height: 470px;
  padding: 26px 36px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 34%, rgba(203, 123, 255, 0.42), rgba(203, 123, 255, 0) 28%),
    radial-gradient(circle at 72% 40%, rgba(189, 255, 123, 0.12), rgba(189, 255, 123, 0) 20%),
    radial-gradient(circle at 78% 24%, rgba(255, 249, 189, 0.18), rgba(255, 249, 189, 0) 20%),
    linear-gradient(180deg, rgba(111, 53, 210, 0.96), rgba(74, 18, 167, 0.9) 35%, rgba(17, 0, 58, 0.88));
  box-shadow: var(--pc-shadow);
}

.pc-hero-stage::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(9, 0, 27, 0), rgba(8, 0, 25, 0.45));
}

.pc-hero-copy {
  position: relative;
  z-index: 1;
}

.pc-hero-copy__eyebrow {
  margin-bottom: 16px;
  color: #efd2ff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.pc-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(62px, 8vw, 118px);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.14);
}

.pc-hero-cta {
  margin-top: 28px;
  min-width: 290px;
  min-height: 88px;
  padding: 14px 22px;
  border-radius: 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  background: linear-gradient(180deg, var(--pc-yellow-2), var(--pc-yellow));
  color: #362000;
  box-shadow: 0 10px 28px rgba(252, 211, 16, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.pc-hero-cta span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pc-hero-cta strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pc-hero-visual {
  position: relative;
  min-height: 380px;
}

.pc-hero-orb {
  position: absolute;
  inset: 50% auto auto 54%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(248, 245, 194, 0.32) 0%, rgba(161, 255, 120, 0.08) 38%, rgba(0, 0, 0, 0) 68%);
  filter: blur(2px);
}

.pc-hero-skin {
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -46%) rotate(-8deg) scale(1.18);
  width: min(350px, 72%);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.28));
}

.pc-hero-gem {
  position: absolute;
  width: 24px;
  height: 40px;
  clip-path: polygon(50% 0%, 100% 28%, 82% 100%, 18% 100%, 0% 28%);
  background: linear-gradient(180deg, #b7ff58, #7fcc18);
  box-shadow: 0 0 12px rgba(180, 255, 82, 0.5);
  animation: pcGemFloat 6s ease-in-out infinite;
}

.pc-hero-gem--1 { top: 34px; left: 62%; }
.pc-hero-gem--2 { top: 88px; left: 84%; animation-delay: 0.8s; }
.pc-hero-gem--3 { top: 208px; left: 58%; animation-delay: 1.3s; }
.pc-hero-gem--4 { top: 248px; left: 90%; animation-delay: 2.1s; }
.pc-hero-gem--5 { top: 40px; left: 94%; animation-delay: 1.6s; }
.pc-hero-gem--6 { top: 150px; left: 72%; animation-delay: 2.8s; }

@keyframes pcGemFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(6deg);
  }
}

.pc-page-grid {
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.pc-sidebar {
  position: sticky;
  top: 18px;
}

.pc-sidebar-stack {
  display: grid;
  gap: 16px;
}

.pc-card,
.pc-sidebar-card,
.pc-product-card,
.pc-mini-card,
.pc-auth-card {
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
  background: linear-gradient(180deg, rgba(31, 32, 45, 0.98), rgba(20, 20, 31, 0.98));
  box-shadow: var(--pc-shadow-soft);
}

.pc-sidebar-card {
  overflow: hidden;
}

.pc-sidebar-card__title {
  padding: 22px 20px 12px;
  color: var(--pc-yellow);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.pc-sidebar-card__small {
  padding: 18px 20px 4px;
  color: #efe9ff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pc-sidebar-card__subtitle {
  padding: 0 20px 14px;
  color: var(--pc-text-soft);
  font-size: 13px;
}

.pc-sidebar-nav {
  display: grid;
}

.pc-nav-parent,
.pc-nav-child {
  position: relative;
  min-height: 72px;
  padding: 0 18px 0 74px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.pc-nav-parent:hover,
.pc-nav-child:hover {
  background: rgba(255, 255, 255, 0.04);
}

.pc-nav-parent__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: var(--pc-yellow);
  font-size: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.pc-nav-parent__label {
  flex: 1;
}

.pc-nav-parent__arrow {
  color: var(--pc-text-soft);
  font-size: 16px;
}

.pc-nav-parent.is-active,
.pc-nav-child.is-active {
  color: var(--pc-yellow);
  background: linear-gradient(90deg, rgba(252, 211, 16, 0.14), rgba(255, 255, 255, 0.03) 40%);
}

.pc-nav-group {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-nav-group summary {
  list-style: none;
  cursor: pointer;
}

.pc-nav-group summary::-webkit-details-marker {
  display: none;
}

.pc-nav-group[open] .pc-nav-parent__arrow {
  transform: rotate(180deg);
}

.pc-nav-children {
  display: grid;
  background: rgba(255, 255, 255, 0.03);
}

.pc-nav-child {
  min-height: 44px;
  padding-left: 26px;
  font-size: 13px;
  color: var(--pc-text-soft);
}

.pc-giftcard-box {
  padding: 0 20px 20px;
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
}

.pc-giftcard-box__input {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  color: #625f7b;
  font-size: 13px;
  letter-spacing: 0.15em;
  background: #171824;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-giftcard-box__button {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b2200;
  font-weight: 900;
  background: linear-gradient(180deg, #b56cff, #8f46ff);
}

.pc-account-box {
  padding: 0 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pc-account-box img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.pc-account-box strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.pc-account-box span,
.pc-sidebar-text {
  color: var(--pc-text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.pc-sidebar-text {
  padding: 0 20px 16px;
}

.pc-sidebar-button {
  min-height: 48px;
  margin: 0 20px 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f2100;
  font-weight: 900;
  background: linear-gradient(180deg, var(--pc-yellow-2), var(--pc-yellow));
}

.pc-page-main {
  display: grid;
  gap: 18px;
}

.pc-home-panel,
.pc-category-panel,
.pc-home-categories {
  padding: 18px;
}

.pc-home-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.pc-home-panel__eyebrow,
.pc-section-heading p,
.pc-goal-widget__label,
.pc-package-detail__eyebrow,
.pc-auth-card__eyebrow {
  color: var(--pc-yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pc-home-panel h2,
.pc-section-heading h2,
.pc-package-detail__title,
.pc-auth-card h2 {
  margin: 6px 0 0;
  color: #fff;
  font-size: 42px;
  line-height: 0.95;
  font-weight: 900;
}

.pc-goal-widget {
  position: relative;
  min-height: 120px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(95, 38, 196, 0.9), rgba(60, 24, 129, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-goal-widget__text {
  margin-top: 4px;
  color: #efe4ff;
  font-size: 13px;
  font-weight: 700;
}

.pc-goal-widget__bar {
  margin-top: 18px;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.pc-goal-widget__bar span {
  display: block;
  width: 43%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pc-yellow-2), var(--pc-yellow));
}

.pc-goal-widget__percent {
  position: absolute;
  right: 18px;
  top: 18px;
  color: var(--pc-yellow);
  font-size: 28px;
  font-weight: 900;
}

.pc-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pc-info-box {
  padding: 22px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(43, 45, 65, 0.94), rgba(34, 35, 50, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-info-box__icon {
  color: var(--pc-yellow);
  font-size: 20px;
}

.pc-info-box h3 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 800;
}

.pc-info-box p {
  margin: 0;
  color: var(--pc-text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.pc-home-bottom {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
}

.pc-top-buyer,
.pc-recent-strip {
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(59, 26, 128, 0.72), rgba(29, 14, 70, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-top-buyer__badge,
.pc-recent-strip__badge {
  display: inline-flex;
  min-height: 26px;
  padding: 0 10px;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pc-yellow-2), var(--pc-yellow));
  color: #342000;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pc-top-buyer__body {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pc-top-buyer__avatar {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(255, 82, 121, 0.9), rgba(100, 33, 162, 0.92));
}

.pc-top-buyer__body strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.pc-top-buyer__body span,
.pc-recent-strip__avatars span {
  color: var(--pc-text-soft);
  font-size: 13px;
}

.pc-recent-strip__avatars {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pc-recent-strip__avatars span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.pc-section-heading {
  margin-bottom: 18px;
}

.pc-section-heading--tight {
  margin-bottom: 12px;
}

.pc-section-heading p,
.pc-richtext,
.pc-richtext p,
.pc-richtext li,
.pc-package-detail__info p,
.pc-auth-card p {
  color: var(--pc-text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.pc-richtext ul,
.pc-richtext ol {
  margin: 12px 0 12px 20px;
}

.pc-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pc-quick-card {
  min-height: 170px;
  padding: 18px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(45, 47, 67, 0.96), rgba(28, 30, 44, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-quick-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pc-yellow);
  font-size: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.pc-quick-card__title {
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.pc-quick-card__meta {
  color: var(--pc-text-soft);
  font-size: 14px;
}

.pc-category-note {
  min-height: 44px;
  margin-bottom: 16px;
  padding: 0 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(180deg, #47be0a, #3aa300);
}

.pc-subcategory-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pc-subcategory-chip {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pc-product-card {
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(49, 50, 72, 0.98), rgba(42, 43, 62, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-product-card__top {
  position: relative;
  padding: 16px 16px 8px;
}

.pc-product-card__body {
  padding: 0 16px 16px;
}

.pc-product-card__title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}

.pc-package-media {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(38, 18, 90, 0.28), rgba(14, 6, 40, 0.16));
}

.pc-package-media img {
  width: min(92%, 240px);
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

.pc-package-media__fallback {
  width: 94px;
  height: 94px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(134, 84, 255, 0.72), rgba(77, 31, 189, 0.92));
}

.pc-discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(180deg, #ff7cb7, #ff4f86);
}

.pc-price {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pc-price__old {
  color: #e2a9c0;
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
}

.pc-price__value {
  color: var(--pc-yellow);
  font-size: 18px;
  font-weight: 900;
}

.pc-package-actions {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.pc-button {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.pc-button-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--pc-green), var(--pc-green-2));
}

.pc-button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-button-disabled {
  color: #ffd7e1;
  background: rgba(255, 77, 119, 0.16);
  border: 1px solid rgba(255, 77, 119, 0.18);
}

.pc-button-reason {
  white-space: normal;
  padding: 12px 14px;
}

.pc-product-card__description {
  margin-top: 12px;
  max-height: 200px;
  overflow: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--pc-text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.pc-product-card__description::-webkit-scrollbar {
  width: 8px;
}

.pc-product-card__description::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.pc-product-card__description::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.pc-package-detail {
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.pc-package-detail__info {
  display: grid;
  gap: 14px;
}

.pc-package-detail__extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pc-mini-card {
  padding: 18px;
}

.pc-mini-card h3 {
  margin: 0 0 10px;
  color: var(--pc-yellow);
  font-size: 18px;
  font-weight: 800;
}

.pc-mini-card p {
  margin: 0;
  color: var(--pc-text-soft);
  font-size: 14px;
}

.pc-mini-card--red {
  background: linear-gradient(180deg, rgba(73, 19, 51, 0.88), rgba(43, 13, 29, 0.96));
}

.pc-mini-card--blue {
  background: linear-gradient(180deg, rgba(35, 48, 122, 0.72), rgba(18, 18, 48, 0.94));
}

.pc-empty-state {
  padding: 34px 20px;
  border-radius: 20px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.pc-empty-state h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.pc-empty-state p {
  margin: 0;
  color: var(--pc-text-soft);
}

.pc-checkout-box {
  max-width: 520px;
}

.pc-auth-wrapper {
  display: flex;
  justify-content: center;
}

.pc-auth-card {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
}

.pc-auth-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  background: linear-gradient(180deg, rgba(53, 17, 113, 0.95), rgba(27, 8, 66, 0.98));
}

.pc-auth-card__visual img {
  width: 72%;
  max-height: 320px;
  object-fit: contain;
}

.pc-auth-card__content {
  padding: 34px;
}

.pc-auth-form-shell {
  margin-top: 20px;
}

.pc-auth-form-shell form,
.pc-auth-form-shell .form-group,
.pc-auth-form-shell .input-group,
.pc-auth-form-shell .controls,
.pc-auth-form-shell .variables {
  width: 100%;
}

.pc-auth-form-shell .form-group {
  margin-bottom: 14px !important;
}

.pc-auth-form-shell input[type='text'],
.pc-auth-form-shell input[type='email'],
.pc-auth-form-shell input[type='number'],
.pc-auth-form-shell input[type='password'],
.pc-auth-form-shell select,
.pc-auth-form-shell textarea,
input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111729;
  color: #fff;
  outline: none;
}

textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #8e89a7;
}

.pc-auth-form-shell button,
.pc-auth-form-shell .btn,
.pc-auth-form-shell input[type='submit'] {
  min-height: 50px;
  padding: 0 16px;
  border-radius: 12px;
  border: none;
  color: #362000;
  font-weight: 900;
  background: linear-gradient(180deg, var(--pc-yellow-2), var(--pc-yellow));
}

.pc-footer {
  margin-top: 28px;
}

.pc-footer__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(130, 66, 232, 0.98), rgba(94, 41, 185, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-footer__copy {
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  color: #fff4bb;
  background: rgba(0, 0, 0, 0.18);
}

.pc-footer__server {
  color: #fff;
  font-weight: 900;
}

.pc-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.pc-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 22px 4px 12px;
}

.pc-footer__grid h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.pc-footer__grid p {
  margin: 0;
  color: var(--pc-text-soft);
  font-size: 13px;
  line-height: 1.7;
}

.pc-footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pc-footer__chips a {
  color: var(--pc-text-soft);
  font-size: 13px;
  font-weight: 700;
}

.pc-footer__store-btn {
  min-width: 122px;
  min-height: 44px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #302000;
  font-weight: 900;
  background: linear-gradient(180deg, var(--pc-yellow-2), var(--pc-yellow));
}

.pc-footer__bottom {
  padding: 10px 4px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-footer__copytext,
.pc-footer__legal-note {
  color: var(--pc-text-dim);
  font-size: 12px;
  line-height: 1.65;
}

.pc-footer__legal-note {
  padding: 4px;
}

.pc-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.pc-modal.is-open {
  display: flex;
}

.pc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 0, 16, 0.72);
  backdrop-filter: blur(12px);
}

.pc-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 420px);
  padding: 30px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(31, 16, 74, 0.98), rgba(14, 5, 40, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--pc-shadow);
}

.pc-modal__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a2100;
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(180deg, var(--pc-yellow-2), var(--pc-yellow));
}

.pc-modal__dialog h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 900;
}

.pc-modal__dialog p {
  margin: 0 0 20px;
  color: var(--pc-text-soft);
}

@media (max-width: 1180px) {
  .pc-page-grid,
  .pc-product-grid,
  .pc-home-panel__head,
  .pc-home-bottom,
  .pc-package-detail,
  .pc-footer__grid,
  .pc-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pc-page-grid {
    grid-template-columns: 1fr;
  }

  .pc-sidebar {
    position: relative;
    top: auto;
  }

  .pc-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-home-panel__head,
  .pc-home-bottom,
  .pc-package-detail,
  .pc-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .pc-topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .pc-site-links,
  .pc-user-mini {
    display: none;
  }

  .pc-mobile-toggle {
    display: inline-flex;
  }

  .pc-hero-stage,
  .pc-info-grid,
  .pc-quick-grid,
  .pc-package-detail__extra {
    grid-template-columns: 1fr;
  }

  .pc-hero-stage {
    min-height: auto;
  }

  .pc-hero-visual {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .pc-app {
    width: min(calc(100% - 18px), var(--pc-max));
    margin: 10px auto 24px;
  }

  .pc-topbar {
    padding: 10px 12px;
    gap: 10px;
  }

  .pc-brand__logo {
    max-width: 130px;
  }

  .pc-cart-pill__total {
    display: none;
  }

  .pc-hero-stage {
    padding: 24px 20px;
  }

  .pc-hero-copy__eyebrow {
    font-size: 14px;
    letter-spacing: 0.28em;
  }

  .pc-hero-copy h1 {
    font-size: clamp(44px, 12vw, 72px);
  }

  .pc-hero-cta {
    width: 100%;
    min-width: 0;
  }

  .pc-product-grid {
    grid-template-columns: 1fr;
  }

  .pc-auth-card {
    grid-template-columns: 1fr;
  }

  .pc-auth-card__visual {
    min-height: 220px;
  }

  .pc-footer__bar,
  .pc-footer__grid,
  .pc-info-grid,
  .pc-home-bottom,
  .pc-quick-grid {
    grid-template-columns: 1fr;
  }

  .pc-footer__copy {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 14px;
  }

  .pc-footer__social {
    justify-content: center;
  }
}

.pc-cart-list {
  display: grid;
  gap: 16px;
}

.pc-cart-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.pc-cart-row__media .pc-package-media {
  aspect-ratio: 1 / 1;
}

.pc-cart-row__title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.pc-cart-row__description,
.pc-cart-row__description p {
  margin: 0;
  color: var(--pc-text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.pc-cart-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  color: var(--pc-text-soft);
  font-size: 14px;
}

.pc-cart-row__actions {
  display: flex;
  align-items: center;
}

.pc-checkout-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pc-checkout-embed {
  margin-top: 20px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

.pc-checkout-embed tebex-checkout {
  width: 100%;
  display: block;
}

.pc-brand__logo {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 980px) {
  .pc-cart-row {
    grid-template-columns: 1fr;
  }

  .pc-cart-row__actions {
    justify-content: flex-start;
  }
}


.pc-giftcard-box__field {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.15em;
  background: #171824;
  border: 1px solid rgba(255, 255, 255, 0.06);
  outline: none;
}

.pc-giftcard-box__field::placeholder {
  color: #625f7b;
}

.pc-sidebar-card--module {
  padding: 18px 20px;
}

.pc-module-list {
  display: grid;
  gap: 10px;
}

.pc-module-list__row strong,
.pc-topdonor-mini strong,
.pc-server-mini strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.pc-module-list__row span,
.pc-module-list__row small,
.pc-topdonor-mini span,
.pc-module-note,
.pc-server-mini,
.pc-server-mini div,
.pc-module-empty {
  color: var(--pc-text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.pc-topdonor-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pc-topdonor-mini img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.pc-goal-mini__bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  margin-top: 10px;
}

.pc-goal-mini__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--pc-yellow-2), var(--pc-yellow));
}

.pc-goal-mini__meta {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--pc-text-soft);
  font-size: 13px;
}

/* ===== FIX HEADER/LOGIN/CARRITO REFERENCIA ===== */
.pc-header-ref{margin-bottom:22px;}
.pc-topbar-ref{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:14px 18px;border-radius:26px;background:linear-gradient(180deg,#8d4dff 0%,#6d2fe6 100%);border:1px solid rgba(255,255,255,.10);box-shadow:0 16px 36px rgba(0,0,0,.25);}
.pc-logo-ref{display:flex;align-items:center;flex:0 0 auto;min-width:100px;}
.pc-logo-ref img{display:block;height:58px;width:auto;max-width:190px;object-fit:contain;}
.pc-logo-ref__fallback{display:none;align-items:center;justify-content:center;min-width:120px;height:48px;padding:0 16px;border-radius:999px;background:rgba(255,255,255,.10);color:#fff;font-weight:900;}
.pc-logo-ref.is-fallback .pc-logo-ref__fallback{display:inline-flex;}
.pc-nav-ref{display:flex;align-items:center;justify-content:center;gap:26px;flex:1 1 auto;}
.pc-nav-ref a{color:#fff;text-decoration:none;font-size:15px;font-weight:900;text-transform:uppercase;letter-spacing:.02em;transition:.2s ease;}
.pc-nav-ref a:hover{opacity:.82;}
.pc-session-ref{display:flex;align-items:center;gap:14px;flex:0 0 auto;}
.pc-session-ref__text{text-align:right;line-height:1.15;}
.pc-session-ref__name{color:#fff;font-size:16px;font-weight:900;text-transform:uppercase;max-width:170px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.pc-session-ref__sub{color:rgba(255,255,255,.78);font-size:12px;font-weight:800;}
.pc-session-ref__head{width:72px;height:72px;display:flex;align-items:center;justify-content:center;overflow:hidden;border-radius:14px;background:rgba(0,0,0,.12);box-shadow:inset 0 1px 0 rgba(255,255,255,.10);flex:0 0 auto;}
.pc-session-ref__head img{width:72px;height:72px;object-fit:cover;image-rendering:pixelated;}
.pc-session-ref__head--guest{background:rgba(0,0,0,.18);}
.pc-session-ref__head--guest span{color:#fff;font-size:34px;font-weight:900;}
.pc-login-ref{min-height:54px;padding:0 24px;display:inline-flex;align-items:center;justify-content:center;gap:10px;border-radius:16px;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.08);color:#fff;font-size:16px;font-weight:900;text-decoration:none;box-shadow:inset 0 1px 0 rgba(255,255,255,.12);white-space:nowrap;}
.pc-login-ref--logout{min-height:52px;padding:0 18px;}
.pc-cart-ref{min-height:58px;padding:0 20px;display:inline-flex;align-items:center;justify-content:center;gap:12px;border:none;border-radius:16px;background:linear-gradient(180deg,#ffd638 0%,#f4bf00 100%);color:#2d2100;font-weight:900;box-shadow:0 8px 20px rgba(0,0,0,.16);}
.pc-cart-ref__icon{font-size:22px;line-height:1;}
.pc-cart-ref__count{width:34px;height:34px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;background:#3e2400;color:#fff;font-size:20px;font-weight:900;}
.pc-cart-ref__money{font-size:16px;font-weight:900;white-space:nowrap;}

/* hero referencia */
.pc-hero-ref{margin-top:18px;border-radius:28px;overflow:hidden;background:radial-gradient(circle at 22% 20%,rgba(255,255,255,.08),transparent 30%),linear-gradient(180deg,rgba(126,58,241,.94) 0%,rgba(44,5,116,.98) 100%);min-height:470px;position:relative;box-shadow:0 22px 44px rgba(0,0,0,.25);}
.pc-hero-ref::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 84% 32%,rgba(186,255,101,.18),transparent 24%),radial-gradient(circle at 14% 90%,rgba(0,0,0,.20),transparent 30%);pointer-events:none;}
.pc-hero-ref__inner{position:relative;z-index:1;min-height:470px;display:grid;grid-template-columns:minmax(0,1fr) 420px;gap:20px;align-items:center;padding:40px 34px 34px;}
.pc-hero-ref__left{max-width:760px;}
.pc-hero-ref__eyebrow{margin-bottom:18px;color:rgba(255,255,255,.85);font-size:20px;font-weight:900;letter-spacing:.28em;text-transform:uppercase;}
.pc-hero-ref__title{margin:0;color:#fff;font-size:96px;line-height:.88;font-weight:900;text-transform:uppercase;letter-spacing:-.04em;}
.pc-hero-ref__cta{display:inline-block;margin-top:30px;padding:18px 22px;border-radius:18px;background:linear-gradient(180deg,#ffd638 0%,#f4bf00 100%);box-shadow:0 14px 28px rgba(0,0,0,.20);text-decoration:none;border:none;}
.pc-hero-ref__cta-top{color:#4d3200;font-size:15px;font-weight:900;text-transform:uppercase;}
.pc-hero-ref__cta-user{color:#2d2100;font-size:18px;font-weight:900;text-transform:uppercase;}
.pc-hero-ref__right{position:relative;min-height:370px;display:flex;align-items:center;justify-content:center;}
.pc-hero-ref__player{height:360px;width:auto;object-fit:contain;image-rendering:pixelated;filter:drop-shadow(0 18px 30px rgba(0,0,0,.28));}
.pc-hero-ref__emerald{position:absolute;width:18px;height:34px;background:linear-gradient(180deg,#c4ff58 0%,#8bdf1e 100%);border-radius:6px;transform:rotate(12deg);box-shadow:0 0 18px rgba(161,255,73,.28);}
.pc-hero-ref__emerald--1{top:34px;right:50px;}.pc-hero-ref__emerald--2{top:88px;right:12px;}.pc-hero-ref__emerald--3{top:160px;right:32px;}.pc-hero-ref__emerald--4{top:238px;right:4px;}.pc-hero-ref__emerald--5{top:118px;left:24px;}

/* modal login */
.pc-modal--login .pc-modal__overlay{background:rgba(4,0,14,.72);backdrop-filter:blur(12px);}
.pc-login-modal__dialog{position:relative;z-index:2;width:min(92vw,900px);min-height:560px;display:grid;grid-template-columns:320px 1fr;overflow:hidden;border-radius:30px;background:#101b49;box-shadow:0 30px 80px rgba(0,0,0,.45);}
.pc-login-modal__close{position:absolute;top:18px;right:18px;width:48px;height:48px;border:none;border-radius:14px;background:rgba(255,255,255,.08);color:#fff;font-size:28px;font-weight:900;z-index:3;}
.pc-login-modal__left{display:flex;align-items:center;justify-content:center;background:linear-gradient(180deg,#34146d 0%,#1d0a4a 100%);padding:30px;}
.pc-login-modal__left img{max-height:420px;width:auto;object-fit:contain;}
.pc-login-modal__right{padding:54px 40px 40px;color:#fff;}
.pc-login-modal__right h3{margin:0 0 14px;font-size:54px;line-height:.94;font-weight:900;}
.pc-login-modal__right p{margin:0 0 26px;color:rgba(255,255,255,.75);font-size:16px;line-height:1.5;max-width:560px;}
.pc-login-modal__form{display:flex;flex-direction:column;gap:18px;}
.pc-login-modal__input-wrap{display:flex;align-items:center;border-radius:22px;border:4px solid #f2cb11;background:#0a1438;overflow:hidden;min-height:92px;}
.pc-login-modal__icon{width:78px;height:78px;margin-left:12px;border-radius:18px;background:#6e5830;color:#fce6aa;display:flex;align-items:center;justify-content:center;font-size:32px;font-weight:900;flex:0 0 auto;}
.pc-login-modal__input-wrap input{flex:1 1 auto;min-height:92px;border:none;background:transparent;color:#fff;font-size:20px;padding:0 22px;outline:none;}
.pc-login-modal__input-wrap input::placeholder{color:rgba(255,255,255,.42);}
.pc-login-modal__bedrock{min-height:74px;display:flex;align-items:center;justify-content:space-between;gap:20px;border-radius:18px;background:#352b78;padding:0 22px;cursor:pointer;}
.pc-login-modal__bedrock strong{display:block;color:#fff;font-size:16px;font-weight:900;}.pc-login-modal__bedrock small{display:block;color:rgba(255,255,255,.5);font-size:12px;font-style:italic;}
.pc-login-modal__bedrock input{display:none;}
.pc-login-modal__switch{position:relative;width:72px;height:38px;border-radius:999px;background:rgba(255,255,255,.18);flex:0 0 auto;}
.pc-login-modal__switch::after{content:"";position:absolute;top:5px;left:5px;width:28px;height:28px;border-radius:50%;background:#fff;transition:.2s ease;}
#pc-login-bedrock-toggle:checked + .pc-login-modal__switch::after{transform:translateX(34px);}
.pc-login-modal__submit{min-height:84px;border:none;border-radius:22px;background:linear-gradient(180deg,#ffd70f 0%,#f2be00 100%);color:#2c2100;font-size:28px;font-weight:900;box-shadow:0 16px 30px rgba(242,190,0,.22);}

@media (max-width:1200px){.pc-nav-ref{gap:18px;}.pc-nav-ref a{font-size:13px;}.pc-hero-ref__title{font-size:74px;}.pc-hero-ref__inner{grid-template-columns:1fr 320px;}.pc-hero-ref__player{height:300px;}}
@media (max-width:980px){.pc-topbar-ref{flex-wrap:wrap;justify-content:center;}.pc-logo-ref{width:100%;justify-content:center;}.pc-nav-ref{width:100%;flex-wrap:wrap;}.pc-session-ref{width:100%;justify-content:center;}.pc-hero-ref__inner{grid-template-columns:1fr;text-align:center;}.pc-hero-ref__left{max-width:none;}.pc-hero-ref__title{font-size:62px;}.pc-hero-ref__cta{margin-left:auto;margin-right:auto;}.pc-login-modal__dialog{grid-template-columns:1fr;min-height:auto;}.pc-login-modal__left{padding:20px 20px 0;}.pc-login-modal__left img{max-height:240px;}.pc-login-modal__right{padding:28px 22px 22px;}.pc-login-modal__right h3{font-size:38px;}}
@media (max-width:640px){.pc-logo-ref img{height:48px;}.pc-nav-ref{gap:12px;}.pc-nav-ref a{font-size:12px;}.pc-session-ref{flex-wrap:wrap;}.pc-session-ref__text{text-align:center;width:100%;}.pc-hero-ref{min-height:auto;}.pc-hero-ref__inner{min-height:auto;padding:28px 20px;}.pc-hero-ref__eyebrow{font-size:15px;}.pc-hero-ref__title{font-size:46px;}.pc-hero-ref__player{height:240px;}.pc-login-modal__right h3{font-size:30px;}.pc-login-modal__submit{min-height:68px;font-size:22px;}}


/* =========================
   V6 PLANET GLOW / FLOATING
   ========================= */
@keyframes pcFloatSoft {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pcFloatGemA {
  0%,100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

@keyframes pcFloatGemB {
  0%,100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-18px) rotate(-4deg); }
}

@keyframes pcFloatGemC {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-11px) rotate(7deg); }
}

.pc-topbar-ref{
  position:relative;
  overflow:hidden;
  min-height:86px;
}

.pc-topbar-ref::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0));
  pointer-events:none;
}

.pc-logo-ref{
  position:relative;
  z-index:1;
}

.pc-logo-ref img{
  height:56px;
  animation: pcFloatSoft 4.8s ease-in-out infinite;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
}

.pc-logo-ref__fallback{
  display:none;
  align-items:center;
  justify-content:center;
  min-width:150px;
  height:56px;
  padding:0 18px;
  border-radius:18px;
  background:linear-gradient(180deg,#2d105f,#19083f);
  color:#fff;
  font-size:20px;
  font-weight:900;
  letter-spacing:.04em;
}

.pc-logo-ref.is-fallback .pc-logo-ref__fallback{
  display:inline-flex;
}

.pc-nav-ref a,
.pc-session-ref__name,
.pc-session-ref__sub,
.pc-login-ref,
.pc-cart-ref__money{
  position:relative;
  z-index:1;
}

.pc-session-ref__head,
.pc-login-ref,
.pc-cart-ref{
  position:relative;
  z-index:1;
}

.pc-login-ref,
.pc-cart-ref{
  transition:transform .18s ease, filter .18s ease, opacity .18s ease;
}

.pc-login-ref:hover,
.pc-cart-ref:hover{
  transform:translateY(-1px);
  filter:brightness(1.04);
}

.pc-hero-ref{
  min-height:420px;
  background:
    radial-gradient(circle at 66% 34%, rgba(207,255,126,.16), rgba(207,255,126,0) 18%),
    radial-gradient(circle at 22% 28%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(180deg, rgba(121,53,240,.95) 0%, rgba(39,4,109,.98) 100%);
}

.pc-hero-ref::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 78%, rgba(255,255,255,.08), transparent 12%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.10), transparent 16%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events:none;
}

.pc-hero-ref__nebula{
  position:absolute;
  border-radius:999px;
  filter:blur(18px);
  opacity:.45;
  pointer-events:none;
}

.pc-hero-ref__nebula--1{
  width:240px;
  height:240px;
  left:-40px;
  bottom:10px;
  background:radial-gradient(circle, rgba(128,185,255,.18), rgba(128,185,255,0) 72%);
}

.pc-hero-ref__nebula--2{
  width:320px;
  height:220px;
  right:120px;
  top:38px;
  background:radial-gradient(circle, rgba(198,255,111,.24), rgba(198,255,111,0) 72%);
}

.pc-hero-ref__nebula--3{
  width:260px;
  height:170px;
  left:140px;
  top:36px;
  background:radial-gradient(circle, rgba(255,255,255,.10), rgba(255,255,255,0) 72%);
}

.pc-hero-ref__inner{
  min-height:420px;
  padding:42px 30px 30px;
}

.pc-hero-ref__eyebrow{
  color:#fff;
  text-shadow:0 0 16px rgba(255,255,255,.20), 0 0 28px rgba(205,170,255,.18);
}

.pc-hero-ref__title{
  color:#fff;
  text-shadow:0 0 22px rgba(255,255,255,.18), 0 0 54px rgba(200,163,255,.12);
}

.pc-hero-ref__title .js-hero-word{
  display:inline-block;
  filter:drop-shadow(0 0 16px rgba(255,255,255,.18));
}

.pc-hero-ref__player{
  max-height:300px;
  animation: pcFloatSoft 6s ease-in-out infinite;
  filter: drop-shadow(0 16px 38px rgba(0,0,0,.32));
}

.pc-hero-ref__gem{
  position:absolute;
  width:28px;
  height:auto;
  pointer-events:none;
  filter: drop-shadow(0 10px 18px rgba(149,255,82,.24));
}

.pc-hero-ref__gem--1{ top:42px; right:64px; animation: pcFloatGemA 4.4s ease-in-out infinite; }
.pc-hero-ref__gem--2{ top:86px; right:12px; animation: pcFloatGemB 5.2s ease-in-out infinite .4s; }
.pc-hero-ref__gem--3{ top:146px; right:58px; animation: pcFloatGemC 4.9s ease-in-out infinite .8s; }
.pc-hero-ref__gem--4{ top:200px; right:6px; animation: pcFloatGemA 5.6s ease-in-out infinite 1s; }
.pc-hero-ref__gem--5{ top:112px; left:28px; animation: pcFloatGemB 4.8s ease-in-out infinite .5s; }
.pc-hero-ref__gem--6{ top:18px; right:138px; animation: pcFloatGemC 5.7s ease-in-out infinite 1.1s; }

.pc-hero-ref__cta{
  position:relative;
  overflow:hidden;
}

.pc-hero-ref__cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,0));
  pointer-events:none;
}

.pc-hero-ref__cta-top,
.pc-hero-ref__cta-user{
  position:relative;
  z-index:1;
}

.pc-app-bg{
  background:
    radial-gradient(circle at 18% 12%, rgba(136,75,255,.30) 0%, rgba(136,75,255,0) 28%),
    radial-gradient(circle at 82% 16%, rgba(255,119,216,.10) 0%, rgba(255,119,216,0) 20%),
    radial-gradient(circle at 74% 52%, rgba(157,255,74,.08) 0%, rgba(157,255,74,0) 22%),
    radial-gradient(circle at 60% 66%, rgba(78,42,187,.18) 0%, rgba(78,42,187,0) 35%),
    linear-gradient(180deg, #1a0849 0%, #0b0221 26%, #080019 52%, #060014 100%);
}

.pc-app-noise{
  opacity:.03;
}

.pc-star{
  width:2px;
  height:2px;
  box-shadow: 0 0 8px rgba(255,255,255,.85), 0 0 16px rgba(161,116,255,.45);
}

.pc-bubble{
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), rgba(255,255,255,.02) 36%, rgba(145,80,255,.10) 66%, rgba(145,80,255,0) 100%);
  border:1px solid rgba(191,150,255,.10);
}

@media (max-width: 980px){
  .pc-hero-ref__gem--5,
  .pc-hero-ref__gem--6{ display:none; }
}

@media (max-width: 640px){
  .pc-logo-ref img{ height:48px; }
  .pc-hero-ref__title{ font-size:52px; }
  .pc-hero-ref__player{ max-height:220px; }
  .pc-hero-ref__gem{ width:22px; }
}

/* ===== V7 FINAL OVERRIDES ===== */
.pc-topbar-ref{padding:16px 18px;border-radius:26px;background:linear-gradient(180deg,rgba(142,80,255,.96) 0%, rgba(110,49,231,.94) 100%);}
.pc-topbar-ref::before{opacity:.6;}
.pc-logo-ref img{height:62px;animation:pcLogoFloat 4.6s ease-in-out infinite;filter:drop-shadow(0 8px 18px rgba(0,0,0,.18));}
.pc-logo-ref.is-fallback .pc-logo-ref__fallback{display:inline-flex;}
.pc-logo-ref__fallback{display:none;align-items:center;justify-content:center;padding:0 16px;height:54px;border-radius:999px;background:rgba(0,0,0,.12);color:#fff;font-weight:900;font-size:20px;}
@keyframes pcLogoFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)}}
.pc-nav-ref a{font-size:14px;letter-spacing:.04em}
.pc-session-ref__name{font-size:18px;}
.pc-session-ref__sub{font-size:13px;}
.pc-session-ref__head{width:76px;height:76px;border-radius:16px;background:rgba(255,255,255,.10)}
.pc-session-ref__head img{width:76px;height:76px;image-rendering:pixelated;display:block}
.pc-session-ref__head--guest{background:rgba(255,255,255,.10)}
.pc-session-ref__head--guest span{display:flex;align-items:center;justify-content:center;width:100%;height:100%;}
.pc-login-ref{min-height:58px;padding:0 28px;font-size:15px;background:rgba(255,255,255,.12)}
.pc-cart-ref{min-height:60px;padding:0 18px;border-radius:18px;gap:10px;background:linear-gradient(180deg,#ffd63a 0%,#f4bf00 100%)}
.pc-cart-ref__money{font-size:14px}
.pc-cart-ref__count{width:32px;height:32px;font-size:18px}
.pc-hero-ref{margin-top:14px;min-height:410px;border-radius:28px;background:radial-gradient(circle at 58% 32%,rgba(196,255,88,.14),transparent 16%),radial-gradient(circle at 20% 16%,rgba(255,255,255,.14),transparent 22%),linear-gradient(180deg,#8d4dff 0%, #5116cb 48%, #26056d 100%);}
.pc-hero-ref::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 16% 82%,rgba(0,0,0,.22),transparent 22%),radial-gradient(circle at 86% 24%,rgba(190,255,120,.10),transparent 18%);pointer-events:none}
.pc-hero-ref__inner{min-height:410px;grid-template-columns:minmax(0,1fr) 420px;padding:34px 26px 26px;}
.pc-hero-ref__left{max-width:620px}
.pc-hero-ref__eyebrow{font-size:18px;letter-spacing:.36em;color:#f8ebff;text-shadow:0 0 18px rgba(255,255,255,.22)}
.pc-hero-ref__title{font-size:88px;line-height:.88;color:#fff;text-shadow:0 0 24px rgba(255,255,255,.18),0 0 50px rgba(230,205,255,.12)}
.pc-hero-ref__title .js-hero-word{color:#fff;text-shadow:0 0 24px rgba(255,255,255,.18),0 0 52px rgba(230,205,255,.12)}
.pc-hero-ref__cta{margin-top:24px;border-radius:18px;padding:18px 20px;background:linear-gradient(180deg,#ffd84d 0%,#f4bf00 100%);box-shadow:0 14px 30px rgba(0,0,0,.2),0 0 18px rgba(255,214,55,.16)}
.pc-hero-ref__cta-top{font-size:14px}
.pc-hero-ref__cta-user{font-size:18px}
.pc-hero-ref__player{max-height:300px;height:auto;filter:drop-shadow(0 12px 28px rgba(0,0,0,.3))}
.pc-hero-ref__right{min-height:320px}
.pc-hero-ref__gem{width:26px;height:auto;filter:drop-shadow(0 10px 16px rgba(195,255,74,.18))}
.pc-hero-ref__gem--1{top:58px;left:18px;right:auto;animation:pcFloatGemA 4.8s ease-in-out infinite}
.pc-hero-ref__gem--2{top:118px;left:52px;right:auto;animation:pcFloatGemB 5.4s ease-in-out infinite .5s}
.pc-hero-ref__gem--3{top:182px;left:10px;right:auto;animation:pcFloatGemC 5.8s ease-in-out infinite .9s}
.pc-hero-ref__gem--4{top:44px;right:32px;left:auto;animation:pcFloatGemA 5.2s ease-in-out infinite .3s}
.pc-hero-ref__gem--5{top:108px;right:-2px;left:auto;display:block;animation:pcFloatGemB 5.6s ease-in-out infinite .7s}
.pc-hero-ref__gem--6{top:176px;right:28px;left:auto;display:block;animation:pcFloatGemC 5.1s ease-in-out infinite 1.1s}
.pc-login-modal__dialog{width:min(92vw, 960px);min-height:560px;border-radius:32px;background:linear-gradient(180deg,#15224f 0%,#0f1c46 100%)}
.pc-login-modal__left{position:relative;padding:26px 16px;background:linear-gradient(180deg,#40197f 0%,#251159 100%)}
.pc-login-modal__left::before,.pc-login-modal__left::after{content:"";position:absolute;inset:24px auto 24px 50%;width:180px;background:transparent;border-radius:24px;transform:translateX(-50%);pointer-events:none}
.pc-login-modal__left::before{box-shadow:-10px 0 0 rgba(135,90,255,.14),10px 0 0 rgba(94,54,235,.18);animation:pcLoginGhostA 2.8s ease-in-out infinite}
.pc-login-modal__left::after{box-shadow:-18px 0 0 rgba(159,110,255,.10),18px 0 0 rgba(84,44,214,.14);animation:pcLoginGhostB 3.6s ease-in-out infinite}
@keyframes pcLoginGhostA{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(calc(-50% + 4px)) translateY(-4px)}}
@keyframes pcLoginGhostB{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(calc(-50% - 4px)) translateY(4px)}}
#pc-login-preview-body{position:relative;z-index:2;max-height:430px;animation:pcLoginBodyFloat 4.4s ease-in-out infinite;image-rendering:pixelated}
@keyframes pcLoginBodyFloat{0%,100%{transform:translateY(0) rotate(-1deg)}50%{transform:translateY(-8px) rotate(1deg)}}
.pc-login-modal__right h3{font-size:52px;line-height:.96}
.pc-login-modal__input-wrap{min-height:86px;border:4px solid #f3cc19;background:#091437;border-radius:22px}
.pc-login-modal__avatar{width:54px;height:54px;margin-left:14px;border-radius:12px;image-rendering:pixelated;flex:0 0 auto;background:rgba(255,255,255,.06)}
.pc-login-modal__icon{display:none}
.pc-login-modal__input-wrap input{min-height:86px;font-size:18px}
.pc-login-modal__bedrock{min-height:70px;background:#31286b}
.pc-login-modal__submit{min-height:82px;border-radius:22px}
@media (max-width:1200px){.pc-hero-ref__title{font-size:76px}.pc-hero-ref__inner{grid-template-columns:minmax(0,1fr) 360px}}
@media (max-width:980px){.pc-topbar-ref{flex-wrap:wrap;justify-content:center}.pc-logo-ref{width:100%;justify-content:center}.pc-nav-ref{width:100%;flex-wrap:wrap;gap:14px}.pc-session-ref{width:100%;justify-content:center}.pc-hero-ref__inner{grid-template-columns:1fr;text-align:center}.pc-hero-ref__left{max-width:none}.pc-hero-ref__title{font-size:60px}.pc-hero-ref__cta{margin-left:auto;margin-right:auto}.pc-login-modal__dialog{grid-template-columns:1fr;min-height:auto}.pc-login-modal__left{padding:18px 18px 0}.pc-login-modal__left::before,.pc-login-modal__left::after{display:none}.pc-login-modal__right{padding:28px 22px 24px}.pc-login-modal__right h3{font-size:38px}}
@media (max-width:640px){.pc-logo-ref img{height:50px}.pc-nav-ref a{font-size:12px}.pc-session-ref__text{text-align:center}.pc-login-ref{padding:0 18px}.pc-cart-ref{padding:0 14px}.pc-hero-ref__title{font-size:48px}.pc-hero-ref__player{max-height:220px}.pc-hero-ref__gem{width:20px}.pc-login-modal__submit{min-height:68px;font-size:22px}}



/* ===== V8 FINAL OVERRIDES ===== */
.pc-topbar-ref{padding:14px 22px;border-radius:30px;background:linear-gradient(180deg,rgba(151,92,255,.96) 0%,rgba(113,56,235,.96) 100%);border:1px solid rgba(255,255,255,.10);box-shadow:0 18px 42px rgba(0,0,0,.26)}
.pc-logo-ref{display:flex;align-items:center;justify-content:flex-start;min-width:220px}
.pc-logo-ref img{height:66px;max-width:none;animation:pcLogoFloat 4.8s ease-in-out infinite;filter:drop-shadow(0 10px 18px rgba(0,0,0,.22))}
.pc-nav-ref{gap:22px}
.pc-nav-ref a{font-size:15px;font-weight:900;letter-spacing:.03em;color:#fff;text-shadow:0 1px 0 rgba(0,0,0,.18)}
.pc-session-ref{gap:14px}
.pc-session-ref__text{text-align:right}
.pc-session-ref__name{font-size:21px;line-height:1;font-weight:900;color:#fff;max-width:220px}
.pc-session-ref__sub{font-size:13px;font-weight:800;color:#ede2ff;line-height:1.05}
.pc-session-ref__head{position:relative;width:78px;height:78px;border-radius:18px;background:rgba(255,255,255,.10);overflow:hidden;display:flex;align-items:flex-end;justify-content:center}
.pc-session-ref__head-glow{position:absolute;inset:auto 8px 8px 8px;height:22px;background:rgba(164,112,255,.26);filter:blur(14px);border-radius:999px;pointer-events:none}
.pc-session-ref__head--logged img{width:84px;height:104px;object-fit:contain;object-position:center bottom;image-rendering:pixelated;position:relative;top:8px}
.pc-session-ref__head--guest img{width:82px;height:104px;object-fit:contain;object-position:center bottom;image-rendering:pixelated;position:relative;top:8px;filter:grayscale(.18) drop-shadow(0 8px 16px rgba(0,0,0,.28))}
.pc-login-ref{min-height:60px;padding:0 30px;border-radius:18px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);font-size:18px;font-weight:900;color:#fff;display:inline-flex;align-items:center;gap:12px;text-decoration:none;box-shadow:inset 0 1px 0 rgba(255,255,255,.08)}
.pc-login-ref span{color:#ffd638;font-size:22px;line-height:1}
.pc-cart-ref{min-height:60px;padding:0 18px;border-radius:18px;gap:12px;background:linear-gradient(180deg,#ffd638 0%,#f4bf00 100%);color:#47241c;box-shadow:0 8px 0 rgba(115,54,16,.28),0 10px 24px rgba(0,0,0,.18)}
.pc-cart-ref__icon{font-size:22px;color:#572c09;display:flex;align-items:center}
.pc-cart-ref__count{width:34px;height:34px;background:#3d2209;color:#ffd638;font-size:19px;font-weight:900;border-radius:999px;display:flex;align-items:center;justify-content:center}
.pc-cart-ref__money{font-size:15px;font-weight:900;color:#4a2908;display:flex;align-items:baseline;gap:5px}
.pc-cart-ref__money small{font-size:12px;font-weight:700;color:#6a430c}
.pc-hero-ref{margin-top:20px;position:relative;overflow:hidden;min-height:548px;border-radius:34px;background:linear-gradient(180deg,#8c4dff 0%,#5f1ce0 44%,#28056f 100%)}
.pc-hero-ref::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,0) 34%),radial-gradient(circle at 70% 34%,rgba(196,255,88,.16),transparent 16%),radial-gradient(circle at 26% 16%,rgba(255,255,255,.10),transparent 18%),radial-gradient(circle at 16% 94%,rgba(0,0,0,.24),transparent 26%),radial-gradient(circle at 92% 26%,rgba(190,255,120,.11),transparent 18%);pointer-events:none}
.pc-hero-ref__scene{position:absolute;inset:0;background:radial-gradient(circle at 70% 30%,rgba(232,255,184,.14) 0%,rgba(232,255,184,0) 22%),linear-gradient(180deg,rgba(42,13,110,.12),rgba(8,1,28,.28));}
.pc-hero-ref__scene::before,.pc-hero-ref__scene::after{content:"";position:absolute;bottom:-18px;width:31%;height:56%;background:radial-gradient(circle at 50% 40%,rgba(22,12,67,.78),rgba(22,12,67,.92) 48%,rgba(22,12,67,0) 72%);filter:blur(16px);opacity:.85}
.pc-hero-ref__scene::before{left:-2%}
.pc-hero-ref__scene::after{right:-3%;height:52%;opacity:.7}
.pc-hero-ref__nebula{opacity:.55;filter:blur(24px)}
.pc-hero-ref__inner{position:relative;z-index:2;min-height:548px;display:grid;grid-template-columns:minmax(0,1fr) 520px;align-items:center;padding:54px 42px 44px}
.pc-hero-ref__left{max-width:780px;background:none !important;box-shadow:none !important;border:none !important}
.pc-hero-ref__eyebrow{display:block;margin:0 0 18px;font-size:22px;font-weight:900;letter-spacing:.34em;color:#f6dbff;text-shadow:0 0 20px rgba(255,255,255,.22),0 0 42px rgba(213,177,255,.18)}
.pc-hero-ref__title{margin:0;font-size:112px;line-height:.88;font-weight:900;letter-spacing:-.05em;color:#fff;text-shadow:0 0 28px rgba(255,255,255,.18),0 0 56px rgba(255,255,255,.10);background:none !important;box-shadow:none !important;border:none !important}
.pc-hero-ref__title .js-hero-word{display:inline-block;color:#fff}
.pc-hero-ref__cta{display:inline-block;margin-top:44px;padding:20px 28px;border:none;border-radius:24px;background:linear-gradient(180deg,#ffd84d 0%,#f4bf00 100%);box-shadow:0 8px 0 rgba(124,44,10,.30),0 20px 34px rgba(0,0,0,.20),0 0 18px rgba(255,214,55,.22);text-decoration:none}
.pc-hero-ref__cta::before{display:none}
.pc-hero-ref__cta-top{font-size:17px;font-weight:900;line-height:1;color:#4b2407;text-transform:uppercase}
.pc-hero-ref__cta-user{margin-top:4px;font-size:17px;font-weight:700;line-height:1.05;color:#6d4210;text-transform:uppercase}
.pc-hero-ref__right{position:relative;min-height:420px;display:flex;align-items:center;justify-content:center}
.pc-hero-ref__player{max-height:392px;height:auto;image-rendering:pixelated;animation:pcFloatSoft 6s ease-in-out infinite;filter:drop-shadow(0 22px 34px rgba(0,0,0,.30))}
.pc-hero-ref__gem{width:30px;height:auto;filter:drop-shadow(0 12px 18px rgba(195,255,74,.24));z-index:2}
.pc-hero-ref__gem--1{top:62px;left:98px;right:auto;animation:pcFloatGemA 4.8s ease-in-out infinite}
.pc-hero-ref__gem--2{top:132px;left:52px;right:auto;animation:pcFloatGemB 5.4s ease-in-out infinite .4s}
.pc-hero-ref__gem--3{top:224px;left:96px;right:auto;animation:pcFloatGemC 5.1s ease-in-out infinite .8s}
.pc-hero-ref__gem--4{top:42px;right:52px;left:auto;animation:pcFloatGemA 5.3s ease-in-out infinite .3s}
.pc-hero-ref__gem--5{top:116px;right:14px;left:auto;animation:pcFloatGemB 5.6s ease-in-out infinite .7s}
.pc-hero-ref__gem--6{top:206px;right:52px;left:auto;animation:pcFloatGemC 5.0s ease-in-out infinite 1.1s}
.pc-home-bottom{grid-template-columns:1.05fr .95fr;align-items:stretch}
.pc-top-buyer,.pc-recent-strip{position:relative;overflow:hidden;height:188px;padding:18px 20px;border-radius:22px;background:linear-gradient(135deg,rgba(102,33,162,.22) 0%,rgba(19,1,60,.30) 100%);border:1px solid rgba(252,211,16,.12)}
.pc-top-buyer::before{content:"€";position:absolute;right:26px;top:50%;transform:translateY(-50%);font-size:120px;font-weight:900;color:rgba(252,211,16,.07);pointer-events:none}
.pc-top-buyer__skin{position:absolute;left:14px;bottom:-6px;width:126px;height:auto;image-rendering:pixelated;filter:drop-shadow(0 10px 20px rgba(255,255,255,.10));z-index:2}
.pc-top-buyer__skin--empty{display:flex;align-items:center;justify-content:center;width:76px;height:76px;border-radius:18px;background:linear-gradient(180deg,#ff5b8a,#7d2fe4);color:#fff;font-size:32px;left:20px;bottom:20px}
.pc-top-buyer__content{position:relative;z-index:2;margin-left:150px;padding-top:12px;display:flex;flex-direction:column;gap:8px}
.pc-top-buyer__badge,.pc-recent-strip__badge{display:inline-flex;align-items:center;gap:5px;width:max-content;min-height:28px;padding:0 12px;border-radius:8px;background:#ffd638;color:#000;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.04em}
.pc-top-buyer__content strong{display:block;color:#fff;font-size:26px;font-weight:900;line-height:1.02}
.pc-top-buyer__content span{display:block;color:#cdbfe8;font-size:16px;font-weight:600;line-height:1.2}
.pc-recent-strip::before{content:'\F0FEF';font-family:'Material Design Icons';position:absolute;right:20px;top:50%;transform:translateY(-50%);font-size:108px;color:rgba(252,211,16,.06);pointer-events:none}
.pc-recent-strip__head{display:flex;align-items:center;justify-content:space-between;gap:10px;position:relative;z-index:2}
.pc-recent-strip__cta{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,.56);font-size:11px;font-weight:700}.pc-recent-strip__cta i,.pc-recent-strip__cta strong{color:#ffd638}
.pc-recent-strip__avatars{display:flex;flex-wrap:nowrap;gap:14px;position:relative;z-index:2;overflow:visible;padding:12px 4px 0;margin-top:0}
.pc-recent-payment-item{display:flex;flex-direction:column;align-items:center;gap:4px;flex-shrink:0}
.pc-recent-payment-item__avatar{width:48px;height:48px;border-radius:10px;overflow:hidden;background:rgba(0,0,0,.32);border:2px solid rgba(255,255,255,.10);transition:all .2s ease}
.pc-recent-payment-item__avatar img{width:100%;height:100%;display:block;image-rendering:pixelated}
.pc-recent-payment-item:hover .pc-recent-payment-item__avatar{transform:scale(1.08);border-color:#ffd638}
.pc-recent-payment-item span{display:block;max-width:52px;text-align:center;color:#d7d0ef;font-size:12px;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.pc-recent-payment-item:first-child span{color:#ffd638}
.pc-login-modal__dialog{width:min(92vw, 820px);min-height:560px;border-radius:32px;background:linear-gradient(180deg,#15224f 0%,#0f1c46 100%);overflow:hidden}
.pc-login-modal__left{position:relative;padding:28px 12px;background:linear-gradient(180deg,#40197f 0%,#251159 100%);display:flex;align-items:center;justify-content:center;overflow:hidden}
.pc-login-modal__glow{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);width:92px;height:24px;background:rgba(168,85,247,.28);filter:blur(18px);border-radius:999px}
.pc-login-modal__ghost{position:relative;width:150px;height:240px;display:flex;align-items:center;justify-content:center;z-index:2}
.pc-login-modal__ghost-layer{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:140px;height:auto;image-rendering:pixelated}
.pc-login-modal__ghost-layer--main{opacity:.56;filter:grayscale(1) drop-shadow(0 10px 24px rgba(0,0,0,.40));animation:pcLoginFloatGhost 3s ease-in-out infinite}
.pc-login-modal__ghost-layer--a{opacity:.20;mix-blend-mode:screen;filter:hue-rotate(-50deg) saturate(2.1);animation:pcLoginGlitchA .55s ease-in-out infinite}
.pc-login-modal__ghost-layer--b{opacity:.20;mix-blend-mode:screen;filter:hue-rotate(65deg) saturate(2.1);animation:pcLoginGlitchB .55s ease-in-out infinite .12s}
#pc-login-preview-body{position:relative;z-index:3;max-height:430px;image-rendering:pixelated;animation:pcLoginBodyFloat 4.4s ease-in-out infinite;filter:drop-shadow(0 12px 26px rgba(0,0,0,.32))}
@keyframes pcLoginFloatGhost{0%,100%{transform:translate(-50%,-50%) translateY(0)}50%{transform:translate(-50%,-50%) translateY(-10px)}}
@keyframes pcLoginGlitchA{0%,100%{transform:translate(-50%,-50%)}20%{transform:translate(calc(-50% - 3px),calc(-50% + 2px))}40%{transform:translate(calc(-50% + 3px),calc(-50% - 2px))}60%{transform:translate(calc(-50% - 2px),calc(-50% - 1px))}80%{transform:translate(calc(-50% + 2px),calc(-50% + 1px))}}
@keyframes pcLoginGlitchB{0%,100%{transform:translate(-50%,-50%)}20%{transform:translate(calc(-50% + 3px),calc(-50% - 2px))}40%{transform:translate(calc(-50% - 3px),calc(-50% + 2px))}60%{transform:translate(calc(-50% + 2px),calc(-50% + 1px))}80%{transform:translate(calc(-50% - 2px),calc(-50% - 1px))}}
@keyframes pcLoginBodyFloat{0%,100%{transform:translateY(0) rotate(-1deg)}50%{transform:translateY(-8px) rotate(1deg)}}
.pc-login-modal__right{padding:36px 36px 32px;background:linear-gradient(180deg,#15224f 0%,#0f1c46 100%)}
.pc-login-modal__right h3{font-size:58px;line-height:.94;color:#fff;margin:0 0 14px;font-weight:900}
.pc-login-modal__right p{font-size:18px;line-height:1.45;color:rgba(255,255,255,.46);margin:0 0 26px}
.pc-login-modal__input-wrap{min-height:88px;border:4px solid #f3cc19;background:#091437;border-radius:22px;display:flex;align-items:center;overflow:hidden}
.pc-login-modal__avatar{width:56px;height:56px;margin-left:14px;border-radius:8px;image-rendering:pixelated;flex:0 0 auto;background:rgba(255,255,255,.06)}
.pc-login-modal__input-wrap input{flex:1;min-height:88px;padding:0 18px;background:transparent;border:none;color:#fff;font-size:20px;font-weight:600;outline:none}
.pc-login-modal__input-wrap input::placeholder{color:rgba(255,255,255,.26)}
.pc-login-modal__bedrock{min-height:74px;margin-top:16px;border-radius:16px;padding:0 18px;background:rgba(72,44,139,.48);border:1px solid rgba(168,85,247,.16);display:flex;align-items:center;justify-content:space-between;gap:14px;position:relative;overflow:hidden}.pc-login-modal__bedrock::before{content:'🎮';position:absolute;right:66px;top:50%;transform:translateY(-50%);font-size:26px;opacity:.08;pointer-events:none}
.pc-login-modal__bedrock span{display:flex;flex-direction:column;line-height:1.15}.pc-login-modal__bedrock strong{font-size:16px;color:#fff;font-weight:800}.pc-login-modal__bedrock small{font-size:12px;color:rgba(255,255,255,.45);font-style:italic}
.pc-login-modal__bedrock input{position:absolute;opacity:0;pointer-events:none}
.pc-login-modal__switch{position:relative;width:52px;height:28px;border-radius:999px;background:rgba(255,255,255,.10);border:2px solid rgba(255,255,255,.14);flex:0 0 auto;transition:all .25s ease}
.pc-login-modal__switch::before{content:'';position:absolute;top:3px;left:3px;width:16px;height:16px;border-radius:50%;background:linear-gradient(135deg,#fff,#e4e4e4);box-shadow:0 2px 4px rgba(0,0,0,.2);transition:all .25s ease}
.pc-login-modal__bedrock input:checked + .pc-login-modal__switch{background:linear-gradient(135deg,#ffd638,#fac108);border-color:#ffd638;box-shadow:0 0 12px rgba(252,211,16,.24)}
.pc-login-modal__bedrock input:checked + .pc-login-modal__switch::before{left:27px}
.pc-login-modal__submit{margin-top:18px;min-height:86px;border:none;border-radius:22px;background:linear-gradient(180deg,#ffd638 0%,#fac108 100%);color:#47241c;font-size:22px;font-weight:900;letter-spacing:.05em;box-shadow:0 16px 28px rgba(252,211,16,.24);cursor:pointer}
.pc-login-modal__close{top:16px;right:16px;z-index:10}
@media (max-width:1200px){.pc-logo-ref img{height:58px}.pc-hero-ref__inner{grid-template-columns:minmax(0,1fr) 420px}.pc-hero-ref__title{font-size:92px}.pc-hero-ref__player{max-height:340px}}
@media (max-width:980px){.pc-topbar-ref{flex-wrap:wrap;justify-content:center}.pc-logo-ref{width:100%;justify-content:center}.pc-nav-ref{width:100%;flex-wrap:wrap;justify-content:center}.pc-session-ref{width:100%;justify-content:center}.pc-session-ref__text{text-align:center}.pc-hero-ref{min-height:auto}.pc-hero-ref__inner{grid-template-columns:1fr;min-height:auto;padding:42px 28px 28px;text-align:center}.pc-hero-ref__left{max-width:none}.pc-hero-ref__cta{margin-left:auto;margin-right:auto}.pc-hero-ref__right{min-height:320px}.pc-hero-ref__gem--1{left:14%}.pc-hero-ref__gem--2{left:8%}.pc-hero-ref__gem--3{left:14%}.pc-hero-ref__gem--4{right:12%}.pc-hero-ref__gem--5{right:6%}.pc-hero-ref__gem--6{right:12%}.pc-login-modal__dialog{grid-template-columns:1fr;min-height:auto}.pc-login-modal__right h3{font-size:40px}}
@media (max-width:640px){.pc-topbar-ref{padding:14px 16px}.pc-logo-ref img{height:52px}.pc-nav-ref{gap:14px}.pc-nav-ref a{font-size:12px}.pc-login-ref{min-height:56px;padding:0 18px;font-size:16px}.pc-session-ref__head{width:74px;height:74px}.pc-session-ref__head--guest img,.pc-session-ref__head--logged img{width:74px;height:96px}.pc-cart-ref{padding:0 14px}.pc-hero-ref__eyebrow{font-size:19px;letter-spacing:.22em}.pc-hero-ref__title{font-size:70px}.pc-hero-ref__right{min-height:250px}.pc-hero-ref__player{max-height:250px}.pc-hero-ref__gem{width:24px}.pc-home-bottom{grid-template-columns:1fr}.pc-top-buyer,.pc-recent-strip{height:auto;min-height:170px}.pc-recent-strip__cta{display:none}.pc-login-modal__right{padding:26px 22px 22px}.pc-login-modal__right h3{font-size:32px}.pc-login-modal__right p{font-size:15px}.pc-login-modal__input-wrap{min-height:78px}.pc-login-modal__input-wrap input{min-height:78px;font-size:18px}.pc-login-modal__submit{min-height:74px;font-size:20px}}

/* ===== V8.2 POLISH OVERRIDES ===== */
.pc-topbar-ref{
  padding:16px 24px;
  border-radius:30px;
  background:linear-gradient(180deg,rgba(151,92,255,.96) 0%,rgba(113,56,235,.96) 100%);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 42px rgba(0,0,0,.26);
}
.pc-logo-ref{min-width:230px}
.pc-logo-ref img{
  height:70px;
  max-width:none;
  animation:pcLogoFloat 4.8s ease-in-out infinite;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.22));
}
@keyframes pcLogoFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
.pc-logo-ref.is-fallback .pc-logo-ref__fallback{display:flex}
.pc-logo-ref.is-fallback img{display:none}
.pc-nav-ref a{
  transition:transform .22s ease, filter .22s ease, opacity .22s ease;
}
.pc-nav-ref a:hover{
  transform:translateY(-1px) scale(1.04);
  filter:drop-shadow(0 0 10px rgba(255,255,255,.25));
}
.pc-login-ref,
.pc-cart-ref,
.pc-hero-ref__cta,
.pc-sidebar-button,
.pc-giftcard-box__button{
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease, background .22s ease;
}
.pc-login-ref:hover,
.pc-cart-ref:hover,
.pc-hero-ref__cta:hover,
.pc-sidebar-button:hover,
.pc-giftcard-box__button:hover{
  transform:translateY(-2px) scale(1.03);
  filter:brightness(1.02);
  box-shadow:0 18px 34px rgba(0,0,0,.24),0 0 26px rgba(252,211,16,.16);
}
.pc-login-ref:active,
.pc-cart-ref:active,
.pc-hero-ref__cta:active,
.pc-sidebar-button:active{
  transform:translateY(0) scale(.99);
}
.pc-session-ref__head--guest img{
  width:84px;
  height:108px;
  object-fit:contain;
  object-position:center bottom;
  image-rendering:pixelated;
  position:relative;
  top:10px;
  filter:grayscale(.35) drop-shadow(0 8px 16px rgba(0,0,0,.32));
}
.pc-session-ref__head--logged img{
  width:84px;
  height:108px;
  top:10px;
}

.pc-hero-ref{
  margin-top:26px;
  min-height:610px;
  background:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  overflow:visible;
}
.pc-hero-ref::before{display:none !important}
.pc-hero-ref__scene{
  position:absolute;
  inset:0;
  border-radius:0;
  background:
    radial-gradient(circle at 64% 30%, rgba(201,255,112,.20), rgba(201,255,112,0) 18%),
    radial-gradient(circle at 48% 20%, rgba(255,255,255,.08), rgba(255,255,255,0) 18%),
    linear-gradient(180deg, rgba(156,85,255,.14) 0%, rgba(120,55,229,.08) 42%, rgba(0,0,0,0) 100%);
  pointer-events:none;
}
.pc-hero-ref__scene::before,
.pc-hero-ref__scene::after{
  content:"";
  position:absolute;
  bottom:-24px;
  width:34%;
  height:58%;
  background:radial-gradient(circle at 50% 40%, rgba(24,13,74,.72), rgba(24,13,74,.90) 50%, rgba(24,13,74,0) 74%);
  filter:blur(16px);
  opacity:.95;
}
.pc-hero-ref__scene::before{left:-4%}
.pc-hero-ref__scene::after{right:-4%;height:54%;opacity:.8}
.pc-hero-ref__nebula{opacity:.48}
.pc-hero-ref__inner{
  min-height:610px;
  grid-template-columns:minmax(0,1.05fr) 560px;
  padding:44px 10px 10px;
  align-items:center;
}
.pc-hero-ref__left{
  max-width:740px;
  padding-left:22px;
}
.pc-hero-ref__eyebrow{
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:.36em;
  color:#f5cfff;
  text-shadow:0 0 18px rgba(255,255,255,.18),0 0 42px rgba(205,167,255,.16);
}
.pc-hero-ref__title{
  margin:0;
  font-size:124px;
  line-height:.9;
  letter-spacing:-.06em;
  color:#fff;
  text-shadow:0 0 26px rgba(255,255,255,.12);
}
.pc-hero-ref__title .js-hero-word{display:inline-block;color:#fff}
.pc-hero-ref__cta{
  margin-top:34px;
  padding:20px 40px;
  border-radius:24px;
  background:linear-gradient(180deg,#ffd84d 0%,#f4bf00 100%);
  box-shadow:0 7px 0 rgba(135,56,11,.35),0 18px 28px rgba(0,0,0,.20),0 0 26px rgba(255,214,55,.16);
}
.pc-hero-ref__cta-top{
  font-size:18px;
  font-weight:900;
  line-height:1;
  color:#442005;
}
.pc-hero-ref__cta-user{
  margin-top:6px;
  font-size:17px;
  font-weight:700;
  color:#6b420c;
}
.pc-hero-ref__right{
  min-height:460px;
  justify-content:flex-end;
  padding-right:10px;
}
.pc-hero-ref__player{
  max-height:440px;
  width:auto;
  object-fit:contain;
  image-rendering:auto;
  filter:drop-shadow(0 28px 38px rgba(0,0,0,.28));
  animation:pcFloatSoft 6s ease-in-out infinite;
}
@keyframes pcFloatSoft{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.pc-hero-ref__gem{
  width:34px;
  filter:drop-shadow(0 10px 16px rgba(173,255,90,.24));
}
.pc-hero-ref__gem--1{top:84px;left:124px;animation:pcFloatGemA 4.8s ease-in-out infinite}
.pc-hero-ref__gem--2{top:172px;left:78px;animation:pcFloatGemB 5.4s ease-in-out infinite .4s}
.pc-hero-ref__gem--3{top:316px;left:126px;animation:pcFloatGemC 5.1s ease-in-out infinite .8s}
.pc-hero-ref__gem--4{top:70px;right:58px;animation:pcFloatGemA 5.3s ease-in-out infinite .3s}
.pc-hero-ref__gem--5{top:170px;right:22px;animation:pcFloatGemB 5.6s ease-in-out infinite .7s}
.pc-hero-ref__gem--6{top:310px;right:70px;animation:pcFloatGemC 5.0s ease-in-out infinite 1.1s}
@keyframes pcFloatGemA{0%,100%{transform:translateY(0) rotate(12deg)}50%{transform:translateY(-14px) rotate(8deg)}}
@keyframes pcFloatGemB{0%,100%{transform:translateY(0) rotate(-12deg)}50%{transform:translateY(-10px) rotate(-6deg)}}
@keyframes pcFloatGemC{0%,100%{transform:translateY(0) rotate(6deg)}50%{transform:translateY(-16px) rotate(14deg)}}

.pc-home-bottom{grid-template-columns:1fr 1fr;gap:18px}
.pc-top-buyer,.pc-recent-strip{
  height:176px;
  padding:18px 22px;
  border-radius:20px;
  background:linear-gradient(135deg,rgba(110,42,177,.30) 0%,rgba(30,5,75,.28) 100%);
  border:1px solid rgba(255,220,110,.12);
}
.pc-top-buyer__skin{
  width:124px;
  left:12px;
  bottom:-4px;
}
.pc-top-buyer__content{
  margin-left:146px;
  padding-top:8px;
}
.pc-top-buyer__content strong{
  font-size:24px;
  line-height:1.02;
}
.pc-top-buyer__content span{
  font-size:14px;
  color:#bfb4df;
}
.pc-recent-strip__avatars{
  gap:10px;
  margin-top:8px;
}
.pc-recent-payment-item__avatar{
  width:56px;
  height:56px;
  border-radius:12px;
  border:2px solid rgba(255,255,255,.10);
}
.pc-recent-payment-item span{
  max-width:60px;
  font-size:11px;
}
.pc-recent-payment-item:first-child .pc-recent-payment-item__avatar{
  border-color:#ffd638;
  box-shadow:0 0 0 3px rgba(255,214,55,.14);
}
.pc-recent-strip__cta{
  color:rgba(255,255,255,.72);
  font-size:12px;
}
.pc-recent-strip__cta strong{color:#ffd638}
.pc-page-kind-default .pc-home-panel{margin-top:4px}

@media (max-width:1200px){
  .pc-logo-ref img{height:62px}
  .pc-hero-ref__inner{grid-template-columns:minmax(0,1fr) 460px}
  .pc-hero-ref__title{font-size:104px}
  .pc-hero-ref__player{max-height:380px}
}
@media (max-width:980px){
  .pc-topbar-ref{gap:16px}
  .pc-logo-ref{width:100%;justify-content:center}
  .pc-nav-ref{width:100%;flex-wrap:wrap;justify-content:center;gap:14px}
  .pc-session-ref{width:100%;justify-content:center}
  .pc-session-ref__text{text-align:center}
  .pc-hero-ref__inner{
    grid-template-columns:1fr;
    min-height:auto;
    text-align:center;
    padding:28px 0 0;
  }
  .pc-hero-ref__left{padding-left:0;max-width:none}
  .pc-hero-ref__eyebrow{font-size:22px}
  .pc-hero-ref__title{font-size:82px}
  .pc-hero-ref__cta{margin-left:auto;margin-right:auto}
  .pc-hero-ref__right{min-height:300px;justify-content:center;padding-right:0}
  .pc-hero-ref__player{max-height:300px}
  .pc-hero-ref__gem--1{left:18%}.pc-hero-ref__gem--2{left:10%}.pc-hero-ref__gem--3{left:18%}
  .pc-hero-ref__gem--4{right:18%}.pc-hero-ref__gem--5{right:10%}.pc-hero-ref__gem--6{right:18%}
  .pc-home-bottom{grid-template-columns:1fr}
}
@media (max-width:640px){
  .pc-topbar-ref{padding:14px 16px}
  .pc-logo-ref img{height:52px}
  .pc-nav-ref a{font-size:12px}
  .pc-login-ref{min-height:54px;padding:0 18px;font-size:16px}
  .pc-cart-ref{padding:0 14px}
  .pc-hero-ref{min-height:auto}
  .pc-hero-ref__eyebrow{font-size:18px;letter-spacing:.18em}
  .pc-hero-ref__title{font-size:60px}
  .pc-hero-ref__cta{padding:18px 24px}
  .pc-hero-ref__right{min-height:240px}
  .pc-hero-ref__player{max-height:240px}
  .pc-hero-ref__gem{width:24px}
}

/* ===== v8.3 refinements ===== */
.pc-main-shell{padding-top:0}
.pc-header-ref{margin-bottom:18px}
.pc-topbar-ref{padding:10px 22px;min-height:74px;border-radius:28px;background:linear-gradient(90deg,#6b2bc8 0%,#9756ff 50%,#6b2bc8 100%);box-shadow:0 12px 34px rgba(0,0,0,.18);border:1px solid rgba(255,255,255,.08)}
.pc-logo-ref img{height:52px;animation:pcFloatLogo 4.8s ease-in-out infinite}
@keyframes pcFloatLogo{0%,100%{transform:translateY(0)}50%{transform:translateY(-4px)}}
.pc-nav-ref{gap:18px}
.pc-nav-ref a{font-size:14px;font-weight:900;letter-spacing:.01em;text-shadow:0 1px 0 rgba(0,0,0,.18)}
.pc-nav-ref a:hover,.pc-nav-ref a:focus-visible,.pc-login-ref:hover,.pc-cart-ref:hover,.pc-hero-ref__cta:hover,.pc-button:hover,.pc-sidebar-button:hover{transform:translateY(-1px) scale(1.03);box-shadow:0 0 0 1px rgba(255,255,255,.14),0 10px 30px rgba(255,208,0,.18);filter:brightness(1.04)}
.pc-logo-ref{min-width:220px}
.pc-logo-ref__fallback{display:none}
.pc-session-ref{gap:12px}
.pc-session-ref__meta{text-align:right;min-width:140px}
.pc-session-ref__name{font-size:14px;line-height:1;text-transform:uppercase}
.pc-session-ref__sub{font-size:11px;line-height:1.1}
.pc-session-ref__head{width:78px;height:66px;border-radius:14px;background:rgba(255,255,255,.08);overflow:hidden;display:flex;align-items:flex-start;justify-content:center}
.pc-session-ref__head img{width:96px;height:96px;object-fit:cover;object-position:center top;image-rendering:pixelated;filter:grayscale(1) brightness(1.05)}
.pc-session-ref__head--logged img{filter:none}
.pc-login-ref{min-height:52px;padding:0 28px;border-radius:18px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);font-size:15px;font-weight:900}
.pc-cart-ref{min-height:52px;padding:0 16px;border-radius:15px;gap:10px;background:linear-gradient(180deg,#ffd31f 0%,#f3bc00 100%);box-shadow:0 7px 0 rgba(108,57,0,.28),0 10px 24px rgba(0,0,0,.14)}
.pc-cart-ref__count{width:28px;height:28px;font-size:16px}
.pc-cart-ref__money{font-size:13px}.pc-cart-ref__money small{font-size:inherit}

.pc-hero-ref{margin-top:18px;background:transparent !important;box-shadow:none !important;border-radius:0 !important;min-height:520px;padding:18px 0 8px;overflow:visible}
.pc-hero-ref::before{display:none}
.pc-hero-ref__scene{position:absolute;inset:0;background:radial-gradient(circle at 50% 30%,rgba(188,255,131,.18),transparent 18%),radial-gradient(circle at 68% 50%,rgba(190,255,115,.22),transparent 20%),linear-gradient(180deg,rgba(129,62,209,.00) 0%,rgba(129,62,209,.00) 100%)}
.pc-hero-ref__inner{min-height:490px;padding:24px 22px 22px;grid-template-columns:minmax(0,1fr) 520px;gap:20px;align-items:center}
.pc-hero-ref__left{max-width:820px;padding-left:20px}
.pc-hero-ref__eyebrow{font-size:23px;letter-spacing:.34em;color:#f5c5ff;text-shadow:0 0 14px rgba(255,210,255,.24)}
.pc-hero-ref__title{font-size:128px;line-height:.87;letter-spacing:-.055em;text-shadow:0 0 26px rgba(255,255,255,.16),0 0 2px rgba(255,255,255,.4)}
.pc-hero-ref__cta{margin-top:28px;border-radius:24px;padding:20px 28px;background:linear-gradient(180deg,#ffd21a 0%,#f6c402 100%);box-shadow:0 8px 0 rgba(131,61,0,.42),0 20px 34px rgba(255,187,0,.18)}
.pc-hero-ref__cta-top{font-size:18px;letter-spacing:.01em}.pc-hero-ref__cta-user{font-size:16px;opacity:.8}
.pc-hero-ref__right{min-height:420px;justify-content:flex-end;padding-right:20px}
.pc-hero-ref__player{height:400px;filter:drop-shadow(0 20px 30px rgba(0,0,0,.25))}
.pc-hero-ref__gem{width:34px;height:auto;animation:pcGemFloat 5.4s ease-in-out infinite}
.pc-hero-ref__gem--1{top:52px;left:60px;animation-delay:0s}.pc-hero-ref__gem--2{top:138px;left:8px;animation-delay:.8s}.pc-hero-ref__gem--3{bottom:84px;left:74px;animation-delay:1.6s}.pc-hero-ref__gem--4{top:34px;right:34px;animation-delay:2s}.pc-hero-ref__gem--5{top:146px;right:-4px;animation-delay:2.8s}.pc-hero-ref__gem--6{bottom:74px;right:56px;animation-delay:3.6s}
@keyframes pcGemFloat{0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-10px) rotate(4deg)}}

.pc-page-grid{grid-template-columns:270px minmax(0,1fr);gap:18px}
.pc-home-panel{padding:22px 24px;border-radius:26px}
.pc-home-panel__eyebrow{font-size:16px;color:#ffd21a;font-weight:900}
.pc-home-panel__head h2{margin:0;color:#fff;font-size:44px;font-weight:900}
.pc-goal-widget{width:320px;min-height:92px;padding:16px 18px;border-radius:20px;background:linear-gradient(180deg,rgba(90,38,172,.95),rgba(75,30,146,.96));position:relative}
.pc-goal-widget__percent{position:absolute;right:16px;top:14px;font-size:44px;font-weight:900;color:#ffd31f;line-height:1}
.pc-goal-widget__label{font-size:16px}.pc-goal-widget__text{max-width:190px;font-size:15px}
.pc-goal-widget__bar{height:10px;border-radius:999px}.pc-goal-widget__bar span{background:linear-gradient(90deg,#ffd51d,#f3c300)}
.pc-home-bottom{grid-template-columns:1.15fr .95fr;gap:18px}
.pc-top-buyer{min-height:154px;padding:0 24px 0 0;border-radius:22px;background:linear-gradient(90deg,rgba(72,23,117,.95),rgba(44,21,78,.98));display:grid;grid-template-columns:160px minmax(0,1fr) 90px;align-items:stretch;overflow:hidden;border:1px solid rgba(255,199,60,.18)}
.pc-top-buyer__visual{position:relative;background:linear-gradient(180deg,rgba(92,28,146,.55),rgba(35,11,68,.2));overflow:hidden}
.pc-top-buyer__skin{position:absolute;left:-10px;bottom:-20px;width:180px;height:auto;image-rendering:pixelated;filter:drop-shadow(0 0 18px rgba(255,93,176,.18))}
.pc-top-buyer__content{display:flex;flex-direction:column;justify-content:center;gap:8px;padding:0 10px 0 0}.pc-top-buyer__content strong{font-size:28px}.pc-top-buyer__content span{font-size:14px;color:#bdb7d8}.pc-top-buyer__badge{display:inline-flex;align-self:flex-start;font-size:13px;padding:8px 14px;border-radius:10px;background:#ffd21a;color:#171102;font-weight:900}.pc-top-buyer__currency{justify-self:end;align-self:center;font-size:86px;color:rgba(255,210,40,.10);font-weight:900}
.pc-recent-strip{padding:16px 18px 14px;border-radius:22px}.pc-recent-strip__head{align-items:flex-start}.pc-recent-strip__badge{font-size:13px}.pc-recent-strip__hint{font-size:14px;color:#ffdf64}.pc-recent-strip__list{gap:12px}.pc-recent-strip__item{min-width:56px}.pc-recent-strip__avatar-wrap{width:54px;height:54px;border-radius:12px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.10);overflow:hidden}.pc-recent-strip__avatar{width:54px;height:54px;object-fit:cover}.pc-recent-strip__item span{font-size:12px;color:#c8c3df}

.pc-sidebar-card--menu,.pc-sidebar-card--gift,.pc-sidebar-card--account{border-radius:22px}.pc-sidebar-card__title{font-size:16px}.pc-sidebar-button{min-height:56px;border-radius:16px;font-size:16px}.pc-sidebar-card__small{font-size:15px}.pc-giftcard-box__field{height:52px}.pc-giftcard-box__button{width:54px;height:52px;border-radius:14px}

@media (max-width: 1180px){
  .pc-topbar-ref{padding:10px 16px}.pc-logo-ref{min-width:170px}.pc-logo-ref img{height:44px}.pc-nav-ref{gap:12px}.pc-nav-ref a{font-size:12px}.pc-session-ref__meta{min-width:110px}.pc-login-ref{padding:0 18px}.pc-hero-ref__inner{grid-template-columns:minmax(0,1fr) 420px}.pc-hero-ref__title{font-size:96px}.pc-hero-ref__player{height:330px}
}
@media (max-width: 960px){
  .pc-topbar-ref{gap:12px;flex-wrap:wrap}.pc-logo-ref,.pc-nav-ref,.pc-session-ref{width:100%;justify-content:center}.pc-session-ref__meta{text-align:center}.pc-hero-ref__inner{grid-template-columns:1fr;min-height:auto}.pc-hero-ref__left{padding-left:0;text-align:center}.pc-hero-ref__cta{margin-left:auto;margin-right:auto}.pc-hero-ref__right{justify-content:center;padding-right:0}.pc-home-bottom{grid-template-columns:1fr}.pc-goal-widget{width:100%}.pc-top-buyer{grid-template-columns:120px 1fr 60px}.pc-top-buyer__content strong{font-size:22px}
}


/* ===== PlanetCraft final functional fixes ===== */
.pc-topbar-ref{position:relative;z-index:30;min-height:64px;padding:8px 16px;border-radius:24px;background:linear-gradient(90deg,#6b2bc8 0%,#9756ff 50%,#6b2bc8 100%);box-shadow:0 10px 28px rgba(0,0,0,.18);border:1px solid rgba(255,255,255,.08)}
.pc-nav-ref{gap:12px;flex:1 1 auto;justify-content:center}
.pc-nav-ref a{position:relative;z-index:3;font-size:12px;font-weight:900;letter-spacing:.01em;padding:6px 2px}
.pc-session-ref{gap:10px;position:relative;z-index:3}
.pc-session-ref__meta{text-align:right;min-width:118px}
.pc-session-ref__name{font-size:12px;font-weight:900}
.pc-session-ref__sub{font-size:10px;color:rgba(255,255,255,.72)}
.pc-session-ref__head{width:52px;height:86px;overflow:visible;background:transparent !important;box-shadow:none !important;border-radius:0 !important;display:flex;align-items:flex-start;justify-content:center}
.pc-session-ref__head img{width:70px;height:94px;object-fit:cover;object-position:center top;image-rendering:pixelated;clip-path:inset(0 0 40% 0);filter:grayscale(1) brightness(1.08)}
.pc-session-ref__head--logged img{filter:none}
.pc-login-ref{min-height:48px;padding:0 22px;border-radius:16px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.22);font-size:14px;font-weight:900;box-shadow:inset 0 1px 0 rgba(255,255,255,.12)}
.pc-cart-ref{min-height:46px;padding:0 14px;border-radius:14px;gap:8px;background:linear-gradient(180deg,#ffd31f 0%,#f3bc00 100%);box-shadow:0 6px 0 rgba(108,57,0,.22),0 10px 20px rgba(0,0,0,.12)}
.pc-cart-ref__count{width:24px;height:24px;font-size:14px}
.pc-cart-ref__money{font-size:12px}
.pc-cart-ref__money small{font-size:12px}

.pc-hero-ref{margin-top:12px;background:transparent !important;box-shadow:none !important;border-radius:0 !important;min-height:420px;padding:0 !important;overflow:visible}
.pc-hero-ref::after,.pc-hero-ref::before{display:none !important}
.pc-hero-ref__scene{position:absolute;inset:0;background:radial-gradient(circle at 62% 38%,rgba(190,255,115,.16),transparent 17%),linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,0))}
.pc-hero-ref__inner{min-height:420px;padding:8px 22px 22px;grid-template-columns:minmax(0,1fr) 500px;gap:16px;align-items:center}
.pc-hero-ref__left{max-width:760px;padding-left:6px}
.pc-hero-ref__eyebrow{font-size:22px;letter-spacing:.28em;color:#f5c5ff;text-shadow:0 0 14px rgba(255,210,255,.24);margin-bottom:8px}
.pc-hero-ref__title{font-size:108px;line-height:.88;letter-spacing:-.05em;text-shadow:0 0 26px rgba(255,255,255,.16),0 0 2px rgba(255,255,255,.4);max-width:700px}
.pc-hero-ref__title .js-hero-word{display:inline-block;color:#fff}
.pc-hero-ref__cta{margin-top:16px;border-radius:22px;padding:18px 24px;background:linear-gradient(180deg,#ffd21a 0%,#f6c402 100%);box-shadow:0 6px 0 rgba(131,61,0,.42),0 18px 28px rgba(255,187,0,.18)}
.pc-hero-ref__cta-top{font-size:14px;line-height:1.05}.pc-hero-ref__cta-user{font-size:16px;line-height:1.05}
.pc-hero-ref__right{min-height:340px;justify-content:flex-end;padding-right:10px}
.pc-hero-ref__player{height:320px;filter:drop-shadow(0 18px 30px rgba(0,0,0,.22))}
.pc-hero-ref__gem{width:28px;height:auto;filter:drop-shadow(0 10px 14px rgba(195,255,74,.20))}
.pc-hero-ref__gem--1{top:80px;left:48px}.pc-hero-ref__gem--2{top:156px;left:12px}.pc-hero-ref__gem--3{bottom:86px;left:56px}.pc-hero-ref__gem--4{top:70px;right:38px}.pc-hero-ref__gem--5{top:148px;right:2px}.pc-hero-ref__gem--6{bottom:84px;right:52px}

.pc-home-panel__head h2{font-size:42px}
.pc-goal-widget__percent{font-size:38px}
.pc-top-buyer{min-height:150px;grid-template-columns:130px minmax(0,1fr) 74px;padding-right:18px}
.pc-top-buyer__visual{overflow:hidden;border-radius:22px 0 0 22px}
.pc-top-buyer__skin{left:-6px;bottom:-10px;width:148px;clip-path:inset(0 0 42% 0);image-rendering:pixelated}
.pc-top-buyer__content{margin-left:0;padding:18px 0 18px 8px}
.pc-top-buyer__content strong{font-size:22px}
.pc-top-buyer__content span{font-size:13px}
.pc-top-buyer__currency{font-size:74px}
.pc-recent-strip__list{display:flex;gap:10px;align-items:flex-start;overflow:hidden}
.pc-recent-strip__avatar-wrap{width:48px;height:48px;border-radius:10px}
.pc-recent-strip__avatar{width:48px;height:48px;object-fit:cover;image-rendering:pixelated}
.pc-recent-strip__item span{font-size:10px}

.pc-checkout-shell .pc-section-heading h2{font-size:34px}
.pc-checkout-shell .pc-section-heading p{margin-top:6px}

.pc-nav-ref a,.pc-login-ref,.pc-cart-ref,.pc-sidebar-button,.pc-button,.pc-hero-ref__cta{transition:transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease}
.pc-nav-ref a:hover,.pc-nav-ref a:focus-visible,.pc-login-ref:hover,.pc-cart-ref:hover,.pc-sidebar-button:hover,.pc-button:hover,.pc-hero-ref__cta:hover{transform:translateY(-1px) scale(1.03);box-shadow:0 0 0 1px rgba(255,255,255,.14),0 10px 24px rgba(255,208,0,.18);filter:brightness(1.05)}

@media (max-width: 1180px){
  .pc-topbar-ref{padding:8px 14px}.pc-logo-ref img{height:46px}.pc-nav-ref{gap:10px}.pc-nav-ref a{font-size:11px}.pc-session-ref__meta{min-width:100px}.pc-login-ref{padding:0 16px}
  .pc-hero-ref__inner{grid-template-columns:minmax(0,1fr) 420px}.pc-hero-ref__title{font-size:86px}.pc-hero-ref__player{height:280px}
}
@media (max-width: 960px){
  .pc-topbar-ref{flex-wrap:wrap}.pc-logo-ref,.pc-nav-ref,.pc-session-ref{width:100%;justify-content:center}.pc-session-ref__meta{text-align:center}
  .pc-hero-ref__inner{grid-template-columns:1fr;min-height:auto}.pc-hero-ref__left{text-align:center;max-width:none;padding-left:0}.pc-hero-ref__cta{margin-left:auto;margin-right:auto}.pc-hero-ref__right{justify-content:center;padding-right:0;min-height:250px}
  .pc-hero-ref__title{font-size:68px}.pc-hero-ref__eyebrow{font-size:18px;letter-spacing:.2em}.pc-hero-ref__player{height:240px}
  .pc-hero-ref__gem--1{left:18%}.pc-hero-ref__gem--2{left:10%}.pc-hero-ref__gem--3{left:18%}.pc-hero-ref__gem--4{right:18%}.pc-hero-ref__gem--5{right:10%}.pc-hero-ref__gem--6{right:18%}
}
@media (max-width: 640px){
  .pc-topbar-ref{padding:10px 12px}.pc-nav-ref{gap:10px}.pc-nav-ref a{font-size:11px}.pc-login-ref{min-height:44px;padding:0 14px}.pc-cart-ref{min-height:44px;padding:0 12px}
  .pc-hero-ref__title{font-size:54px}.pc-hero-ref__cta{padding:16px 20px}.pc-hero-ref__player{height:200px}.pc-hero-ref__gem{width:20px}
}

.pc-topbar-ref{
  padding:10px 18px;
  min-height:70px;
  border-radius:28px;
  background:linear-gradient(180deg,rgba(151,92,255,.96) 0%,rgba(113,56,235,.96) 100%);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 42px rgba(0,0,0,.26);
}

.pc-nav-ref{
  gap:14px;
  flex:1 1 auto;
  justify-content:center;
}

.pc-nav-ref a,
.pc-footer__chips a,
.pc-login-ref,
.pc-footer__store-btn,
.pc-sidebar-button,
.pc-button{
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease, opacity .18s ease;
}

.pc-nav-ref a:hover,
.pc-footer__chips a:hover,
.pc-login-ref:hover,
.pc-footer__store-btn:hover,
.pc-sidebar-button:hover,
.pc-button:hover{
  transform:translateY(-1px) scale(1.03);
  filter:brightness(1.06);
}

.pc-nav-ref a{
  font-size:12px;
  font-weight:900;
  letter-spacing:.03em;
  color:#fff;
  text-shadow:0 1px 0 rgba(0,0,0,.18);
}

.pc-session-ref{
  gap:14px;
}

.pc-session-ref__meta{
  text-align:right;
}

.pc-session-ref__name{
  font-size:14px;
  font-weight:900;
  color:#fff;
  line-height:1;
}

.pc-session-ref__sub{
  margin-top:2px;
  font-size:11px;
  font-weight:700;
  color:rgba(255,255,255,.74);
  line-height:1.1;
}

.pc-session-ref__head{
  position:relative;
  width:70px;
  height:84px;
  background:transparent !important;
  box-shadow:none !important;
  border-radius:0 !important;
  overflow:visible;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  flex:0 0 auto;
}

.pc-session-ref__head-glow{
  position:absolute;
  inset:auto 10px 8px 10px;
  height:18px;
  background:rgba(164,112,255,.26);
  filter:blur(14px);
  border-radius:999px;
  pointer-events:none;
}

.pc-session-ref__head--logged img,
.pc-session-ref__head--guest img{
  width:76px;
  height:102px;
  object-fit:contain;
  object-position:center bottom;
  image-rendering:pixelated;
  position:relative;
  top:8px;
}

.pc-session-ref__head--guest img{
  filter:grayscale(1) brightness(1.06);
}

.pc-login-ref{
  min-height:56px;
  padding:0 24px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:16px;
  font-weight:900;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.pc-login-ref span{
  color:#ffd638;
  font-size:20px;
  line-height:1;
}

.pc-cart-ref{
  min-height:54px;
  padding:0 18px;
  border-radius:18px;
  background:linear-gradient(180deg,#ffd84d 0%,#f4bf00 100%);
}

.pc-hero-ref{
  margin-top:18px;
  position:relative;
  overflow:hidden;
  min-height:520px;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.pc-hero-ref::before,
.pc-hero-ref::after{
  display:none;
}

.pc-hero-ref__scene{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 62% 38%,rgba(190,255,115,.16),transparent 17%),linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,0));
}

.pc-hero-ref__inner{
  min-height:520px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 520px;
  align-items:center;
  gap:24px;
  padding:38px 26px 24px;
  background:linear-gradient(180deg,rgba(142,80,255,.10),rgba(40,5,111,.04));
  border-radius:0;
  box-shadow:none;
}

.pc-hero-ref__left{
  max-width:700px;
}

.pc-hero-ref__eyebrow{
  display:block;
  margin:0 0 12px;
  font-size:20px;
  font-weight:900;
  letter-spacing:.34em;
  color:#f6dbff;
  text-shadow:0 0 20px rgba(255,255,255,.22), 0 0 42px rgba(213,177,255,.18);
}

.pc-hero-ref__title{
  margin:0;
  font-size:98px;
  line-height:.88;
  font-weight:900;
  letter-spacing:-.05em;
  color:#fff;
  text-shadow:0 0 28px rgba(255,255,255,.18), 0 0 56px rgba(255,255,255,.10);
  background:none !important;
  border:none !important;
  box-shadow:none !important;
}

.pc-hero-ref__title .js-hero-word{
  display:inline-block;
  color:#fff;
}

.pc-hero-ref__cta{
  display:inline-block;
  margin-top:30px;
  padding:18px 24px;
  border:none;
  border-radius:22px;
  background:linear-gradient(180deg,#ffd84d 0%,#f4bf00 100%);
  box-shadow:0 8px 0 rgba(124,44,10,.30), 0 20px 34px rgba(0,0,0,.20), 0 0 18px rgba(255,214,55,.22);
  text-decoration:none;
}

.pc-hero-ref__cta-top{
  font-size:14px;
  font-weight:900;
  line-height:1;
  color:#4b2407;
  text-transform:uppercase;
}

.pc-hero-ref__cta-user{
  margin-top:4px;
  font-size:16px;
  font-weight:700;
  line-height:1.05;
  color:#6d4210;
  text-transform:uppercase;
}

.pc-hero-ref__right{
  position:relative;
  min-height:380px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pc-hero-ref__player{
  max-height:360px;
  height:auto;
  image-rendering:pixelated;
  animation:pcFloatSoft 6s ease-in-out infinite;
  filter:drop-shadow(0 22px 34px rgba(0,0,0,.30));
}

.pc-hero-ref__gem{
  width:24px;
  height:auto;
  filter:drop-shadow(0 10px 16px rgba(195,255,74,.18));
}

.pc-hero-ref__gem--1{top:58px;left:18px;right:auto;animation:pcFloatGemA 4.8s ease-in-out infinite}
.pc-hero-ref__gem--2{top:118px;left:52px;right:auto;animation:pcFloatGemB 5.4s ease-in-out infinite .5s}
.pc-hero-ref__gem--3{top:182px;left:10px;right:auto;animation:pcFloatGemC 5.8s ease-in-out infinite .9s}
.pc-hero-ref__gem--4{top:44px;right:32px;left:auto;animation:pcFloatGemA 5.2s ease-in-out infinite .3s}
.pc-hero-ref__gem--5{top:108px;right:-2px;left:auto;display:block;animation:pcFloatGemB 5.6s ease-in-out infinite .7s}
.pc-hero-ref__gem--6{top:176px;right:28px;left:auto;display:block;animation:pcFloatGemC 5.1s ease-in-out infinite 1.1s}

.pc-footer__chips a{
  color:#fff;
}

@media (max-width: 1100px){
  .pc-topbar-ref{
    gap:12px;
    padding:10px 14px;
  }

  .pc-nav-ref{
    gap:10px;
  }

  .pc-nav-ref a{
    font-size:11px;
  }

  .pc-hero-ref__inner{
    grid-template-columns:minmax(0,1fr) 420px;
    min-height:460px;
  }

  .pc-hero-ref__title{
    font-size:76px;
  }

  .pc-hero-ref__player{
    max-height:300px;
  }
}

@media (max-width: 980px){
  .pc-topbar-ref{
    flex-wrap:wrap;
    justify-content:center;
  }

  .pc-logo-ref,
  .pc-nav-ref,
  .pc-session-ref{
    width:100%;
    justify-content:center;
  }

  .pc-session-ref__meta{
    text-align:center;
  }

  .pc-hero-ref__inner{
    grid-template-columns:1fr;
    min-height:auto;
    text-align:center;
    padding:26px 18px 18px;
  }

  .pc-hero-ref__left{
    max-width:none;
  }

  .pc-hero-ref__cta{
    margin-left:auto;
    margin-right:auto;
  }

  .pc-hero-ref__right{
    min-height:280px;
  }

  .pc-hero-ref__title{
    font-size:62px;
  }
}

@media (max-width: 640px){
  .pc-topbar-ref{
    padding:10px 12px;
    border-radius:24px;
  }

  .pc-logo-ref img{
    height:44px;
  }

  .pc-nav-ref{
    gap:8px;
  }

  .pc-nav-ref a{
    font-size:10px;
  }

  .pc-session-ref{
    gap:10px;
  }

  .pc-session-ref__head{
    width:56px;
    height:74px;
  }

  .pc-session-ref__head--logged img,
  .pc-session-ref__head--guest img{
    width:62px;
    height:86px;
  }

  .pc-login-ref{
    min-height:46px;
    padding:0 16px;
    font-size:14px;
  }

  .pc-cart-ref{
    min-height:46px;
    padding:0 12px;
  }

  .pc-hero-ref__title{
    font-size:48px;
  }

  .pc-hero-ref__eyebrow{
    font-size:15px;
    letter-spacing:.22em;
  }

  .pc-hero-ref__player{
    max-height:220px;
  }

  .pc-hero-ref__gem{
    width:18px;
  }
}


/* ===== PLANETCRAFT STORE V7 FIXES ===== */
.pc-nav-group > summary{list-style:none;cursor:pointer;}
.pc-nav-group > summary::-webkit-details-marker{display:none;}
.pc-nav-parent__caret{margin-left:auto;opacity:.7;font-size:18px;transition:transform .2s ease;}
.pc-nav-group[open] > .pc-nav-parent .pc-nav-parent__caret{transform:rotate(180deg);}
.pc-nav-children{display:grid;}
.pc-hero-ref__right{display:flex;align-items:center;justify-content:center;}
.pc-checkout-embed{margin-top:18px;padding:8px;border-radius:18px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);}
@media (max-width:980px){.pc-page-grid{grid-template-columns:1fr;}.pc-sidebar{position:static;}.pc-cart-row{grid-template-columns:1fr;}.pc-cart-row__actions{justify-self:start;}}



/* ===== PLANETCRAFT V8.3 FIX PACK ===== */
.pc-topbar-ref{
  display:flex !important;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:78px;
  padding:10px 18px !important;
  border-radius:26px;
}
.pc-topbar-ref::before{pointer-events:none;}
.pc-logo-ref{
  min-width:170px !important;
  max-width:230px;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  position:relative;
  z-index:5;
}
.pc-logo-ref img{
  display:block !important;
  height:52px !important;
  width:auto !important;
  max-width:190px !important;
  object-fit:contain;
}
.pc-nav-ref{
  flex:1 1 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px !important;
  position:relative;
  z-index:5;
}
.pc-nav-ref a{
  font-size:14px !important;
  line-height:1;
  white-space:nowrap;
  position:relative;
  z-index:5;
  pointer-events:auto;
}
.pc-session-ref{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:12px !important;
  position:relative;
  z-index:5;
}
.pc-session-ref__meta{min-width:140px; text-align:right;}
.pc-session-ref__name{font-size:16px !important;}
.pc-session-ref__sub{font-size:12px !important;}
.pc-session-ref__head{width:68px !important; height:68px !important; border-radius:16px;}
.pc-session-ref__head--guest img,.pc-session-ref__head--logged img{width:74px !important; height:92px !important;}
.pc-login-ref{
  min-height:52px !important;
  padding:0 24px !important;
  font-size:15px !important;
  white-space:nowrap;
}
.pc-cart-ref{min-height:54px !important;}
.pc-cart-ref__money{font-size:14px !important;}
.pc-hero-ref{
  margin-top:18px !important;
  min-height:500px !important;
  background:
    linear-gradient(180deg, rgba(53,13,127,.38) 0%, rgba(20,2,58,.52) 100%),
    var(--pc-stage-image) center/cover no-repeat !important;
}
.pc-hero-ref::before,
.pc-hero-ref::after{
  pointer-events:none;
}
.pc-hero-ref__scene{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 62% 32%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 16%),
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 18%),
    linear-gradient(180deg, rgba(16,0,46,.10), rgba(11,0,28,.18));
}
.pc-hero-ref__scene::before,
.pc-hero-ref__scene::after{
  content:"";
  position:absolute;
  bottom:-6%;
  width:20%;
  height:38%;
  background:radial-gradient(circle at 50% 50%, rgba(16,4,46,.75), rgba(16,4,46,0) 72%);
  filter:blur(18px);
  opacity:.9;
}
.pc-hero-ref__scene::before{left:-2%;}
.pc-hero-ref__scene::after{right:-2%;}
.pc-hero-ref__inner{
  position:relative;
  z-index:2;
  min-height:500px !important;
  grid-template-columns:minmax(0,1fr) 430px !important;
  padding:46px 40px 34px !important;
}
.pc-hero-ref__left,
.pc-hero-ref__left *,
.pc-hero-ref__title,
.pc-hero-ref__title .js-hero-word{
  background:none !important;
  box-shadow:none !important;
  border:none !important;
}
.pc-hero-ref__left{max-width:720px !important;}
.pc-hero-ref__eyebrow{
  font-size:20px !important;
  letter-spacing:.30em !important;
}
.pc-hero-ref__title{
  font-size:98px !important;
  line-height:.90 !important;
}
.pc-hero-ref__right{
  min-height:360px !important;
}
.pc-hero-ref__player{
  max-height:360px !important;
  image-rendering:pixelated;
}
.pc-hero-ref__gem{width:28px !important;}
.pc-page-grid{
  align-items:start;
}
.pc-page-main,
.pc-sidebar{
  position:relative;
  z-index:2;
}
.pc-home-panel__head{
  align-items:flex-start;
}
.pc-home-bottom{
  grid-template-columns:1.05fr .95fr;
}
.pc-top-buyer__content strong{
  font-size:32px;
}
.pc-recent-strip__list{
  display:flex;
  align-items:flex-start;
  gap:12px;
  flex-wrap:nowrap;
  overflow:hidden;
  padding-top:14px;
}
.pc-recent-strip__item{
  flex:0 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
}
.pc-recent-strip__avatar{
  width:46px;
  height:46px;
  border-radius:10px;
  image-rendering:pixelated;
}
.pc-footer{
  margin-top:28px;
}
.pc-footer__bar--planet{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 20px;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(151,92,255,.96),rgba(113,56,235,.96));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 14px 32px rgba(0,0,0,.22);
}
.pc-footer__copy{
  display:flex;
  align-items:center;
  gap:16px;
  background:none;
  border:none;
  color:#fff;
  padding:0;
  text-align:left;
}
.pc-footer__logo{
  width:auto;
  height:44px;
  max-width:140px;
  object-fit:contain;
}
.pc-footer__copytextwrap{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.pc-footer__server{
  display:block;
  font-size:15px;
  font-weight:800;
  color:#fff;
}
.pc-footer__copytextwrap strong{
  color:#ffe552;
}
.pc-footer__social{
  display:flex;
  align-items:center;
  gap:12px;
}
.pc-footer__social-label{
  color:rgba(255,255,255,.7);
  font-weight:600;
}
.pc-footer__social a{
  width:48px;
  height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:20px;
}
.pc-footer__grid--planet{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr;
  gap:32px;
  margin-top:26px;
}
.pc-footer__grid--planet h4{
  margin:0 0 10px;
  color:#fff;
  font-size:18px;
  font-weight:900;
  text-transform:uppercase;
}
.pc-footer__grid--planet p{
  margin:0;
  color:#cbc2e8;
  font-size:16px;
  line-height:1.35;
}
.pc-footer__grid--planet .pc-footer__chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px 16px;
}
.pc-footer__grid--planet .pc-footer__chips a{
  color:#d8d0ef;
  font-size:16px;
  line-height:1.2;
  pointer-events:auto;
  position:relative;
  z-index:2;
}
.pc-footer__store-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:168px;
  min-height:48px;
  margin-top:18px;
  border-radius:18px;
  background:linear-gradient(180deg,#ffd638,#f4bf00);
  color:#442700 !important;
  font-weight:900;
  box-shadow:0 0 26px rgba(252,211,16,.18);
}
.pc-footer__legal-note{
  margin-top:18px;
  color:#9b8fbe;
  font-size:14px;
}
@media (max-width: 1180px){
  .pc-topbar-ref{flex-wrap:wrap; justify-content:center;}
  .pc-logo-ref{width:100%; justify-content:center;}
  .pc-nav-ref{width:100%; flex-wrap:wrap;}
  .pc-session-ref{width:100%; justify-content:center;}
  .pc-session-ref__meta{text-align:center;}
  .pc-hero-ref__inner{grid-template-columns:1fr !important; text-align:center;}
  .pc-hero-ref__left{max-width:none !important;}
  .pc-hero-ref__cta{margin-left:auto; margin-right:auto;}
  .pc-footer__bar--planet{flex-direction:column; align-items:flex-start;}
  .pc-footer__grid--planet{grid-template-columns:1fr;}
}
@media (max-width: 720px){
  .pc-topbar-ref{padding:14px 16px !important;}
  .pc-logo-ref img{height:46px !important;}
  .pc-nav-ref{gap:12px !important;}
  .pc-nav-ref a{font-size:12px !important;}
  .pc-session-ref{gap:10px !important;}
  .pc-session-ref__meta{min-width:0;}
  .pc-login-ref{padding:0 16px !important; font-size:14px !important;}
  .pc-hero-ref{min-height:auto !important;}
  .pc-hero-ref__inner{min-height:auto !important; padding:34px 22px 26px !important;}
  .pc-hero-ref__eyebrow{font-size:17px !important; letter-spacing:.18em !important;}
  .pc-hero-ref__title{font-size:58px !important;}
  .pc-hero-ref__right{min-height:240px !important;}
  .pc-hero-ref__player{max-height:240px !important;}
  .pc-home-bottom{grid-template-columns:1fr;}
  .pc-top-buyer, .pc-recent-strip{height:auto; min-height:172px;}
  .pc-footer__copy{align-items:flex-start;}
  .pc-footer__logo{height:34px;}
  .pc-footer__copytextwrap span:last-child{font-size:13px;}
}
