:root {
  --bg-top: #17111f;
  --bg-bottom: #09080d;
  --panel: rgba(27, 21, 39, 0.84);
  --panel-strong: rgba(34, 26, 49, 0.94);
  --line: rgba(255, 255, 255, 0.1);
  --text: #faf7ff;
  --muted: #cabed9;
  --gold: #ffb45e;
  --grass: #69db80;
  --cyan: #5fd7ff;
  --violet: #8d54ff;
  --rose: #ff76bb;
  --block-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

body[data-theme="light"] {
  --bg-top: #f6efe4;
  --bg-bottom: #ebe9f7;
  --panel: rgba(255, 251, 247, 0.86);
  --panel-strong: rgba(255, 252, 250, 0.96);
  --line: rgba(77, 57, 106, 0.14);
  --text: #21162f;
  --muted: #6c5f78;
  --gold: #ce7c23;
  --grass: #4f9e5f;
  --cyan: #278ab4;
  --violet: #7052d9;
  --rose: #d35a94;
  --block-shadow: 0 18px 46px rgba(64, 44, 85, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Avenir Next", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 180, 94, 0.16), transparent 20%),
    radial-gradient(circle at 88% 12%, rgba(95, 215, 255, 0.12), transparent 22%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  overflow-x: hidden;
  position: relative;
}

.sky-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), transparent 88%);
}

body::before {
  content: "";
  position: fixed;
  left: -6%;
  right: -6%;
  bottom: -20px;
  height: 34vh;
  pointer-events: none;
  opacity: 0.38;
  background:
    linear-gradient(180deg, rgba(60, 97, 62, 0), rgba(35, 61, 39, 0.82)),
    linear-gradient(90deg,
      transparent 0 4%,
      rgba(67, 111, 71, 0.42) 4% 8%,
      transparent 8% 12%,
      rgba(77, 125, 82, 0.36) 12% 17%,
      transparent 17% 20%,
      rgba(58, 98, 64, 0.5) 20% 25%,
      transparent 25% 28%,
      rgba(80, 131, 84, 0.38) 28% 34%,
      transparent 34% 38%,
      rgba(58, 96, 68, 0.46) 38% 44%,
      transparent 44% 48%,
      rgba(73, 118, 76, 0.34) 48% 54%,
      transparent 54% 58%,
      rgba(60, 99, 70, 0.5) 58% 64%,
      transparent 64% 69%,
      rgba(82, 132, 88, 0.38) 69% 76%,
      transparent 76% 80%,
      rgba(63, 102, 70, 0.46) 80% 86%,
      transparent 86% 90%,
      rgba(77, 126, 83, 0.34) 90% 96%,
      transparent 96% 100%);
  clip-path: polygon(0 100%, 0 58%, 7% 58%, 7% 46%, 13% 46%, 13% 54%, 19% 54%, 19% 34%, 25% 34%, 25% 50%, 32% 50%, 32% 28%, 39% 28%, 39% 48%, 47% 48%, 47% 22%, 56% 22%, 56% 44%, 64% 44%, 64% 30%, 71% 30%, 71% 52%, 78% 52%, 78% 38%, 86% 38%, 86% 56%, 93% 56%, 93% 46%, 100% 46%, 100% 100%);
  filter: blur(0.4px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 170, 90, 0.09), transparent 18%),
    radial-gradient(circle at 72% 36%, rgba(126, 84, 255, 0.08), transparent 20%),
    radial-gradient(circle at 50% 72%, rgba(89, 215, 255, 0.06), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(105, 219, 128, 0.06), transparent 18%);
}

img { display: block; max-width: 100%; }
.page-shell { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; position: relative; }

.feature-zone::before,
.openworld-section::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.feature-zone::before {
  background: radial-gradient(circle at 18% 28%, rgba(255, 170, 90, 0.08), transparent 24%);
}

.openworld-section::before {
  background: radial-gradient(circle at 70% 34%, rgba(103, 126, 255, 0.1), transparent 28%),
              radial-gradient(circle at 30% 76%, rgba(105, 219, 128, 0.06), transparent 24%);
}

.cta-band::before {
  background: radial-gradient(circle at 50% 50%, rgba(255, 140, 195, 0.08), transparent 34%);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  margin-top: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16, 12, 25, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--block-shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 -8px 20px rgba(0,0,0,0.16);
}

