@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/open-sans@5.2.7/files/open-sans-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/open-sans@5.2.7/files/open-sans-latin-500-normal.woff2") format("woff2");
}

::selection {
  background: #ffffff;
  color: #000000;
}

:root {
  --bg: #0b0b0b;
  --bg-dark: #080808;
  --bg-soft: #0f0f0f;
  --bg-light: #151515;
  --background: #0b0b0b;
  --background-dark: #0b0b0b;
  --surface-solid: #101010;
  --surface-deep: #080808;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-solid-site: #101010;
  --surface-ui: #131313;
  --surface-hover: rgba(255, 255, 255, 0.065);
  --surface-active: rgba(255, 255, 255, 0.1);
  --surface-strong: rgba(255, 255, 255, 0.085);
  --surface-subtle: rgba(255, 255, 255, 0.025);
  --border: #1e1e1e;
  --border-subtle: rgba(255, 255, 255, 0.075);
  --border-ui: #131313;
  --border-strong: rgba(255, 255, 255, 0.18);
  --border-hover: #3a3a3a;
  --text: #fafafa;
  --text-strong: #fafafa;
  --text-muted: #a8a9ad;
  --text-soft: rgba(211, 211, 211, 0.78);
  --text-dim: rgba(211, 211, 211, 0.58);
  --text-faint: rgba(211, 211, 211, 0.42);
  --success: #35d07f;
  --success-hover: #5cff8a;
  --success-soft: rgba(53, 208, 127, 0.12);
  --danger: #ef4444;
  --danger-hover: #f87171;
  --danger-soft: rgba(239, 68, 68, 0.12);
  --xp-color: #8b5cf6;
  --accent: #8b5cf6;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --radius-circle: 50%;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 500;
  --weight-bold: 500;
  --font-sans: "Open Sans", "Segoe UI", system-ui, sans-serif;
  --font-stat: "Open Sans", "Segoe UI", system-ui, sans-serif;
  --motion-fast: 0.12s;
  --motion-base: 0.18s;
  --motion-slow: 0.3s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  box-shadow: none !important;
  text-shadow: none !important;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scroll-snap-type: y mandatory;
}

html.faq-is-animating {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

body {
  position: relative;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased;
}

.hero,
.quick-info,
.database-section,
.paid-features,
.faq,
.download {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

::-webkit-scrollbar {
  width: 9px;
  background-color: var(--bg);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(211, 211, 211, 0.15);
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(211, 211, 211, 0.25);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  color: var(--text-strong);
  font-weight: 500;
  letter-spacing: 0;
}

strong,
b {
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--border-strong);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border-ui);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text-strong);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  transition: border-color var(--motion-fast) var(--ease),
              color var(--motion-fast) var(--ease),
              opacity var(--motion-fast) var(--ease);
}

.btn:hover {
  border-color: var(--border-hover);
}

.btn:active {
  opacity: 0.65;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-icon--img {
  object-fit: contain;
  filter: invert(1);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - clamp(180px, 22vh, 230px));
  min-height: calc(100svh - clamp(180px, 22vh, 230px));
  box-sizing: border-box;
  padding: clamp(10px, 1.5vh, 18px) 0 clamp(10px, 2vh, 22px);
  background: var(--bg);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: clamp(10px, 2vh, 20px) auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3.2vw, 3rem);
  line-height: 1.05;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.hero__logo {
  width: clamp(1.6rem, 3.4vw, 3.2rem);
  height: clamp(1.6rem, 3.4vw, 3.2rem);
  background: url("ghost-solid.png") center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  flex-shrink: 0;
}

.hero__title-gradient {
  font-weight: 500;
  color: var(--text);
}

.hero__title-light {
  font-weight: 500;
  color: var(--text-muted);
}

