:root {
  --ink: #17151f;
  --muted: #64606f;
  --paper: #fbfaf7;
  --line: rgba(23, 21, 31, 0.12);
  --lime: #c6f05d;
  --coral: #ff705d;
  --cyan: #54c7ec;
  --violet: #7656d8;
  --deep: #101017;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(18, 17, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: #fff;
  background: linear-gradient(180deg, rgba(16, 16, 23, 0.7), rgba(16, 16, 23, 0));
  animation: header-drop 700ms ease both;
}

.brand,
.nav-links,
.header-action,
.button {
  min-height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(198, 240, 93, 0.78);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(198, 240, 93, 0.22), transparent 34%),
    radial-gradient(circle at 74% 26%, rgba(255, 255, 255, 0.92), transparent 12%),
    linear-gradient(135deg, rgba(84, 199, 236, 0.92), rgba(118, 86, 216, 0.86) 48%, rgba(255, 112, 93, 0.92));
  box-shadow:
    0 0 26px rgba(84, 199, 236, 0.46),
    0 0 54px rgba(198, 240, 93, 0.22),
    inset 0 0 20px rgba(255, 255, 255, 0.22);
  isolation: isolate;
  animation: logo-float 3.2s ease-in-out infinite;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  z-index: 0;
}

.brand-mark::before {
  width: 88px;
  height: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  transform: rotate(-28deg);
  animation: logo-scan 2.6s linear infinite;
}

.brand-mark::after {
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 11px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 62% 72%, 62% 100%, 0 100%);
}

.logo-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(16, 16, 23, 0.88);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 12px rgba(198, 240, 93, 0.95);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.22);
}

.logo-orbit {
  position: absolute;
  z-index: 1;
  display: block;
  border: 1px solid rgba(198, 240, 93, 0.72);
  border-radius: 50%;
}

.logo-orbit-one {
  width: 45px;
  height: 18px;
  animation: logo-orbit-one 2.8s linear infinite;
}

.logo-orbit-two {
  width: 18px;
  height: 45px;
  border-color: rgba(255, 255, 255, 0.52);
  animation: logo-orbit-two 3.4s linear infinite;
}

.logo-pixel,
.logo-spark {
  position: absolute;
  z-index: 3;
  display: block;
}

.logo-pixel {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(198, 240, 93, 0.9);
  animation: logo-pixel-blink 1.4s steps(2, end) infinite;
}

.logo-pixel-one {
  top: 9px;
  left: 11px;
}

.logo-pixel-two {
  right: 10px;
  bottom: 10px;
  background: #fff;
  animation-delay: 500ms;
}

.logo-spark {
  right: 7px;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 16px rgba(255, 112, 93, 0.9);
  animation: logo-spark 1.8s ease-in-out infinite;
}