.brand-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.fallback-cube {
  display: none;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--rose) 40%, var(--violet) 70%, var(--cyan));
  box-shadow: 8px 8px 0 rgba(95, 215, 255, 0.14);
  transform: rotate(12deg);
}
.logo-fallback img { display: none; }
.logo-fallback .fallback-cube { display: block; }

.top-nav { display: flex; gap: 22px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.theme-switch { display: inline-flex; align-items: center; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.theme-switch-hidden { display: none; }
.theme-toggle { min-width: 52px; padding: 8px 10px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font: inherit; text-align: center; font-size: 0.88rem; font-weight: 800; cursor: pointer; }
.theme-toggle[aria-pressed="true"] { color: var(--text); background: rgba(255,255,255,0.08); }
.theme-toggle-hidden { display: none; }
.lang-switch { display: inline-flex; align-items: center; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.lang-switch a { min-width: 42px; padding: 8px 10px; border-radius: 999px; color: var(--muted); text-decoration: none; text-align: center; font-size: 0.88rem; font-weight: 800; }
.lang-switch a[aria-current="page"] { color: var(--text); background: rgba(255,255,255,0.08); }
.top-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.top-nav a:hover,
.top-nav a:focus-visible { color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary {
  color: #17111f;
  background: linear-gradient(135deg, var(--gold), #ffd46f 42%, #ff92cc);
  box-shadow: 0 18px 36px rgba(255, 180, 94, 0.24);
}
.button-secondary,
.button-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
}
.store-button { min-height: 42px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

h1,h2,h3 { margin: 0; }
h1,h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  line-height: 0.94;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); max-width: 10ch; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); max-width: 12ch; }

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 110px);
}

.hero-text,
.house-copy p,
.feature-card p,
.openworld-game-card p,
.mosaic-card p,
.house-card p,
.faq-item p,
.store-subtitle,
.store-meta-item span,
.store-shot figcaption {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.05rem;
}

.hero-text { margin: 22px 0 26px; max-width: 60ch; }
.hero-actions,
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-badges span,
.stage-card,
.feature-card,
.mosaic-card,
.house-card,
.faq-item,
.cta-band,
.openworld-store-card,
.openworld-game-card,
.store-shot {
  border: 1px solid var(--line);
  box-shadow: var(--block-shadow);
}
.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.voxel-sun {
  position: absolute;
  top: 50px;
  right: 110px;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffd76f, #ff9a67);
  box-shadow: 0 0 80px rgba(255, 180, 94, 0.25);
}
.voxel-hills {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 24px;
}
.hill-back {
  bottom: 82px;
  width: 88%;
  height: 120px;
  background: linear-gradient(180deg, rgba(93, 85, 150, 0.55), rgba(56, 49, 104, 0.78));
  clip-path: polygon(0 58%, 10% 42%, 20% 50%, 30% 30%, 42% 48%, 54% 26%, 68% 44%, 82% 20%, 100% 52%, 100% 100%, 0 100%);
}
.hill-front {
  bottom: 0;
  width: 100%;
  height: 170px;
  background: linear-gradient(180deg, rgba(101, 173, 92, 0.88), rgba(50, 118, 65, 0.98));
  clip-path: polygon(0 54%, 8% 44%, 15% 52%, 24% 35%, 33% 48%, 45% 30%, 56% 46%, 67% 26%, 79% 44%, 88% 28%, 100% 46%, 100% 100%, 0 100%);
}

.stage-card {
  position: relative;
  background: var(--panel);
  backdrop-filter: blur(18px);
}
.main-stage-card {
  width: min(520px, 100%);
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(31, 23, 47, 0.96), rgba(15, 12, 23, 0.96));
  z-index: 2;
  animation: drift 8s ease-in-out infinite;
}
.logo-panel.stage-logo-wrap {
  width: min(280px, 72%);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 6px auto 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.02);
}
.stage-logo-wrap img { object-fit: contain; padding: 12px; }
.stage-text p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.stage-text h2 { font-size: clamp(1.8rem, 2.6vw, 2.8rem); max-width: 12ch; }

