:root {
  color-scheme: dark;
  --ink: #fff8fc;
  --muted: #d8c9d7;
  --subtle: #a996aa;
  --dark: #090612;
  --dark-2: #13091f;
  --panel: rgba(18, 11, 31, 0.82);
  --panel-2: rgba(35, 16, 45, 0.84);
  --pink: #ff5f91;
  --pink-strong: #ff2f74;
  --violet: #7c3aed;
  --blue: #4a8dff;
  --cyan: #33d6ff;
  --gold: #f5bd48;
  --paper: #fff8fc;
  --paper-2: #f7f9ff;
  --paper-ink: #170b17;
  --paper-muted: #624f5e;
  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(255, 255, 255, 0.26);
  --card-line: rgba(54, 22, 45, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --shadow-hot: 0 28px 90px rgba(255, 47, 116, 0.23);
  --radius: 8px;
  --max: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--dark);
  font-family: "Chakra Petch", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::selection {
  color: #ffffff;
  background: var(--pink-strong);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
a {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid rgba(74, 141, 255, 0.86);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #ffffff;
  background: #111827;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 68px;
  padding: 10px 12px;
  background: rgba(9, 6, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 6, 18, 0.94);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 8px;
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink-strong), var(--violet) 60%, var(--blue));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 95, 145, 0.16), 0 14px 40px rgba(255, 47, 116, 0.25);
  font-family: "Russo One", "Chakra Petch", sans-serif;
  font-size: 20px;
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-family: "Russo One", "Chakra Petch", sans-serif;
  font-size: 18px;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  gap: 8px;
  color: #ffffff;
  background: var(--pink-strong);
  box-shadow: 0 14px 36px rgba(255, 47, 116, 0.3);
}

.header-cta svg,
.button-icon,
.link-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  --mx: 0;
  --my: 0;
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  padding: 132px 24px 76px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: -26px;
  z-index: -3;
  content: "";
  background-image: linear-gradient(90deg, rgba(5, 3, 10, 0.97) 0%, rgba(10, 4, 16, 0.78) 38%, rgba(10, 4, 16, 0.28) 70%),
    linear-gradient(0deg, rgba(9, 6, 18, 0.82), rgba(9, 6, 18, 0.08));
  transform: translate3d(calc(var(--mx) * -14px), calc(var(--my) * -10px), 0) scale(1.03);
  transition: transform 220ms var(--ease);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 36%;
  content: "";
  background: linear-gradient(0deg, var(--dark), rgba(9, 6, 18, 0));
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 46%, rgba(255, 95, 145, 0.18) 47%, transparent 50% 100%);
  background-size: 48px 48px, 48px 48px, 220px 220px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
}

.hero-video {
  position: absolute;
  inset: -26px;
  z-index: -5;
  width: calc(100% + 52px);
  height: calc(100% + 52px);
  object-fit: cover;
  opacity: 0;
  transform: translate3d(calc(var(--mx) * -10px), calc(var(--my) * -8px), 0) scale(1.04);
  transition: opacity 700ms var(--ease), transform 220ms var(--ease);
}

.hero.video-ready .hero-video {
  opacity: 1;
}

.hero.video-ready .game-backdrops {
  opacity: 0;
}

.game-backdrops {
  position: absolute;
  inset: -26px;
  z-index: -4;
  overflow: hidden;
  transition: opacity 700ms var(--ease);
}

.game-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center right;
  background-size: cover;
  transform: translate3d(calc(var(--mx) * -10px), calc(var(--my) * -8px), 0) scale(1.04);
  transition: transform 220ms var(--ease);
}

.backdrop-genshin {
  background-image: url("/assets/official-genshin.webp");
  opacity: 1;
}

.backdrop-hsr {
  animation-delay: 6s;
}

.backdrop-zzz {
  animation-delay: 12s;
}

.hero.backdrops-ready .game-backdrop {
  animation: game-backdrop-cycle 24s infinite;
}

.hero-art {
  position: absolute;
  right: max(18px, calc((100vw - var(--max)) / 2 - 18px));
  bottom: -34px;
  z-index: 0;
  width: min(35vw, 430px);
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.42));
  transform: translate3d(calc(var(--mx) * 10px), calc(var(--my) * 10px), 0);
  transition: transform 220ms var(--ease);
}

.hero-live-card {
  position: absolute;
  right: 58%;
  bottom: 18%;
  width: 154px;
  padding: 14px 16px;
  color: #ffffff;
  background: rgba(15, 8, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hot);
  backdrop-filter: blur(10px);
}

.hero-live-card span,
.hero-live-card strong {
  display: block;
}