.hero__eyebrow {
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__subtext {
  max-width: 660px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.55;
}

.showcase-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  margin: clamp(14px, 2.4vh, 26px) auto 0;
  padding: clamp(8px, 1.5vh, 16px) 24px clamp(10px, 1.8vh, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.showcase-card {
  width: min(1100px, 90vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg);
  cursor: default;
  transition: border-color var(--motion-slow) var(--ease);
}

.showcase-card:hover {
  border-color: var(--border);
}

.app-simulator {
  --app-bg: #0b0b0b;
  --app-border: #1e1e1e;
  --app-surface: #0f0f0f;
  --app-surface-hover: #151515;
  --app-text: #fafafa;
  --app-muted: #a8a9ad;
  --app-soft: rgba(211, 211, 211, 0.78);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--app-bg);
  color: var(--app-text);
  font-family: "Open Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 10px;
  line-height: 1.45;
  text-align: left;
}

.app-simulator *,
.app-simulator *::before,
.app-simulator *::after {
  box-shadow: none;
  text-shadow: none;
}

.app-simulator svg {
  display: block;
  flex-shrink: 0;
}

.app-simulator__titlebar {
  position: relative;
  height: 35px;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--app-border);
  background: var(--app-bg);
}

.app-simulator__brand {
  position: absolute;
  inset: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
  color: var(--app-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
}

.app-simulator__logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("ghost-solid.png") center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.app-simulator__window-controls {
  display: flex;
  height: 100%;
  margin-left: auto;
}

.app-simulator__window-controls span {
  position: relative;
  width: 42px;
  height: 34px;
}

.app-simulator__window-controls span::before,
.app-simulator__window-controls span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.85);
  transform: translate(-50%, -50%);
}

.app-simulator__window-controls span:first-child::after {
  display: none;
}

.app-simulator__window-controls span:last-child::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.app-simulator__window-controls span:last-child::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.app-simulator__main {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.app-simulator__sidebar {
  width: 280px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  overflow: hidden;
  border-right: 1px solid var(--app-border);
  background: var(--app-bg);
  color: var(--app-text);
  font-family: "Open Sans", "Segoe UI", system-ui, sans-serif !important;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

.app-simulator__sidebar span,
.app-simulator__sidebar strong,
.app-simulator__sidebar li {
  font-family: "Open Sans", "Segoe UI", system-ui, sans-serif !important;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

.app-simulator__profile {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.1s ease;
}

.app-simulator__profile:hover {
  background-color: var(--app-surface-hover);
}

.app-simulator__profile img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
  background: var(--app-surface);
}

.app-simulator__profile strong {
  overflow: hidden;
  color: var(--app-text);
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-simulator__profile svg {
  width: 15px;
  height: 15px;
  justify-self: center;
  color: var(--app-muted);
}

.app-simulator__nav,
.app-simulator__collections ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-simulator__nav-item {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 4px;
  color: var(--app-text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.1s linear, color 0.1s linear;
}

.app-simulator__nav-item:hover {
  background-color: var(--app-surface-hover);
}

.app-simulator__nav-item--active {
  background: #151515;
}

.app-simulator__nav-item svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.app-simulator__collections {
  min-width: 0;
  overflow: hidden;
}

.app-simulator__section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  margin-bottom: 8px;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-simulator__section-title span,
.app-simulator__collection-heading {
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-simulator__section-title svg,
.app-simulator__collection-heading svg {
  width: 14px;
  height: 14px;
}

.app-simulator__add-icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-flex;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.62;
  transition: opacity 0.1s linear;
}

.app-simulator__add-icon:hover {
  opacity: 1;
}

.app-simulator__add-icon::before,
.app-simulator__add-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: #fafafa;
  transform: translate(-50%, -50%);
}

.app-simulator__add-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.app-simulator__collection-heading {
  min-height: 32px;
  margin-bottom: 2px;
  padding: 0 8px 0 0;
  border-radius: 4px;
  color: rgba(211, 211, 211, 0.86);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.1s linear, color 0.1s linear;
}

.app-simulator__collection-heading:hover {
  background-color: var(--app-surface-hover);
  color: var(--app-text);
}

.app-simulator__collections li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  overflow: hidden;
  padding-left: 30px;
  border-radius: 4px;
  color: rgba(211, 211, 211, 0.72);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: background-color 0.1s linear, color 0.1s linear;
}

.app-simulator__collections li:hover {
  background-color: var(--app-surface-hover);
  color: var(--app-text);
}

.app-simulator__collections li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 2px;
  object-fit: cover;
}

.app-simulator__collections li span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-simulator__content {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--app-bg);
}

