:root {
  color-scheme: dark;
  --bg: #07080a;
  --bg-soft: #101318;
  --panel: rgba(19, 23, 29, 0.78);
  --panel-strong: rgba(26, 30, 37, 0.94);
  --text: #f2eee7;
  --muted: #a9a39a;
  --line: rgba(242, 238, 231, 0.14);
  --accent: #b12a31;
  --accent-bright: #df4c51;
  --gold: #b9965a;
  --steel: #70808c;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 8%, rgba(177, 42, 49, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(112, 128, 140, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 28px 28px,
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.18), rgba(7, 8, 10, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 120px);
}

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand-mark,
.nav-links,
.language-picker,
.social-row,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand-mark {
  gap: 12px;
  text-decoration: none;
}

.brand-sigil {
  display: grid;
  width: 58px;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.brand-sigil img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-family: Cinzel, serif;
  letter-spacing: 0;
}

.brand-mark small {
  color: var(--muted);
  font-size: 0.74rem;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.contact-grid a:hover {
  color: var(--text);
}

.language-picker {
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.language-picker select {
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(16, 19, 24, 0.92);
  color: var(--text);
  padding: 8px 10px;
  font: inherit;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.82fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 62px 0 88px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
}

h1,
h2 {
  font-family: Cinzel, Georgia, serif;
}

h1 {
  max-width: 760px;
  overflow: visible;
  padding-right: 0.08em;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
}

h1 span {
  display: block;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.game-title {
  width: fit-content;
  margin: 8px 0 0;
  color: transparent;
  background: linear-gradient(90deg, var(--text), var(--gold), var(--accent-bright));
  background-clip: text;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.hero-lede,
.section-heading p,
.profile-section p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.hero-lede {
  margin-top: 22px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
}

.button-primary {
  border-color: rgba(223, 76, 81, 0.75);
  background: linear-gradient(135deg, var(--accent), #64191e);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.045);
}

.social-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-row a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(16, 19, 24, 0.72);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 150, 90, 0.75);
  background: rgba(177, 42, 49, 0.2);
}

.social-row svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-art {
  min-width: 0;
}

.mountain-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 420px;
  border: 1px solid rgba(242, 238, 231, 0.16);
  background: #11151b;
  box-shadow: var(--shadow);
}

.mountain-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0) 46%, rgba(7, 8, 10, 0.74) 100%),
    linear-gradient(90deg, rgba(7, 8, 10, 0.28), transparent 38%, rgba(7, 8, 10, 0.2));
}

.mountain-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 760px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 22px;
  background:
    linear-gradient(180deg, transparent, rgba(7, 8, 10, 0.88)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 16px),
    rgba(16, 19, 24, 0.82);
}

.showcase-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.02) 35%, rgba(7, 8, 10, 0.9) 100%);
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.environment-card img {
  object-position: center 45%;
}

.boss-card img {
  object-position: center 24%;
}

.showcase-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.large-card {
  grid-row: span 2;
  min-height: 500px;
}

.showcase-caption span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.showcase-caption strong {
  max-width: 400px;
  font-family: Cinzel, serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pillar {
  min-height: 260px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 22px;
}

.pillar span {
  color: var(--accent-bright);
  font-family: Cinzel, serif;
  font-weight: 800;
}

.pillar h3 {
  margin-top: 34px;
  font-size: 1.18rem;
}

.pillar p {
  color: var(--muted);
}

.profile-section {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-section {
  padding-bottom: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.contact-grid a {
  display: grid;
  min-height: 64px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 24px 0 42px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
  }

  .hero,
  .profile-section {
    grid-template-columns: 1fr;
  }

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

  .mountain-card {
    min-height: 360px;
  }

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

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand language"
      "nav nav";
    align-items: center;
    gap: 8px 16px;
    padding: 10px 0 12px;
  }

  .brand-mark {
    grid-area: brand;
  }

  .brand-sigil {
    width: 46px;
    height: 34px;
  }

  .brand-sigil img {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    grid-area: nav;
    order: initial;
    width: auto;
    gap: 18px;
    overflow-x: auto;
    padding: 0;
    font-size: 0.82rem;
  }

  .language-picker {
    grid-area: language;
    width: auto;
    justify-content: flex-end;
  }

  .language-picker > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .language-picker select {
    min-width: 62px;
    padding: 7px 8px;
  }

  .hero {
    gap: 34px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(2.35rem, 12.8vw, 4.2rem);
  }

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

  .section {
    padding: 62px 0;
  }

  .showcase-grid,
  .pillar-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .large-card,
  .showcase-card {
    min-height: 270px;
  }

  .pillar {
    min-height: 210px;
  }

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