.brand-name {
  font-size: 15px;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--lime);
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 76px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: #101017;
  background: var(--lime);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(198, 240, 93, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.language-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.language-toggle:hover,
.language-switcher.is-open .language-toggle {
  box-shadow: 0 20px 38px rgba(198, 240, 93, 0.32);
  transform: translateY(-2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 92px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(16, 16, 23, 0.92);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.language-menu button {
  min-width: 70px;
  height: 36px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-menu button:hover,
.language-menu button.is-active {
  color: #101017;
  background: var(--lime);
  transform: translateY(-1px);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 700;
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-2px) rotate(-2deg);
  }
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-scan {
  0% {
    transform: translateX(-54px) rotate(-28deg);
  }

  100% {
    transform: translateX(54px) rotate(-28deg);
  }
}

@keyframes logo-orbit-one {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes logo-orbit-two {
  from {
    transform: rotate(90deg);
  }

  to {
    transform: rotate(450deg);
  }
}

@keyframes logo-pixel-blink {
  0%,
  45% {
    opacity: 0.24;
    transform: scale(0.8);
  }

  46%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logo-spark {
  0%,
  100% {
    transform: scale(0.72);
    opacity: 0.72;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes soft-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panel-glow {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes game-frame-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(0.985);
  }
}

@keyframes runner-bob {
  0%,
  100% {
    transform: translateY(0) rotate(-14deg);
  }

  50% {
    transform: translateY(-10px) rotate(-10deg);
  }
}

@keyframes speed-line {
  from {
    transform: translateX(26px);
    opacity: 0;
  }

  30%,
  70% {
    opacity: 0.85;
  }

  to {
    transform: translateX(-110px);
    opacity: 0;
  }
}

@keyframes orbit-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes castle-flag {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes social-shine {
  0% {
    opacity: 0;
    transform: translateX(-42px) rotate(24deg);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(42px) rotate(24deg);
  }
}

@keyframes youtube-pop {
  0%,
  100% {
    transform: translateY(-3px) scale(1.08);
  }
  45% {
    transform: translateY(-5px) scale(1.18);
  }
}

@keyframes instagram-spin {
  0%,
  100% {
    transform: translateY(-3px) scale(1.08) rotate(0deg);
  }
  55% {
    transform: translateY(-5px) scale(1.12) rotate(-8deg);
  }
}

@keyframes x-pulse {
  0%,
  100% {
    box-shadow: 0 16px 28px rgba(23, 21, 31, 0.2);
  }
  50% {
    box-shadow: 0 16px 36px rgba(84, 199, 236, 0.46);
  }
}

.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #111018;
}

#hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 23, 0.96) 0%, rgba(16, 16, 23, 0.88) 42%, rgba(16, 16, 23, 0.22) 72%, rgba(16, 16, 23, 0.08) 100%),
    linear-gradient(180deg, rgba(16, 16, 23, 0.22), rgba(16, 16, 23, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 70px;
  animation: hero-copy-in 900ms 120ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(58px, 11vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  animation: soft-rise 800ms 300ms ease both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--lime);
  color: #17151f;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(680px, 100%);
  margin: 42px 0 0;
  animation: soft-rise 900ms 420ms ease both;
}

.hero-stats div {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 14px;
}

.hero-stats dt {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 52px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-strip {
  padding-top: 32px;
  padding-bottom: 32px;
  background: var(--lime);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.intro-grid p {
  margin: 0;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.24;
  animation: soft-rise 800ms ease both;
}

.platforms-section {
  background:
    linear-gradient(135deg, rgba(84, 199, 236, 0.14), rgba(255, 112, 93, 0.1)),
    #17151f;
  color: #fff;
}

.platforms-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.platform-groups {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.platform-group {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  animation: soft-rise 900ms ease both;
}

.platform-group:nth-child(2) {
  animation-delay: 120ms;
}

.platform-group::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(198, 240, 93, 0.13), transparent 45%);
  content: "";
  pointer-events: none;
  animation: panel-glow 4s ease-in-out infinite;
}

.platform-group-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.platform-group-heading span {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--lime);
  color: #17151f;
  font-size: 20px;
}

.platform-type-icon::before,
.platform-type-icon::after {
  position: absolute;
  content: "";
}

.mobile-icon::before {
  width: 16px;
  height: 25px;
  border: 3px solid #17151f;
  border-radius: 6px;
}

.mobile-icon::after {
  bottom: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #17151f;
}

.pc-icon::before {
  top: 8px;
  width: 24px;
  height: 16px;
  border: 3px solid #17151f;
  border-radius: 4px;
}

.pc-icon::after {
  bottom: 8px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #17151f;
  box-shadow: 0 -5px 0 -1px #17151f;
}

.platform-group-heading h3 {
  margin: 0;
  font-size: 28px;
}

.platform-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.platform-group:nth-child(2) .platform-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.platform-badge {
  display: grid;
  min-height: 118px;
  place-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px 14px;
  background: rgba(16, 16, 23, 0.72);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  animation: badge-float 4s ease-in-out infinite;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.platform-badge:nth-child(2) {
  animation-delay: 350ms;
}

.platform-badge:nth-child(3) {
  animation-delay: 700ms;
}

.platform-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 240, 93, 0.66);
  background: rgba(16, 16, 23, 0.92);
  animation-play-state: paused;
}

.platform-badge img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(84, 199, 236, 0.28));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.5fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  grid-template-columns: minmax(0, 760px);
}

.section-heading h2,
.studio-grid h2,
.contact-grid h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.studio-copy p,
.contact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

#games .section-heading {
  grid-template-columns: minmax(0, 780px);
  align-items: start;
  gap: 12px;
}

#games .section-heading h2 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 900;
  line-height: 0.96;
}

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

.game-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  animation: soft-rise 850ms ease both;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.game-card:nth-child(2) {
  animation-delay: 120ms;
}

.game-card:nth-child(3) {
  animation-delay: 240ms;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 82px rgba(18, 17, 25, 0.22);
}

.featured-game-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  background: #101017;
  color: #fff;
}

.featured-game-card .game-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-game-card .game-body h3 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.featured-game-card .game-body p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.72;
}

.featured-game-card .game-meta {
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: 0.04em;
}

.featured-game-card .tags span {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.game-art {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: #15151d;
}

.game-art::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  content: "";
  animation: game-frame-pulse 3.6s ease-in-out infinite;
}