.app-simulator__header {
  height: 73px;
  min-height: 73px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--app-border);
  background: var(--app-bg);
}

.app-simulator__header h2 {
  color: var(--app-text);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.app-simulator__header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--app-text);
}

.app-simulator__header-actions > svg {
  width: 18px;
  height: 18px;
}

.app-simulator__search {
  width: 210px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(211, 211, 211, 0.06);
  background: var(--app-surface);
  color: var(--app-muted);
  font-size: 14px;
  font-weight: 500;
}

.app-simulator__search svg {
  width: 16px;
  height: 16px;
}

.app-simulator__home {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
  overflow: hidden;
  padding: 12px 36px 18px 36px;
}

.app-simulator__recommended,
.app-simulator__top-rated {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
}

.app-simulator__recommended h3,
.app-simulator__top-rated h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--app-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.app-simulator__fire {
  width: 16px;
  height: 16px;
  color: rgba(211, 211, 211, 0.85);
  opacity: 0.85;
  stroke-width: 1.8;
}

.app-simulator__hero-capsule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.app-simulator__hero-capsule-card,
.app-simulator__wide-card {
  --pb-cover-prerender-size: 200%;
  --pb-cover-rest-scale: 0.5;
  --pb-cover-hover-scale: 0.515;
  position: relative;
  contain: paint;
  overflow: hidden;
  border-radius: 4px;
  background-color: #101010;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.app-simulator__hero-capsule-card:hover,
.app-simulator__wide-card:hover {
  background-color: #121212;
}

.app-simulator__hero-capsule-card::before,
.app-simulator__wide-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--pb-cover-prerender-size);
  height: var(--pb-cover-prerender-size);
  background-color: inherit;
  background-image: var(--cover);
  background-attachment: inherit;
  background-blend-mode: inherit;
  background-position: center;
  background-repeat: inherit;
  background-size: cover;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translate3d(-50%, -50%, 0) scale(var(--pb-cover-rest-scale));
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.2s ease !important;
  will-change: transform;
  pointer-events: none;
}

.app-simulator__hero-capsule-card:hover::before,
.app-simulator__wide-card:hover::before {
  transform: translate3d(-50%, -50%, 0) scale(var(--pb-cover-hover-scale));
}

.app-simulator__hero-capsule-card {
  aspect-ratio: 374 / 448;
}

.app-simulator__wide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 12px;
}

.app-simulator__wide-card {
  aspect-ratio: 460 / 215;
}

.app-simulator__hero-capsule-card::after,
.app-simulator__wide-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 45%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(5, 5, 5, 0.55) 50%, rgba(11, 11, 11, 0.9));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.app-simulator__hero-capsule-card:hover::after,
.app-simulator__wide-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.app-simulator__hero-capsule-card span,
.app-simulator__wide-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  padding: 26px 10px 8px;
  color: #fafafa;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.18;
  opacity: 0;
  text-overflow: ellipsis;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.app-simulator__hero-capsule-card:hover span,
.app-simulator__wide-card:hover span {
  opacity: 1;
  transform: translateY(0);
}

.app-simulator__wide-card span {
  font-size: 14px;
  padding: 22px 10px 8px;
}

.app-simulator__content::before,
.app-simulator__content::after {
  content: "";
  position: absolute;
  right: 0;
  z-index: 5;
  width: 9px;
  pointer-events: none;
}

