:root {
  --bg: #050305;
  --panel: rgba(19, 12, 18, .78);
  --panel-2: rgba(10, 8, 10, .9);
  --text: #f8f6f8;
  --muted: #b9adb7;
  --pink: #ff2e92;
  --pink-light: #ff8ac3;
  --line: rgba(255, 70, 157, .18);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at 50% 5%, rgba(255, 20, 125, .09), transparent 28rem),
    linear-gradient(180deg, #030203 0%, #080407 46%, #030203 100%);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.ambient {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: .09;
  z-index: -1;
}
.ambient-one { background: #ff007d; top: 8rem; left: -20rem; }
.ambient-two { background: #9d1aff; top: 65rem; right: -24rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  padding: 0 max(24px, calc((100vw - var(--max))/2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 3, 5, .72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.brand img {
  width: 82px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

nav { display: flex; gap: 30px; }
nav a { color: var(--muted); font-size: .9rem; font-weight: 600; }
nav a:hover { color: #fff; }

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 50px;
}

.hero-logo-wrap {
  width: min(760px, 90vw);
  margin-bottom: 12px;
  position: relative;
}
.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 20% 15%;
  z-index: -1;
  background: #ff007d;
  filter: blur(90px);
  opacity: .18;
}
.hero-logo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
}

.eyebrow {
  color: var(--pink-light);
  font-size: .74rem;
  letter-spacing: .22em;
  font-weight: 800;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
  letter-spacing: -.065em;
  line-height: .92;
  margin: 0;
  max-width: 900px;
}
h1 span {
  color: #ff4fa2;
  text-shadow: 0 0 28px rgba(255,46,146,.26);
}

.hero-copy,
.section-heading > p:last-child {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.75;
}
.hero-copy {
  max-width: 720px;
  margin: 30px auto 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero .button-row { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: .92rem;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }

.primary {
  background: linear-gradient(135deg, #ff147d, #ff4fa2);
  color: white;
  box-shadow: 0 12px 40px rgba(255, 20, 125, .18);
}
.secondary {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
}
.disabled { opacity: .6; cursor: default; }
.disabled:hover { transform: none; }

.section-heading { max-width: 760px; margin-bottom: 42px; }
h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -.045em;
  margin: 0 0 20px;
}
h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -.035em;
  margin: 10px 0 18px;
}

.game-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.game-art {
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,34,139,.15), transparent 44%),
    #050305;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.game-art img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.game-copy {
  padding: clamp(34px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.game-copy > p:not(.mini-label) {
  color: var(--muted);
  line-height: 1.75;
}
.mini-label {
  color: var(--pink-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.studio-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
  max-width: 880px;
}
.studio-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
}
.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--pink-light);
  font-weight: 800;
}

.follow { text-align: center; }
.social-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.social-grid a {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.social-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(255,46,146,.38);
  background: rgba(255,46,146,.045);
}
.social-grid span {
  color: var(--muted);
  font-size: .8rem;
  margin-bottom: 6px;
}
.social-grid strong { font-size: .92rem; overflow-wrap: anywhere; }
.disabled-link { opacity: .58; }

footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 130px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #756a73;
  border-top: 1px solid rgba(255,255,255,.055);
  font-size: .8rem;
}
footer img {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  opacity: .7;
}

@media (max-width: 850px) {
  .game-card { grid-template-columns: 1fr; }
  .game-art { min-height: 360px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-header { height: 66px; }
  .brand img { width: 64px; height: 44px; }
  nav { gap: 16px; }
  nav a { font-size: .78rem; }
  .section { width: min(calc(100% - 28px), var(--max)); padding: 76px 0; }
  .hero { min-height: calc(100vh - 66px); padding-top: 24px; }
  .hero-logo-wrap { width: 100%; }
  .hero-copy { font-size: .98rem; }
  .button-row { flex-direction: column; }
  .button { width: 100%; }
  .social-grid { grid-template-columns: 1fr; }
  footer { width: min(calc(100% - 28px), var(--max)); }
}
