:root {
  --bg: #090b0d;
  --bg-2: #0d1013;
  --panel: rgba(12, 16, 20, 0.88);
  --panel-soft: rgba(16, 20, 24, 0.72);
  --line: rgba(214, 173, 104, 0.24);
  --line-strong: rgba(214, 173, 104, 0.42);
  --gold: #d6ad68;
  --gold-soft: #e4c58c;
  --blood: #9b1f1b;
  --ivory: #f3eee4;
  --muted: #b1aba0;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 12%, rgba(134, 25, 20, .14), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(214, 173, 104, .08), transparent 22%),
    linear-gradient(180deg, #06080a 0%, #0a0d10 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(0,0,0,0));
}
.page-noise {
  position: fixed;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  z-index: 40;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px max(20px, 3.4vw);
  background: linear-gradient(180deg, rgba(5,7,9,.94), rgba(8,10,13,.82));
  border-bottom: 1px solid rgba(214, 173, 104, .16);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: min(290px, 28vw); min-width: 160px; height: auto; object-fit: contain; }
.main-nav { display: flex; justify-content: center; gap: clamp(18px, 2.3vw, 34px); }
.main-nav a {
  color: #ddd8cf;
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color .2s ease, opacity .2s ease;
}
.main-nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}
.language-switcher button {
  border: 0;
  background: transparent;
  color: #9e9a92;
  font-weight: 700;
  font-size: 11px;
  padding: 7px 8px;
  cursor: pointer;
}
.language-switcher button.active { background: rgba(214,173,104,.14); color: var(--gold); }
.small-cta {
  border: 1px solid rgba(214,173,104,.55);
  padding: 11px 16px;
  color: #ead5aa;
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .08em;
  transition: .2s ease;
}
.small-cta:hover { background: rgba(157,27,24,.26); border-color: #c96155; }
.menu-toggle { display: none; background: transparent; color: var(--ivory); border: 0; font-size: 26px; cursor: pointer; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 54px;
  overflow: hidden;
  background-image: url('../assets/hero-wallpaper.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,9,10,.26) 0%, rgba(8,9,11,.08) 22%, rgba(7,8,10,.34) 74%, rgba(8,10,11,.95) 100%);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 8%, rgba(255,255,255,.04), transparent 26%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 520px;
}
.hero-copy-minimal { max-width: 820px; }
.hero-strap {
  margin: 0;
  color: rgba(245,241,232,.92);
  font-family: Georgia, serif;
  font-size: clamp(13px, 1.6vw, 20px);
  letter-spacing: .42em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0,0,0,.58);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid rgba(214,173,104,.55);
  font-family: Georgia, serif;
  font-size: 16px;
  letter-spacing: .10em;
  transition: transform .2s ease, filter .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff0dd;
  background: linear-gradient(180deg, rgba(142,27,22,.94), rgba(92,14,11,.98));
  border-color: rgba(225, 146, 99, .78);
  box-shadow: 0 18px 34px rgba(53,8,7,.28), inset 0 0 0 1px rgba(255,255,255,.04);
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-secondary {
  color: #efe4ce;
  background: linear-gradient(180deg, rgba(9,15,22,.78), rgba(7,11,15,.94));
  border-color: rgba(214,173,104,.52);
}
.btn-secondary:hover { border-color: rgba(238,198,124,.84); }
.status-strip {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  color: #c9b69a;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.status-strip span { display: inline-flex; gap: 8px; align-items: center; }
.status-strip i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fc774;
  box-shadow: 0 0 12px rgba(111,199,116,.75);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 108px 24px;
}
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading.compact { margin-bottom: 36px; }
.section-kicker {
  color: var(--gold);
  letter-spacing: .32em;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.section-heading h2, .chronicle h2, .download h2 {
  margin: 12px 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -.02em;
}
.section-heading p, .chronicle p, .download p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 16px;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  min-height: 270px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #101316;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  filter: saturate(.72) brightness(.46);
  transform: scale(1.04);
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,8,10,.06), rgba(7,8,10,.84));
}
.feature-card-world::before { background-image: url('../assets/hero-wallpaper.png'); background-position: 28% 64%; }
.feature-card-combat::before { background-image: url('../assets/hero-wallpaper.png'); background-position: 58% 60%; }
.feature-card-destiny::before { background-image: url('../assets/hero-wallpaper.png'); background-position: 80% 42%; }
.feature-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.feature-number { color: var(--gold); font-size: 12px; letter-spacing: .22em; }
.feature-card h3 {
  margin: 12px 0 10px;
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 28px;
}
.feature-card p { margin: 0; color: #c2bbb0; line-height: 1.62; }

.feature-showcase { padding-top: 26px; }
.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.showcase-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  min-height: 196px;
  padding: 28px;
  border: 1px solid rgba(214,173,104,.18);
  background: linear-gradient(135deg, rgba(18,22,27,.92), rgba(10,12,15,.82));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.card-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214,173,104,.38);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 30px;
}
.showcase-card span { color: #a48051; font-size: 10px; letter-spacing: .18em; font-weight: 700; }
.showcase-card h3 { font-family: Georgia, serif; font-size: 26px; font-weight: 500; margin: 8px 0 10px; }
.showcase-card p { margin: 0; color: #b0aaa0; line-height: 1.65; }

.chronicle {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 112px 24px;
  overflow: hidden;
  border-top: 1px solid rgba(214,173,104,.10);
  border-bottom: 1px solid rgba(214,173,104,.12);
}
.chronicle::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-wallpaper.png');
  background-size: cover;
  background-position: center 54%;
  filter: grayscale(.28) brightness(.16) saturate(.54);
  transform: scale(1.03);
}
.chronicle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,9,11,.96) 0%, rgba(7,9,11,.55) 50%, rgba(7,9,11,.96) 100%);
}
.chronicle-inner { position: relative; z-index: 2; max-width: 760px; text-align: center; }
.chronicle h2 { color: #f0e3cc; letter-spacing: .08em; }
.chronicle blockquote {
  margin: 34px auto 0;
  padding-top: 24px;
  max-width: 520px;
  border-top: 1px solid var(--line);
  color: #d6b57b;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-card {
  min-height: 268px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(16,20,24,.92), rgba(10,12,15,.95));
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214,173,104,.30);
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}
.news-date { color: var(--gold); font-size: 10px; letter-spacing: .18em; }
.news-card h3 { margin: 48px 0 12px; font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.news-card p { color: #a6a199; line-height: 1.62; margin: 0; }

.download {
  border-top: 1px solid rgba(214,173,104,.12);
  background: linear-gradient(90deg, rgba(157,27,24,.12), transparent 34%), linear-gradient(180deg, #0d1013, #0a0d10);
}
.download-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.download-inner > div:first-child { max-width: 760px; }
.download-actions { min-width: 280px; display: grid; gap: 10px; text-align: center; }
.download-actions small { color: #837d73; }
.download-actions .btn { min-width: 280px; }

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 36px max(24px, 4vw);
  border-top: 1px solid rgba(255,255,255,.06);
  background: #07090a;
  color: #8e8a83;
  font-size: 12px;
}
.footer-brand img { width: min(220px, 34vw); height: auto; opacity: .98; }
.site-footer p { margin: 0; text-align: center; }
.footer-links { display: flex; gap: 16px; }
.footer-links a:hover { color: var(--gold); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero { background-position: center top; }
  .hero-content { padding-top: 430px; }
  .world-grid, .news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto 1fr; gap: 14px; }
  .menu-toggle { display: block; justify-self: end; }
  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 22px 6vw;
    background: rgba(7,9,10,.98);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .header-actions { justify-self: end; }
  .small-cta { display: none; }
  .showcase-grid { grid-template-columns: 1fr; }
  .download-inner { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: grid; justify-items: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 720px) {
  .site-header { min-height: 68px; padding: 8px 16px; }
  .brand-logo { width: 185px; }
  .language-switcher button { padding: 6px; }
  .hero { min-height: 660px; padding: 92px 16px 34px; }
  .hero-content { padding-top: 310px; gap: 18px; }
  .hero-strap { letter-spacing: .24em; line-height: 1.6; }
  .hero-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .btn { width: 100%; min-width: 0; }
  .status-strip { gap: 12px; font-size: 10px; }
  .section { padding: 82px 18px; }
  .section-heading h2, .chronicle h2, .download h2 { font-size: 38px; }
  .showcase-card { grid-template-columns: 1fr; }
  .download-inner { padding: 64px 18px; }
  .download-actions { width: 100%; min-width: 0; }
  .download-actions .btn { min-width: 0; width: 100%; }
}