.app-simulator__content::before {
  top: 73px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.app-simulator__content::after {
  top: 73px;
  height: 194px;
  background: rgba(211, 211, 211, 0.15);
}

.quick-info,
.database-section,
.game-headers {
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.database-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.quick-info {
  box-sizing: border-box;
  padding: clamp(2px, 0.8vh, 8px) 24px clamp(8px, 1.4vh, 16px);
  display: flex;
  align-items: center;
}

.quick-info__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 24px;
}

.quick-info__col {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color var(--motion-base) var(--ease);
}

.quick-info__col:hover {
  border-color: var(--border-hover);
}

.quick-info__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.quick-info__icon svg {
  width: 20px;
  height: 20px;
  color: var(--text-strong);
}

.quick-info__col h3 {
  font-size: 15px;
}

.quick-info__col p,
.game-headers__sub {
  color: var(--text-muted);
  line-height: 1.65;
}

.game-headers {
  overflow: hidden;
  padding: 0 0 clamp(18px, 3vh, 32px);
  border-bottom: 1px solid var(--border);
}

.game-headers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.game-headers__intro {
  margin-bottom: 22px;
  text-align: center;
}

.game-headers__title {
  margin-bottom: 8px;
  font-size: 22px;
}

.game-headers__sub {
  max-width: 520px;
  margin: 0 auto;
  font-size: 14px;
}

.game-headers__marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.game-headers__track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: scrollHeaders 90s linear infinite;
  will-change: transform;
}

.game-header-card {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  aspect-ratio: 460 / 215;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
}

.game-header-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08) 60%, rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: 1;
}

.game-header-card__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px 16px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.game-header-card:hover::before,
.game-header-card:focus-within::before {
  opacity: 1;
}

.game-header-card:hover .game-header-card__title,
.game-header-card:focus-within .game-header-card__title {
  opacity: 1;
  transform: translateY(0);
}

.game-header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-count {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 3vh, 34px) 24px clamp(20px, 3vh, 34px);
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.game-count__number {
  display: block;
  margin-bottom: 16px;
  color: var(--text-strong);
  font-family: var(--font-stat);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.05em;
  line-height: 1;
}

.game-count__label {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Top Navigation Bar */
.site-topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  display: inline-flex;
  align-items: stretch;
  max-width: calc(100vw - 32px);
  overflow: visible;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -14px);
  transition: opacity var(--motion-base) var(--ease),
              transform var(--motion-base) var(--ease),
              border-color var(--motion-fast) var(--ease);
}

.site-topbar--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-topbar:hover {
  border-color: var(--border-hover);
}

.site-topbar__nav {
  display: inline-flex;
  align-items: stretch;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-topbar__nav::-webkit-scrollbar {
  display: none;
}

.site-topbar__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-right: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: var(--weight-medium);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--motion-fast) var(--ease), border-color var(--motion-fast) var(--ease);
}

.site-topbar__home-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
  background: url("ghost-solid.png") center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.58;
  transition: opacity var(--motion-fast) var(--ease);
}

.site-topbar__nav a:hover .site-topbar__home-icon,
.site-topbar__nav a:focus-visible .site-topbar__home-icon {
  opacity: 0.95;
}

.site-topbar__nav a:hover,
.site-topbar__nav a:focus-visible {
  color: var(--text-strong);
  outline: none;
}

.lang-switch-dropdown {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  font-family: var(--font-sans);
}

.lang-switch-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  background: var(--bg);
  border: 0;
  border-radius: 0;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: var(--weight-medium);
  transition: color var(--motion-fast) var(--ease);
}

.lang-switch-dropdown__trigger:hover {
  color: var(--text-strong);
}

.lang-switch-dropdown__globe-icon {
  width: 15px;
  height: 15px;
  color: currentColor;
}

.lang-switch-dropdown__chevron-icon {
  width: 14px;
  height: 14px;
  color: currentColor;
  transform: rotate(90deg);
  transition: transform var(--motion-base) var(--ease);
}

.lang-switch-dropdown--open .lang-switch-dropdown__chevron-icon {
  transform: rotate(0deg);
}

.lang-switch-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 140px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 0;
  margin: 0;
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.lang-switch-dropdown--open .lang-switch-dropdown__menu {
  display: flex;
}

.lang-switch-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: background var(--motion-fast) var(--ease), color var(--motion-fast) var(--ease);
}

.lang-switch-dropdown__item:hover {
  color: var(--text-strong);
}

.lang-switch-dropdown__radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--motion-fast) var(--ease);
}