.hero-live-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-live-card strong {
  margin-top: 2px;
  font-size: 18px;
  line-height: 1.1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: auto;
}

.hero-copy-block {
  max-width: 740px;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #42ffb5;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(66, 255, 181, 0.16);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: "Russo One", "Chakra Petch", sans-serif;
  font-size: 76px;
  font-weight: 400;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.55), 0 0 44px rgba(255, 95, 145, 0.28);
}

h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: "Russo One", "Chakra Petch", sans-serif;
  font-size: 42px;
  font-weight: 400;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.32) 46%, transparent 58% 100%);
  transform: translateX(-125%);
}

.button:hover::after {
  animation: cta-shine 720ms var(--ease);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink-strong), var(--violet));
  box-shadow: 0 18px 46px rgba(255, 47, 116, 0.28);
}

.button-primary:hover {
  box-shadow: 0 22px 62px rgba(255, 47, 116, 0.36);
}

.button-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.platform-dock {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: 22px;
}

.platform-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  overflow: hidden;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.platform-chip::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.22) 48%, transparent 58% 100%);
  transform: translateX(-120%);
}

.platform-chip:hover::after {
  animation: chip-sheen 720ms var(--ease);
}

.platform-chip svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.platform-chip .brand-icon {
  fill: currentColor;
  stroke: none;
}

.platform-chip .brand-icon path {
  fill: currentColor;
  stroke: none;
}

.chip-youtube {
  border-color: rgba(255, 0, 0, 0.38);
}

.chip-tiktok {
  border-color: rgba(51, 214, 255, 0.38);
}

.chip-discord {
  border-color: rgba(88, 101, 242, 0.42);
}

.chip-line {
  border-color: rgba(6, 199, 85, 0.42);
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 810px;
  margin: 40px 0 0;
}

.hero-signals div {
  min-height: 104px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-signals div:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.hero-signals dt {
  color: var(--pink);
  font-family: "Russo One", "Chakra Petch", sans-serif;
  font-size: 18px;
}

.hero-signals dd {
  margin: 8px 0 0;
  color: #ffffff;
  font-weight: 700;
}

.section {
  padding: 86px 24px;
  scroll-margin-top: 104px;
}

.section-light,
.section-dark,
.section-showcase,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

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

.section-heading {
  max-width: 770px;
}

.section-heading > p:not(.eyebrow),
.contact-panel > p {
  color: var(--muted);
  font-size: 18px;
}

.links-section {
  position: relative;
  color: var(--paper-ink);
  background: linear-gradient(180deg, #fff8fc 0%, #f6f8ff 100%);
}

.links-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.78;
  background-image: linear-gradient(rgba(33, 18, 28, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 18, 28, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.links-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.profile-panel {
  position: sticky;
  top: 110px;
  padding: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #f0dce6;
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(66, 23, 45, 0.09);
}

.profile-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 134px;
  content: "";
  background-image: linear-gradient(90deg, rgba(255, 47, 116, 0.88), rgba(74, 141, 255, 0.52)),
    url("/assets/official-genshin.webp");
  background-position: center right;
  background-size: cover;
}

.profile-avatar {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 104px;
  margin: 54px 0 22px;
  background-color: #120913;
  background-image: url("/assets/geargumi-avatar.webp");
  background-position: center;
  background-size: cover;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(255, 47, 116, 0.22);
}

.profile-panel .eyebrow {
  color: #b51f55;
}

.profile-panel h2 {
  margin-bottom: 10px;
}

.profile-panel p {
  color: #544350;
}

.profile-email {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.profile-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: #16213d;
  background: #f7f9ff;
  border: 1px solid #dfe6fa;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.link-hub {
  display: grid;
  gap: 24px;
}

.link-group {
  display: grid;
  gap: 12px;
}

.link-group-heading {
  margin-bottom: 4px;
}

.link-group-heading .eyebrow {
  color: #b51f55;
  margin-bottom: 6px;
}

.link-group-heading h3 {
  color: var(--paper-ink);
}

.link-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 14px 16px 14px 14px;
  overflow: hidden;
  color: var(--paper-ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  box-shadow: 0 12px 42px rgba(66, 23, 45, 0.07);
  text-decoration: none;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.link-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--pink-strong), var(--blue));
}

.link-card::after {
  position: absolute;
  inset: -35% -25%;
  pointer-events: none;
  content: "";
  opacity: 0;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.55) 48%, transparent 58% 100%);
  transform: translateX(-48%) rotate(8deg);
  transition: opacity 180ms ease, transform 260ms var(--ease);
}