.floating-card {
  position: absolute;
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(20, 15, 31, 0.9);
  max-width: 260px;
  z-index: 3;
}
.openworld-chip {
  right: 0;
  top: 210px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.openworld-chip-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.floating-card strong { display: block; margin-bottom: 8px; }
.floating-card span { color: var(--muted); font-size: 0.94rem; line-height: 1.45; }

.feature-zone,
.openworld-section { display: grid; gap: 24px; }
.feature-grid,
.house-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card,
.mosaic-card,
.house-card,
.faq-item,
.cta-band,
.openworld-store-card,
.openworld-game-card,
.store-shot {
  padding: 24px;
  border-radius: 20px;
  background: var(--panel);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.mosaic-card::before,
.house-card::before,
.faq-item::before,
.cta-band::before,
.openworld-store-card::before,
.openworld-game-card::before,
.store-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01) 26%, transparent 26%);
  pointer-events: none;
}
.feature-tag {
  display: inline-flex;
  min-width: 56px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,180,94,0.2), rgba(141,84,255,0.26));
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.14);
}

.openworld-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.openworld-title-mark {
  width: 96px;
  height: 96px;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  box-shadow: var(--block-shadow);
}
.openworld-title-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.openworld-store-card {
  background:
    radial-gradient(circle at top right, rgba(96, 116, 255, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(105, 219, 128, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(19, 14, 28, 0.96), rgba(14, 11, 20, 0.98));
  padding: 26px;
  display: grid;
  gap: 22px;
  border-width: 1px;
}
.store-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.store-game-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.store-app-icon {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.store-label {
  margin: 0 0 4px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}
.store-game-head h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 2rem;
  margin-bottom: 4px;
}
.store-subtitle {
  display: block;
  font-size: 0.98rem;
}
.store-cta-box {
  display: grid;
  justify-items: end;
  gap: 10px;
}
.store-platform {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.86rem;
  font-weight: 700;
}
.store-meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.store-meta-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.store-meta-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.96rem;
}
.store-meta-item span {
  font-size: 0.92rem;
}
.store-screenshot-strip {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 16px;
}
.store-shot {
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  background: linear-gradient(180deg, rgba(20,15,31,0.96), rgba(10,9,14,0.98));
}
.store-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shot-featured {
  min-height: 460px;
}
.shot-vertical {
  min-height: 460px;
}
.alt-shot img {
  object-position: right center;
}
.store-shot figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(16, 12, 24, 0.78);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  font-size: 0.92rem;
}
.store-description-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}
.openworld-game-card {
  background: linear-gradient(180deg, rgba(40, 29, 58, 0.95), rgba(20, 15, 28, 0.98));
}
.openworld-game-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.openworld-game-topline p {
  margin: 0 0 4px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}
.openworld-game-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}
.store-description-grid-full {
  grid-template-columns: 1fr;
}
.openworld-game-card-wide {
  max-width: none;
}
.openworld-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.warm { background: linear-gradient(180deg, rgba(76, 46, 35, 0.88), rgba(42, 26, 23, 0.95)); }
.cool { background: linear-gradient(180deg, rgba(32, 52, 64, 0.88), rgba(20, 28, 42, 0.95)); }
.violet { background: linear-gradient(180deg, rgba(53, 35, 72, 0.9), rgba(27, 20, 41, 0.96)); }
.earth { background: linear-gradient(180deg, rgba(45, 58, 31, 0.9), rgba(22, 32, 20, 0.97)); }

.block-card { background: linear-gradient(180deg, rgba(33, 24, 49, 0.94), rgba(19, 14, 27, 0.97)); }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255,180,94,0.12), rgba(141,84,255,0.16) 44%, rgba(95,215,255,0.12));
}
.faq-list { display: grid; gap: 16px; }
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-bottom: 0; }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 0 48px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 220ms; }

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1120px) {
  .hero,
  .feature-grid,
  .store-description-grid,
  .store-screenshot-strip {
    grid-template-columns: 1fr;
  }

  .store-meta-row,
  .openworld-pillars {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .top-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
    gap: 22px;
  }

  .hero-stage {
    min-height: 460px;
  }

  .floating-card {
    position: static;
    max-width: none;
  }

  .hero-stage {
    gap: 12px;
  }

  .main-stage-card {
    width: 100%;
    max-width: 460px;
    padding: 20px;
  }

  .logo-panel.stage-logo-wrap {
    width: min(220px, 66%);
    margin-bottom: 16px;
  }

  .openworld-header,
  .store-topbar,
  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-cta-box {
    justify-items: start;
  }
}