.game-art span {
  position: absolute;
  display: block;
}

.game-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.art-void-hunters {
  min-height: 440px;
  background: #0b0b10;
}

.art-void-hunters::before {
  display: none;
}

.art-void-hunters::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(16, 16, 23, 0.04), rgba(16, 16, 23, 0.42)),
    linear-gradient(180deg, transparent 62%, rgba(16, 16, 23, 0.5));
  content: "";
  pointer-events: none;
  animation: void-art-breathe 5s ease-in-out infinite;
}

.art-void-hunters img {
  transform: scale(1);
  transition: opacity 220ms ease, transform 700ms ease;
}

.art-void-hunters.is-switching img {
  opacity: 0.18;
  transform: scale(1.035);
}

.void-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.void-thumb {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0;
  background: #111018;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.void-thumb::after {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 23, 0.26);
  content: "";
  transition: opacity 180ms ease;
}

.void-thumb:hover,
.void-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.void-thumb:hover::after,
.void-thumb.is-active::after {
  opacity: 0;
}

.void-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@keyframes void-art-breathe {
  0%,
  100% {
    opacity: 0.64;
  }

  50% {
    opacity: 0.92;
  }
}

.art-velocity {
  background:
    linear-gradient(130deg, rgba(255, 112, 93, 0.95), rgba(84, 199, 236, 0.9)),
    #111018;
}

.art-velocity span:nth-child(1) {
  width: 46px;
  height: 150px;
  left: 34%;
  bottom: 48px;
  border-radius: 26px 26px 8px 8px;
  background: #fff;
  transform: rotate(-14deg);
  animation: runner-bob 1.4s ease-in-out infinite;
}

.art-velocity span:nth-child(2),
.art-velocity span:nth-child(3) {
  width: 170px;
  height: 10px;
  right: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.art-velocity span:nth-child(2) {
  top: 88px;
  animation: speed-line 1.6s linear infinite;
}

.art-velocity span:nth-child(3) {
  top: 128px;
  right: 66px;
  animation: speed-line 1.6s 300ms linear infinite;
}

.art-orbit {
  background:
    radial-gradient(circle at 50% 45%, #fef9d7 0 8%, transparent 9%),
    radial-gradient(circle at 50% 45%, transparent 0 28%, rgba(255, 255, 255, 0.42) 29% 30%, transparent 31%),
    linear-gradient(145deg, #7656d8, #17151f);
}

.art-orbit span {
  border-radius: 50%;
}

.art-orbit span:nth-child(1) {
  width: 76px;
  height: 76px;
  left: 26%;
  top: 35%;
  background: var(--lime);
  animation: orbit-pulse 2.4s ease-in-out infinite;
}

.art-orbit span:nth-child(2) {
  width: 44px;
  height: 44px;
  right: 25%;
  top: 26%;
  background: var(--coral);
  animation: orbit-pulse 2.4s 250ms ease-in-out infinite;
}

.art-orbit span:nth-child(3) {
  width: 62px;
  height: 62px;
  right: 31%;
  bottom: 18%;
  background: var(--cyan);
  animation: orbit-pulse 2.4s 500ms ease-in-out infinite;
}

.art-kingdom {
  background:
    linear-gradient(180deg, rgba(84, 199, 236, 0.95), rgba(198, 240, 93, 0.7)),
    #f5f0e8;
}

.art-kingdom span:nth-child(1) {
  left: 23%;
  bottom: 58px;
  width: 54%;
  height: 86px;
  border-radius: 8px 8px 0 0;
  background: #fff7e6;
}

.art-kingdom span:nth-child(2) {
  left: 34%;
  bottom: 144px;
  width: 32%;
  height: 78px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: var(--coral);
  animation: castle-flag 2s ease-in-out infinite;
}

.art-kingdom span:nth-child(3) {
  right: 20%;
  bottom: 58px;
  width: 36px;
  height: 122px;
  border-radius: 8px 8px 0 0;
  background: #17151f;
}

.game-body {
  padding: 24px;
}

.game-meta {
  margin: 0 0 10px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.game-body h3,
.capability-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.game-body p,
.capability-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: #4c4857;
  font-size: 12px;
  font-weight: 700;
}

.studio-section {
  background: var(--deep);
  color: #fff;
}

.studio-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.studio-copy {
  display: grid;
  gap: 20px;
}

.studio-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.capability-grid article {
  border-top: 3px solid var(--ink);
  padding: 22px 0 0;
}

.capability-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--cyan);
  color: #101017;
  font-size: 22px;
}

.contact-section {
  background: #f1eee7;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.social-card {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 118px;
  overflow: hidden;
  border: 1px solid rgba(23, 21, 31, 0.12);
  border-radius: var(--radius);
  padding: 16px 12px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 22px 48px rgba(23, 21, 31, 0.12);
  font-size: 15px;
  font-weight: 900;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.social-card::before {
  position: absolute;
  inset: -1px;
  z-index: -2;
  content: "";
  opacity: 0.92;
  transition: transform 360ms ease;
}

.social-card::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: calc(var(--radius) - 1px);
  background: rgba(255, 255, 255, 0.88);
  content: "";
}

.social-card .social-icon::after {
  position: absolute;
  width: 18px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  content: "";
  filter: blur(1px);
  opacity: 0;
  transform: translateX(-42px) rotate(24deg);
}

.social-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 16px 28px rgba(23, 21, 31, 0.2);
  transition: transform 220ms ease;
}