.lang-switch-dropdown__item:hover .lang-switch-dropdown__radio {
  border-color: var(--text-strong);
}

/* Active styles */
html[lang="en"] .lang-switch-dropdown__item[data-lang="en"] {
  color: var(--text-strong);
}

html[lang="pt"] .lang-switch-dropdown__item[data-lang="pt"] {
  color: var(--text-strong);
}

html[lang="en"] .lang-switch-dropdown__item[data-lang="en"] .lang-switch-dropdown__radio,
html[lang="pt"] .lang-switch-dropdown__item[data-lang="pt"] .lang-switch-dropdown__radio {
  border-color: var(--text-strong);
}

html[lang="en"] .lang-switch-dropdown__item[data-lang="en"] .lang-switch-dropdown__radio::after,
html[lang="pt"] .lang-switch-dropdown__item[data-lang="pt"] .lang-switch-dropdown__radio::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-strong);
}

/* Dynamic Language Display Rules */
html[lang="en"] :lang(pt) {
  display: none !important;
}
html[lang="pt"] :lang(en) {
  display: none !important;
}

/* Subscription Plans Section */
.paid-features {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: clamp(56px, 9vh, 92px) 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.paid-features__container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.subscription-plans__header {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  width: 100%;
}

.subscription-plans__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subscription-plans__eyebrow-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background: currentColor;
  mask: url("ghost-solid.png") center / contain no-repeat;
  -webkit-mask: url("ghost-solid.png") center / contain no-repeat;
}

.subscription-plans__eyebrow-premium {
  font-weight: var(--weight-bold);
}

.subscription-plans__header h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: var(--weight-bold);
  line-height: 1.12;
}

.subscription-plans__header p {
  max-width: 560px;
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
}

.subscription-plans__grid {
  display: grid;
  grid-template-columns: minmax(560px, 660px) 380px 380px;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.subscription-plan-card:nth-of-type(1) {
  grid-column: 2;
}

.subscription-plan-card:nth-of-type(2) {
  grid-column: 3;
}

.subscription-plans__canvas-container {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  justify-self: start;
}

#ghost-particle-canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: transparent;
}

@media (max-width: 1100px) {
  .subscription-plans__grid {
    grid-template-columns: repeat(2, minmax(0, 380px));
  }

  .subscription-plan-card:nth-of-type(1),
  .subscription-plan-card:nth-of-type(2) {
    grid-column: auto;
  }

  .subscription-plans__canvas-container {
    display: none;
  }
}

.subscription-plan-card {
  position: relative;
  display: grid;
  min-height: 460px;
  grid-template-rows: auto 1fr auto;
  gap: 30px;
  padding: 42px 30px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  transition: border-color var(--motion-base) var(--ease);
}

.subscription-plan-card:hover {
  border-color: var(--border-hover);
}

.subscription-plan-card:hover > .subscription-plan-card__badge {
  border-color: var(--border-hover);
}

.subscription-plan-card--disabled:hover {
  border-color: var(--border);
  background-color: var(--bg-dark);
}

.subscription-plan-card--disabled:hover > .subscription-plan-card__badge {
  border-color: var(--border);
}

.subscription-plan-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg-dark);
  color: var(--text-strong);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: border-color var(--motion-fast) var(--ease);
  white-space: nowrap;
}

.subscription-plan-card__top {
  display: grid;
  justify-items: center;
  gap: 28px 12px;
  text-align: center;
}

.subscription-plan-card__top h4 {
  margin: 0;
  color: var(--text-strong);
  font-size: 16px;
  font-weight: var(--weight-semibold);
}

.subscription-plan-card__top span {
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.3;
}

.subscription-plan-card__price {
  color: var(--text-strong);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: -0.05em;
}

.subscription-plan-card__benefits {
  display: grid;
  align-content: start;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.subscription-plan-card__benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  transition: color var(--motion-base) var(--ease);
}

.subscription-plan-card__benefits li:hover {
  color: var(--text-strong);
}

.subscription-plan-card__benefits li svg {
  flex: 0 0 auto;
}

.subscription-plan-card__benefit--disabled {
  opacity: 0.48;
}