@media (max-width: 600px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
  }

  .section {
    padding: 56px 0;
  }

  .site-header {
    top: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    gap: 10px;
  }

  .brand {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 0.98rem;
  }

  .brand-logo-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .top-nav {
    width: 100%;
    justify-content: center;
    gap: 12px 16px;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
  }

  .top-nav a {
    padding: 6px 2px;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
    padding: 3px;
  }

  .lang-switch a {
    min-width: 38px;
    padding: 7px 9px;
    font-size: 0.84rem;
  }

  .button-ghost {
    width: 100%;
    min-height: 42px;
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
    max-width: 9ch;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    max-width: 11ch;
  }

  .button,
  .cta-actions,
  .hero-actions {
    width: 100%;
  }

  .hero-copy,
  .openworld-store-card,
  .feature-card,
  .openworld-game-card,
  .mosaic-card,
  .faq-item,
  .cta-band {
    position: relative;
    z-index: 1;
  }

  .hero-text,
  .feature-card p,
  .openworld-game-card p,
  .mosaic-card p,
  .store-subtitle,
  .store-meta-item span,
  .store-shot figcaption,
  .faq-item p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-badges {
    gap: 10px;
  }

  .hero-badges span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-stage {
    min-height: auto;
    padding-top: 4px;
  }

  .main-stage-card {
    max-width: none;
    padding: 18px;
    border-radius: 18px;
  }

  .stage-text h2 {
    max-width: none;
    font-size: clamp(1.5rem, 7vw, 2.1rem);
  }

  .openworld-chip {
    gap: 12px;
    padding: 12px 14px;
  }

  .openworld-chip-icon,
  .store-app-icon,
  .openworld-game-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .openworld-store-card {
    padding: 18px;
    gap: 18px;
    border-radius: 18px;
  }

  .store-topbar,
  .store-meta-item,
  .openworld-game-card,
  .mosaic-card,
  .feature-card,
  .faq-item {
    border-radius: 16px;
  }

  .store-topbar,
  .openworld-game-card,
  .feature-card,
  .mosaic-card,
  .faq-item {
    padding: 18px;
  }

  .store-game-head {
    align-items: flex-start;
  }

  .store-game-head h3 {
    font-size: 1.6rem;
  }

  .store-meta-row,
  .openworld-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shot-featured,
  .shot-vertical {
    min-height: 260px;
  }

  .store-shot {
    border-radius: 18px;
  }

  .store-shot figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 9px 10px;
    font-size: 0.88rem;
  }

  .store-description-grid {
    gap: 14px;
  }

  .site-footer {
    padding-bottom: 36px;
  }
}

.store-topbar,
.store-meta-item,
.openworld-game-card,
.mosaic-card,
.feature-card {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), inset 0 -5px 0 rgba(0,0,0,0.12), var(--block-shadow);
}

.store-topbar {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.store-meta-item {
  min-height: 96px;
}

.store-meta-item strong,
.mosaic-card h3,
.feature-card h3,
.house-card h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.store-platform {
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.12);
}

.store-shot {
  border-radius: 24px;
}

.store-shot img {
  transition: transform 280ms ease;
}

.store-shot:hover img {
  transform: scale(1.03);
}

.store-shot::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 44px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.82), rgba(255,255,255,0.18));
  opacity: 0.75;
}

.openworld-game-card {
  background:
    linear-gradient(180deg, rgba(48, 34, 69, 0.95), rgba(20, 15, 28, 0.98));
}

.openworld-pillars .mosaic-card {
  min-height: 190px;
}

.openworld-chip {
  background: rgba(18, 13, 29, 0.94);
  border: 1px solid rgba(255,255,255,0.12);
}

.openworld-chip strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.hero-badges span {
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.12);
}

.section-heading .eyebrow,
.openworld-header .eyebrow,
#play .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.12);
}

.section-heading .eyebrow::before,
.openworld-header .eyebrow::before,
#play .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--gold), var(--rose));
}

.cta-band {
  border-radius: 26px;
}


body[data-theme="light"] {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 177, 72, 0.18), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(103, 126, 255, 0.12), transparent 22%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

body[data-theme="light"] .sky-grid {
  background-image:
    linear-gradient(rgba(87, 69, 113, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 69, 113, 0.06) 1px, transparent 1px);
}