.social-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-card.youtube .social-icon svg,
.social-card.x-platform .social-icon svg {
  fill: currentColor;
  stroke: none;
}

.social-card.instagram::before {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 45%, #6228d7);
}

.social-card.youtube::before {
  background: linear-gradient(135deg, #ff4d4d, #c90000);
}

.social-card.x-platform::before {
  background: linear-gradient(135deg, #17151f, #54c7ec);
}

.social-card.instagram .social-icon {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 45%, #6228d7);
}

.social-card.youtube .social-icon {
  border-radius: 17px;
  background: linear-gradient(135deg, #ff2e2e, #c90000);
}

.social-card.x-platform .social-icon {
  background: #17151f;
}

.social-card:hover {
  border-color: rgba(23, 21, 31, 0.24);
  box-shadow: 0 30px 58px rgba(23, 21, 31, 0.18);
  transform: translateY(-6px);
}

.social-card:hover::before {
  transform: scale(1.08) rotate(2deg);
}

.social-card:hover .social-icon {
  transform: translateY(-3px) scale(1.08);
}

.social-card:hover .social-icon::after {
  animation: social-shine 620ms ease;
}

.social-card.youtube:hover .social-icon {
  animation: youtube-pop 650ms ease;
}

.social-card.instagram:hover .social-icon {
  animation: instagram-spin 680ms ease;
}

.social-card.x-platform:hover .social-icon {
  animation: x-pulse 700ms ease;
}

.contact-grid > .social-links {
  grid-column: 1;
}

.contact-form {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  display: none;
  margin: 0;
  border: 1px solid rgba(35, 131, 75, 0.24);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #1f6f45;
  background: rgba(198, 240, 93, 0.24);
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #3f3b49;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 21, 31, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--deep);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    margin-right: 18px;
    width: min(660px, calc(100% - 36px));
  }

  .section-heading,
  .intro-grid,
  .platform-groups,
  .studio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-column: auto;
    grid-row: auto;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

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

  .featured-game-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 14px;
  }

  .brand-name {
    max-width: 120px;
    line-height: 1.05;
  }

  .header-action {
    display: none;
  }

  .language-toggle {
    min-width: 48px;
    width: 48px;
    padding: 0;
  }

  .language-toggle .current-language {
    display: none;
  }

  .language-menu {
    right: -2px;
  }

  .hero {
    min-height: 98svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(16, 16, 23, 0.9) 0%, rgba(16, 16, 23, 0.84) 55%, rgba(16, 16, 23, 0.38) 100%),
      linear-gradient(90deg, rgba(16, 16, 23, 0.78), rgba(16, 16, 23, 0.2));
  }

  .hero h1 {
    font-size: clamp(52px, 18vw, 76px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .game-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .platform-list,
  .platform-group:nth-child(2) .platform-list {
    grid-template-columns: 1fr;
  }

  .game-art {
    min-height: 250px;
  }

  .art-void-hunters {
    min-height: 290px;
  }

  .void-gallery {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

.thanks-page {
  min-height: 100svh;
  color: #fff;
  background:
    radial-gradient(circle at 72% 22%, rgba(84, 199, 236, 0.34), transparent 26%),
    radial-gradient(circle at 25% 72%, rgba(255, 112, 93, 0.26), transparent 28%),
    #101017;
}

.thanks-screen {
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: 34px;
  width: min(720px, calc(100% - 36px));
  margin: 0 auto;
}

.thanks-brand {
  color: #fff;
}

.thanks-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.thanks-card h1 {
  margin: 0;
  font-size: clamp(38px, 8vw, 72px);
  line-height: 1;
}

.thanks-card p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.6;
}