.subscription-plan-card__savings {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.subscription-plan-card__savings strong {
  color: var(--text-strong);
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: 0;
  line-height: 1;
}

.subscription-plan-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--border-ui);
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  color: var(--text-strong);
  cursor: pointer;
  font-size: 13px;
  font-weight: var(--weight-bold);
  transition: border-color var(--motion-fast) var(--ease),
              color var(--motion-fast) var(--ease),
              opacity var(--motion-fast) var(--ease);
}

.subscription-plan-card__action:hover,
.subscription-plan-card__action:focus-visible {
  border-color: var(--border-hover);
  outline: none;
}

.subscription-plan-card__action--disabled,
.subscription-plan-card__action--disabled:hover,
.subscription-plan-card__action--disabled:focus-visible {
  border-color: var(--border-subtle);
  color: var(--text-muted);
  cursor: default;
  opacity: 0.55;
}

.subscription-plan-card__action[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.7;
}

.subscription-plan-card__action:disabled {
  cursor: default;
  opacity: 0.48;
}

.subscription-plan-card__action:disabled:hover,
.subscription-plan-card__action:disabled:focus-visible {
  border-color: var(--border-ui);
  background: var(--bg-dark);
}

.subscription-plans__checkout {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  width: 100%;
  margin-top: 10px;
}

.subscription-plans__checkout > span {
  color: var(--text-faint);
  font-size: 12px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.subscription-plans__checkout > span strong {
  font-weight: var(--weight-bold);
}

.subscription-plans__payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.subscription-plans__payment-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.subscription-plans__payment-method img {
  height: 18px;
  width: auto;
  max-width: 34px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.subscription-plans__payment-method--card img {
  height: 20px;
  max-width: 38px;
}

.faq {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: clamp(36px, 6vh, 56px) 24px;
  background: var(--bg);
  display: flex;
  align-items: center;
  overflow-anchor: none;
  border-bottom: 1px solid var(--border);
}

.faq__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 54px;
  align-items: start;
}

.faq__content {
  min-width: 0;
}

.faq__title {
  margin-bottom: 26px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.faq__list {
  height: clamp(410px, 42vh, 470px);
  border-top: 1px solid var(--border);
  overflow: hidden;
  overflow-anchor: none;
}

.faq__item {
  width: 100%;
  border-bottom: 1px solid var(--border);
}

.faq__item summary {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 34px 20px 0;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  transition: color var(--motion-base) var(--ease);
}

.faq__item summary:hover,
.faq__item[open] summary {
  color: var(--text-strong);
}

.faq__item summary::marker {
  content: "";
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 2px;
  color: var(--text-muted);
  transform: translateY(-50%);
  transition: transform var(--motion-base) var(--ease), color var(--motion-base) var(--ease);
}

.faq__item summary:hover::after,
.faq__item[open] summary::after {
  color: var(--text-strong);
}

.faq__item[open] summary::after {
  content: "-";
}

.faq__answer {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: height 0.34s var(--ease), opacity 0.24s ease, transform 0.34s var(--ease);
}

.faq__item[open] .faq__answer {
  height: auto;
  opacity: 1;
  transform: translateY(0);
}

.faq__item.faq__item--closing .faq__answer {
  opacity: 0;
  transform: translateY(-8px);
}

.faq__answer p {
  max-width: 760px;
  padding: 0 34px 22px 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq__visual {
  width: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: end;
  padding-right: 0;
  background: transparent;
}

.faq__visual canvas {
  width: 240px;
  height: 240px;
  display: block;
  background: transparent;
  margin-left: auto;
}

.download {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: clamp(36px, 6vh, 56px) 24px;
  background: var(--bg);
  display: flex;
  align-items: center;
}

.download__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(300px, 0.85fr);
  grid-template-areas:
    "visual content"
    "action action"
    "note note";
  column-gap: clamp(26px, 3.4vw, 44px);
  row-gap: clamp(28px, 5vh, 54px);
  align-items: start;
}

.download__visual {
  grid-area: visual;
  min-height: 330px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  overflow: hidden;
}

.download-game-card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}

.download-game-card::before,
.download-game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.download-game-card::before {
  z-index: 0;
  background-image: var(--cover);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  transition: background-size 0.28s var(--ease);
  will-change: background-size;
}

.download-game-card:hover::before {
  background-size: auto 103%;
}

.download-game-card::after {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.32) 35%, rgba(0, 0, 0, 0) 68%), linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.48) 38%, transparent 68%);
}