.link-card:hover {
  background: #ffffff;
  border-color: rgba(255, 47, 116, 0.35);
  box-shadow: 0 18px 54px rgba(66, 23, 45, 0.12);
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-2px);
}

.link-card:hover::after {
  opacity: 1;
  transform: translateX(42%) rotate(8deg);
}

.link-thumb {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink-strong), var(--violet));
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 12px 28px rgba(20, 8, 30, 0.16);
}

.link-thumb svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.link-thumb .brand-icon {
  fill: currentColor;
  stroke: none;
}

.link-thumb .brand-icon path {
  fill: currentColor;
  stroke: none;
}

.thumb-genshin {
  background: linear-gradient(135deg, #22c1c3, #5b8cff);
}

.thumb-zzz {
  background: linear-gradient(135deg, #111827, #facc15);
}

.thumb-hsr {
  background: linear-gradient(135deg, #2658ff, #9a5cff);
}

.thumb-wuwa {
  background: linear-gradient(135deg, #0f766e, #34d399);
}

.thumb-tipme {
  background: linear-gradient(135deg, #ff9d00, #ff5f1f);
}

.thumb-website {
  background: linear-gradient(135deg, #ff2f74, #7c3aed);
}

.thumb-youtube {
  background: linear-gradient(135deg, #ff0033, #b00020);
}

.thumb-discord {
  background: linear-gradient(135deg, #5865f2, #3847c7);
}

.thumb-tiktok {
  background: linear-gradient(135deg, #020617, #00f2ea 55%, #ff0050);
}

.thumb-line {
  background: linear-gradient(135deg, #06c755, #04943f);
}

.thumb-facebook {
  background: linear-gradient(135deg, #1877f2, #0b4fb3);
}

.thumb-email {
  background: linear-gradient(135deg, #475569, #111827);
}

.link-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.link-copy strong {
  color: var(--paper-ink);
  font-size: 17px;
  line-height: 1.25;
}

.link-copy span {
  color: var(--paper-muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.link-action {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: #160b14;
  border-radius: 50%;
}

.section-light {
  color: var(--paper-ink);
  background: var(--paper);
}

.section-light .eyebrow {
  color: #b51f55;
}

.section-light .section-heading > p {
  color: #4a3c46;
}

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

.work-card {
  min-height: 320px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #f0dce6;
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(66, 23, 45, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-card:hover {
  box-shadow: 0 24px 70px rgba(66, 23, 45, 0.12);
  transform: translateY(-3px);
}

.work-card p {
  margin: 0;
  color: #5f4d59;
}

.icon-shell {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--pink-strong);
  background: #fff0f6;
  border: 1px solid #ffd0df;
  border-radius: 50%;
}

.icon-shell svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.section-dark {
  background: var(--dark);
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px 22px;
  min-height: 116px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.timeline-row span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.timeline-row strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
}

.timeline-row p {
  grid-column: 2;
  margin: -8px 0 0;
  color: var(--muted);
}

.section-showcase {
  color: #150910;
  background: #f7f9ff;
}

.section-showcase .eyebrow {
  color: #2d60c7;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list p {
  margin: 0;
  padding: 20px 22px;
  color: #473b46;
  background: #ffffff;
  border: 1px solid #dfe6fa;
  border-radius: var(--radius);
}

.proof-list strong {
  color: #10182b;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: #120913;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.42;
  background-image: url("/assets/official-genshin.webp");
  background-position: center right;
  background-size: cover;
}

.contact-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(9, 6, 18, 0.96), rgba(9, 6, 18, 0.74));
}

.contact-panel {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 24px;
  color: var(--muted);
  background: #08050b;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

.links-page {
  min-height: 100dvh;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 47, 116, 0.34), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(79, 124, 255, 0.3), transparent 32%),
    linear-gradient(145deg, #130713 0%, #111327 52%, #090612 100%);
}

.links-page::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    url("/assets/geargumi-hero.webp");
  background-position: center, center, center top;
  background-size: 36px 36px, 36px 36px, cover;
}

.bio-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  min-height: 100dvh;
  margin: 0 auto;
  padding: 24px 18px 44px;
}

.bio-profile {
  display: grid;
  justify-items: center;
  padding: 10px 0 16px;
  text-align: center;
}

.bio-home-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 8px;
  padding: 0 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.bio-home-link svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.bio-avatar {
  width: 112px;
  height: 112px;
  margin: 4px 0 16px;
  background-color: #120913;
  background-image: url("/assets/geargumi-avatar.webp");
  background-position: center;
  background-size: cover;
  border: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 20px 52px rgba(255, 47, 116, 0.3);
}

.links-page .eyebrow {
  color: #ff6fa0;
}

.links-page h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 10vw, 58px);
}

.bio-email {
  margin: 6px 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.bio-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.bio-link-stack {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.bio-link-stack + .bio-link-stack {
  margin-top: 26px;
}

.bio-group-heading {
  margin-bottom: 2px;
}

.bio-group-heading .eyebrow {
  margin-bottom: 4px;
}

.bio-group-heading h2 {
  color: #ffffff;
  font-size: 22px;
}

.links-page .link-card {
  min-height: 78px;
  border-color: rgba(255, 255, 255, 0.26);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(4, 2, 10, 0.28);
}

.links-page .link-card:hover {
  transform: translateY(-2px);
}

.links-page .link-card:focus-visible,
.bio-home-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.links-page .link-copy strong {
  font-size: 16px;
}

.links-page .link-action {
  background: #140914;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cta-shine {
  100% {
    transform: translateX(125%);
  }
}

@keyframes chip-sheen {
  0%,
  56% {
    transform: translateX(-120%);
  }
  80%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes game-backdrop-cycle {
  0%,
  28% {
    opacity: 1;
  }
  34%,
  94% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero-art {
    opacity: 0.74;
    right: -10px;
    width: 330px;
  }
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-art {
    width: 300px;
    opacity: 0.56;
  }

  .hero-live-card {
    display: none;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-signals,
  .work-grid,
  .links-layout,
  .studio-layout,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-signals {
    max-width: 620px;
  }

  .profile-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 899px) {
  .hero-video {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    border-radius: 24px;
  }

  .brand-symbol {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-subtitle,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 102px 18px 34px;
  }

  .hero::before {
    background-image: linear-gradient(180deg, rgba(5, 3, 10, 0.84) 0%, rgba(8, 4, 16, 0.74) 44%, rgba(8, 4, 16, 0.94) 100%);
  }

  .game-backdrop {
    background-position: center top;
  }

  .hero-video {
    display: none;
  }

  .hero-backdrop {
    mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  }

  .hero-art {
    right: -82px;
    bottom: 38px;
    width: 250px;
    opacity: 0.34;
  }

  .hero-art img {
    filter: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-copy,
  .section-heading > p:not(.eyebrow),
  .contact-panel > p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .platform-dock {
    gap: 8px;
    margin-top: 18px;
  }

  .platform-chip {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .platform-chip svg {
    width: 18px;
    height: 18px;
  }

  .hero-signals {
    margin-top: 24px;
  }

  .section {
    padding: 62px 18px;
  }

  .links-layout {
    gap: 22px;
  }

  .profile-panel {
    padding: 22px;
  }

  .profile-panel::before {
    height: 112px;
  }

  .profile-avatar {
    width: 84px;
    height: 84px;
    margin-top: 44px;
    margin-bottom: 18px;
  }

  .profile-email {
    font-size: 15px;
  }

  .link-card {
    grid-template-columns: 48px minmax(0, 1fr) 40px;
    gap: 10px;
    min-height: 72px;
    padding: 11px 12px;
    box-shadow: 0 10px 30px rgba(66, 23, 45, 0.07);
  }

  .link-card::after {
    display: none;
  }

  .link-thumb {
    width: 42px;
    height: 42px;
  }

  .link-thumb svg {
    width: 21px;
    height: 21px;
  }

  .link-copy strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .link-copy span {
    font-size: 12px;
  }

  .link-action {
    width: 38px;
    height: 38px;
  }

  .hero-signals div {
    min-height: 78px;
    padding: 14px 16px;
  }

  .hero-signals dt {
    font-size: 16px;
  }

  .hero-signals dd {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.35;
  }

  .work-card {
    min-height: auto;
    padding: 24px;
  }

  .timeline-row {
    grid-template-columns: 1fr;
  }

  .timeline-row p {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 390px) {
  .platform-chip {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .link-card {
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    gap: 9px;
    min-height: 68px;
    padding: 10px 11px;
  }

  .link-thumb {
    width: 38px;
    height: 38px;
  }

  .link-thumb svg {
    width: 20px;
    height: 20px;
  }

  .link-copy strong {
    font-size: 14px;
    line-height: 1.22;
  }

  .link-copy span {
    font-size: 11px;
  }

  .link-action {
    grid-column: auto;
    justify-self: center;
    width: 34px;
    height: 34px;
    margin-top: 0;
  }

  .link-action svg {
    width: 16px;
    height: 16px;
  }
}

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

  .hero,
  .link-card {
    --mx: 0 !important;
    --my: 0 !important;
    --rx: 0deg !important;
    --ry: 0deg !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