body[data-theme="light"]::before {
  opacity: 0.18;
  background:
    linear-gradient(180deg, rgba(101, 173, 92, 0), rgba(112, 164, 114, 0.42)),
    linear-gradient(90deg,
      transparent 0 4%,
      rgba(125, 176, 127, 0.32) 4% 8%,
      transparent 8% 12%,
      rgba(141, 188, 145, 0.26) 12% 17%,
      transparent 17% 20%,
      rgba(110, 159, 114, 0.34) 20% 25%,
      transparent 25% 28%,
      rgba(143, 192, 147, 0.26) 28% 34%,
      transparent 34% 38%,
      rgba(121, 168, 127, 0.32) 38% 44%,
      transparent 44% 48%,
      rgba(144, 191, 148, 0.22) 48% 54%,
      transparent 54% 58%,
      rgba(111, 159, 117, 0.34) 58% 64%,
      transparent 64% 69%,
      rgba(146, 191, 149, 0.24) 69% 76%,
      transparent 76% 80%,
      rgba(122, 168, 127, 0.3) 80% 86%,
      transparent 86% 90%,
      rgba(146, 191, 149, 0.22) 90% 96%,
      transparent 96% 100%);
}

body[data-theme="light"]::after {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 170, 90, 0.1), transparent 18%),
    radial-gradient(circle at 72% 36%, rgba(126, 84, 255, 0.08), transparent 20%),
    radial-gradient(circle at 50% 72%, rgba(89, 215, 255, 0.07), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(105, 219, 128, 0.08), transparent 18%);
}

body[data-theme="light"] .site-header {
  background: rgba(252, 248, 245, 0.82);
}

body[data-theme="light"] .feature-zone::before {
  background: radial-gradient(circle at 18% 28%, rgba(255, 170, 90, 0.12), transparent 24%);
}

body[data-theme="light"] .openworld-section::before {
  background: radial-gradient(circle at 70% 34%, rgba(103, 126, 255, 0.12), transparent 28%),
              radial-gradient(circle at 30% 76%, rgba(105, 219, 128, 0.09), transparent 24%);
}

body[data-theme="light"] .cta-band::before {
  background: radial-gradient(circle at 50% 50%, rgba(255, 140, 195, 0.12), transparent 34%);
}

body[data-theme="light"] .main-stage-card,
body[data-theme="light"] .openworld-store-card,
body[data-theme="light"] .openworld-game-card,
body[data-theme="light"] .feature-card,
body[data-theme="light"] .mosaic-card,
body[data-theme="light"] .faq-item,
body[data-theme="light"] .store-topbar,
body[data-theme="light"] .store-meta-item,
body[data-theme="light"] .store-shot,
body[data-theme="light"] .cta-band {
  background-color: rgba(255, 251, 247, 0.82);
}

body[data-theme="light"] .main-stage-card {
  background:
    radial-gradient(circle at top right, rgba(112, 82, 217, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 177, 72, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 249, 244, 0.98), rgba(243, 239, 249, 0.98));
}

body[data-theme="light"] .stage-card {
  background-color: rgba(255, 251, 247, 0.9);
}

body[data-theme="light"] .stage-logo-wrap {
  background: rgba(112, 82, 217, 0.06);
  border: 1px solid rgba(77, 57, 106, 0.12);
}

body[data-theme="light"] .stage-text p {
  color: var(--rose);
}

body[data-theme="light"] .openworld-chip {
  background: rgba(255, 250, 246, 0.94);
  border: 1px solid rgba(77, 57, 106, 0.12);
}

body[data-theme="light"] .openworld-store-card {
  background:
    radial-gradient(circle at top right, rgba(96, 116, 255, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(105, 219, 128, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 251, 247, 0.96), rgba(243, 240, 248, 0.98));
}

body[data-theme="light"] .store-shot figcaption {
  background: rgba(255, 248, 244, 0.84);
  border: 1px solid rgba(77, 57, 106, 0.12);
  color: var(--text);
}

body[data-theme="light"] .openworld-game-card {
  background: linear-gradient(180deg, rgba(245, 238, 252, 0.95), rgba(252, 249, 246, 0.98));
}

body[data-theme="light"] .warm { background: linear-gradient(180deg, rgba(255, 233, 214, 0.92), rgba(252, 242, 234, 0.97)); }
body[data-theme="light"] .cool { background: linear-gradient(180deg, rgba(227, 241, 247, 0.92), rgba(242, 248, 250, 0.97)); }
body[data-theme="light"] .violet { background: linear-gradient(180deg, rgba(236, 230, 255, 0.94), rgba(247, 243, 255, 0.98)); }
body[data-theme="light"] .earth { background: linear-gradient(180deg, rgba(234, 244, 224, 0.94), rgba(244, 249, 239, 0.98)); }