.download-game-card__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  gap: 12px 16px;
}

.download-game-card__body h3 {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.download-game-card__body p {
  grid-column: 2;
  grid-row: 3;
  margin-bottom: 2px;
  color: var(--text-faint);
  font-size: 12px;
  justify-self: end;
  align-self: end;
  text-align: right;
  white-space: nowrap;
}

.download-game-card__tags {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-self: end;
}

.download-game-card__tags span {
  padding: 4px 9px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1;
}

.download__content {
  grid-area: content;
  padding-top: clamp(12px, 2vh, 24px);
  text-align: left;
  justify-self: start;
}

.download__title {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  white-space: nowrap;
}

.download__title-brand {
  font-weight: 500;
}

.download__text {
  max-width: 540px;
  margin: 0 0 26px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 14px;
}

.download__steps {
  max-width: 430px;
  margin: 0 0 34px;
  display: grid;
  gap: 14px;
  color: var(--text-muted);
  list-style: none;
  text-align: left;
}

.download__steps li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  column-gap: 12px;
  transition: color var(--motion-base) var(--ease);
}

.download__steps li:hover {
  color: var(--text-soft);
}

.download__steps span:first-child {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-strong);
  font-size: 12px;
  line-height: 1;
  transition: border-color var(--motion-base) var(--ease);
}

.download__steps li:hover span:first-child {
  border-color: var(--border-hover);
}

.download__button {
  grid-area: action;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-ui);
  background: var(--bg);
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 500;
  justify-self: center;
  margin-top: 24px;
  transition: border-color var(--motion-fast) var(--ease);
}

.download__button:hover,
.download__button:focus-visible {
  border-color: var(--border-hover);
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  grid-column: 1 / -1;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 12px;
}

.legal-links a {
  color: inherit;
  text-decoration: none;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--text-strong);
}

.download__note {
  grid-area: note;
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

.download__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--text-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.72;
  transition: opacity var(--motion-fast) var(--ease);
}

.download__link:hover {
  opacity: 1;
}

.policy-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
  color: var(--text-strong);
}

.policy-page__card {
  width: min(680px, 100%);
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--border-subtle);
  background: var(--bg-dark);
}

.policy-page__card--wide {
  width: min(820px, 100%);
}

.policy-page__eyebrow {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-page h1 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.policy-page p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.policy-page__button {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--border-ui);
  border-radius: var(--radius-sm);
  color: var(--text-strong);
  text-decoration: none;
}

.policy-page__button:hover,
.policy-page__button:focus-visible {
  border-color: var(--border-hover);
}

.anim {
  opacity: 0;
}

.anim--fade-up {
  animation: fadeUp 0.28s var(--ease) forwards;
}

.anim-d1 { animation-delay: 0.03s; }
.anim-d2 { animation-delay: 0.06s; }
.anim-d3 { animation-delay: 0.09s; }
.anim-d4 { animation-delay: 0.12s; }
.anim-d5 { animation-delay: 0.15s; }
.anim-d6 { animation-delay: 0.18s; }

@keyframes fadeUp {
  from {
    opacity: 0.45;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollHeaders {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .game-headers__track {
    animation: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 16px 0 24px;
  }

  .hero__container {
    margin-top: clamp(12px, 3vh, 28px);
  }

  .showcase-carousel {
    height: auto;
    padding: clamp(20px, 4vh, 40px) 16px clamp(60px, 8vh, 90px);
  }

  .showcase-card {
    width: min(1100px, 96vw);
  }

  .app-simulator {
    font-size: 8px;
  }

  .app-simulator__titlebar {
    height: 28px;
    min-height: 28px;
  }

  .app-simulator__brand {
    gap: 6px;
    padding-left: 9px;
    font-size: 8px;
  }

  .app-simulator__logo {
    width: 12px;
    height: 12px;
  }

  .app-simulator__window-controls span {
    width: 28px;
    height: 27px;
  }

  .app-simulator__sidebar {
    width: 118px;
    min-width: 118px;
    gap: 8px;
    padding: 8px;
  }

  .app-simulator__profile {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 7px;
    min-height: 34px;
  }

  .app-simulator__profile img {
    width: 30px;
    height: 30px;
  }

  .app-simulator__profile strong {
    font-size: 9px;
  }

  .app-simulator__profile svg {
    display: none;
  }

  .app-simulator__nav {
    gap: 2px;
  }

  .app-simulator__nav-item {
    min-height: 19px;
    gap: 6px;
    padding: 4px 5px;
    font-size: 7px;
  }

  .app-simulator__nav-item svg {
    width: 10px;
    height: 10px;
  }

  .app-simulator__section-title,
  .app-simulator__collection-heading,
  .app-simulator__collections li {
    font-size: 7px;
  }

  .app-simulator__section-title {
    margin-bottom: 4px;
  }

  .app-simulator__add-icon {
    width: 18px;
    height: 18px;
    background-size: 11px 11px;
  }

  .app-simulator__collection-heading {
    min-height: 18px;
  }

  .app-simulator__collections li {
    min-height: 16px;
    gap: 4px;
    padding-left: 15px;
    line-height: 12px;
  }

  .app-simulator__collections li:nth-child(n+4) {
    display: none;
  }

  .app-simulator__collections li img {
    width: 10px;
    height: 10px;
  }

  .app-simulator__header {
    height: 38px;
    min-height: 38px;
    gap: 8px;
    padding: 8px 10px;
  }

  .app-simulator__header h2 {
    font-size: 11px;
  }

  .app-simulator__header-actions {
    gap: 8px;
  }

  .app-simulator__header-actions > svg {
    width: 12px;
    height: 12px;
  }

  .app-simulator__search {
    width: 92px;
    height: 22px;
    gap: 5px;
    padding: 0 7px;
    border-radius: 6px;
    font-size: 7px;
  }

  .app-simulator__search svg {
    width: 10px;
    height: 10px;
  }

  .app-simulator__home {
    gap: 9px;
    padding: 8px;
  }

  .app-simulator__recommended,
  .app-simulator__top-rated {
    gap: 6px;
  }

  .app-simulator__recommended h3,
  .app-simulator__top-rated h3 {
    gap: 5px;
    font-size: 7px;
  }

  .app-simulator__fire {
    width: 9px;
    height: 9px;
  }

  .app-simulator__hero-capsule-grid,
  .app-simulator__wide-grid {
    gap: 5px;
  }

  .app-simulator__hero-capsule-card,
  .app-simulator__wide-card {
    border-radius: 5px;
  }

  .app-simulator__hero-capsule-card span,
  .app-simulator__wide-card span {
    padding: 14px 5px 5px;
    font-size: 7px;
  }

  .app-simulator__content::before,
  .app-simulator__content::after {
    display: none;
  }

  .quick-info__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .paid-features {
    padding: 64px 20px;
  }

  .paid-features__container {
    gap: 28px;
  }

  .subscription-plans__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .subscription-plan-card {
    min-height: 0;
  }

  .faq {
    padding: 64px 20px;
  }

  .faq__container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq__list {
    height: auto;
    min-height: 430px;
    overflow: visible;
  }

  .faq__visual {
    min-height: 220px;
  }

  .faq__visual canvas {
    width: 160px;
    height: 160px;
  }

  .download {
    padding: 64px 20px;
  }

  .download__container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "content"
      "action"
      "note";
    gap: 36px;
  }

  .download__visual {
    min-height: 220px;
  }

  .download-game-card {
    min-height: 220px;
  }

  .download-game-card__body h3 {
    font-size: 16px;
  }

  .game-header-card {
    width: 180px;
  }

  .game-headers__track {
    gap: 12px;
  }
}
