:root {
  --ink: #0f171e;
  --ink-soft: #18242e;
  --paper: #f2f0e9;
  --paper-warm: #e7e2d6;
  --line: rgba(15, 23, 30, .14);
  --muted: #667079;
  --accent: #d7e647;
  --accent-deep: #bbcc2f;
  --rust: #db6147;
  --white: #fff;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 46px;
  padding: 0 clamp(18px, 3vw, 52px);
  color: #e9edef;
  background: #111a22;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: clamp(14px, 2vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  overflow: hidden;
  border: 1px solid rgba(215, 230, 71, .5);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(215, 230, 71, .1), rgba(215, 230, 71, .02)),
    #1f2e28;
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, .18);
}

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

.brand-mark::before {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
}

.brand-mark::after {
  width: 17px;
  height: 1px;
  background: rgba(255, 255, 255, .28);
  box-shadow: 0 -6px 0 rgba(255, 255, 255, .08), 0 6px 0 rgba(255, 255, 255, .08);
  transform: rotate(-42deg);
}

.brand-mark i {
  position: relative;
  z-index: 1;
  width: 6px;
  height: 6px;
  border: 2px solid #111a22;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(215, 230, 71, .25);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 11px;
  letter-spacing: .025em;
  white-space: nowrap;
}

.brand-copy small {
  color: #89959d;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-navigation {
  display: flex;
  align-items: stretch;
  padding-left: clamp(8px, 1.6vw, 22px);
}

.navigation-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}

.site-navigation a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 clamp(9px, 1.1vw, 17px);
  color: #aeb6bc;
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
  transition: color .2s ease;
}

.site-navigation a::after {
  position: absolute;
  right: 14px;
  bottom: -1px;
  left: 14px;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible,
.site-navigation a.active,
.navigation-dropdown.active > a {
  color: #fff;
}

.site-navigation a.active::after,
.navigation-dropdown.active > a::after {
  transform: scaleX(1);
}

.nav-caret {
  width: 6px;
  height: 6px;
  margin: 0 0 4px 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease;
}

.navigation-dropdown:hover .nav-caret,
.navigation-dropdown:focus-within .nav-caret,
.navigation-dropdown.dropdown-open .nav-caret {
  transform: translateY(3px) rotate(225deg);
}

.map-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 240px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-top: 2px solid var(--accent);
  color: #dfe5e7;
  background: rgba(14, 23, 30, .98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease;
}

.navigation-dropdown:hover .map-dropdown,
.navigation-dropdown:focus-within .map-dropdown,
.navigation-dropdown.dropdown-open .map-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-navigation .map-dropdown a {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 43px;
  padding: 0 11px;
  border-radius: 3px;
  color: #c3cbd0;
}

.site-navigation .map-dropdown a::after {
  display: none;
}

.site-navigation .map-dropdown a:hover,
.site-navigation .map-dropdown a:focus-visible,
.site-navigation .map-dropdown a.current {
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

.map-dropdown-dot {
  width: 6px;
  height: 6px;
  border: 1px solid #78858b;
  border-radius: 50%;
}

.map-dropdown a.current .map-dropdown-dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(215, 230, 71, .12);
}

.map-dropdown-name {
  overflow: hidden;
  font-size: 11px;
  font-weight: 750;
  text-overflow: ellipsis;
}

.map-dropdown-action {
  color: #78858b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.map-dropdown-loading,
.map-dropdown-empty {
  display: block;
  padding: 12px 11px;
  color: #7f8b91;
  font-size: 10px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  height: 30px;
}

.header-actions .language-switch {
  align-self: center;
  margin-top: 0;
}

.language-switch select {
  height: 30px;
  min-height: 28px;
  padding: 3px 22px 3px 7px;
  border: 1px solid rgba(231, 239, 229, .18);
  border-radius: 5px;
  color: #dce5dc;
  background: rgba(13, 18, 15, .72);
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
}

.language-switch select:hover,
.language-switch select:focus-visible {
  border-color: rgba(155, 210, 126, .72);
  outline: none;
}

.support-link {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(200, 228, 75, .18);
}

.support-link:hover,
.support-link:focus-visible {
  color: #fff;
}

.map-link {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 40px;
  padding: 0 17px 0 20px;
  border-radius: 5px;
  color: #111a22;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .025em;
  transition: background .2s ease, transform .2s ease;
}

.map-link:hover,
.map-link:focus-visible {
  background: #e5f35d;
  transform: translateY(-1px);
}

.map-link span {
  font-size: 16px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 5px;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.site-page {
  overflow-x: hidden;
  background: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  min-height: min(790px, calc(100vh - 70px));
  padding: clamp(70px, 9vw, 138px) clamp(24px, 6vw, 100px) clamp(70px, 8vw, 116px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 23, 30, .035) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 30, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(24px, 6vw, 100px);
  width: 1px;
  content: "";
  background: var(--line);
}

.hero-glow {
  position: absolute;
  right: -100px;
  bottom: -250px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: rgba(215, 230, 71, .18);
  filter: blur(70px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 650px;
  padding-right: clamp(24px, 5vw, 82px);
}

.hero-kicker,
.section-kicker {
  margin: 0 0 24px;
  color: #657078;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero-kicker span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent-deep);
  box-shadow: 0 0 0 5px rgba(187, 204, 47, .14);
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 7.2vw, 108px);
  font-weight: 900;
  letter-spacing: -.068em;
  line-height: .84;
  text-transform: uppercase;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--ink);
}

.hero-lead {
  max-width: 560px;
  margin: 36px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--accent-deep);
  color: #4f5b64;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #f7f7f2;
  background: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #26333d;
}

.button-secondary {
  border-color: rgba(15, 23, 30, .24);
  background: rgba(255, 255, 255, .38);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: #68727a;
  font-size: 11px;
  font-weight: 700;
  list-style: none;
}

.hero-meta i {
  margin-right: 5px;
  color: #829214;
  font-style: normal;
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
  transform: rotate(1.2deg);
}

.map-card {
  padding: 9px;
  border: 1px solid rgba(15, 23, 30, .18);
  border-radius: 3px;
  background: #d9d4c8;
  box-shadow: 0 32px 80px rgba(15, 23, 30, .2);
}

.map-card-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 39px;
  padding: 0 14px;
  color: #8d999f;
  background: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
}

.map-card-bar > span:first-of-type {
  margin-left: auto;
}

.map-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f4f5ef;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.map-surface {
  position: relative;
  min-height: clamp(410px, 43vw, 610px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(37, 51, 43, .14) 1px, transparent 1px),
    linear-gradient(rgba(37, 51, 43, .14) 1px, transparent 1px),
    radial-gradient(circle at 48% 45%, #b9c7a2 0, #8ea27d 42%, #637a69 100%);
  background-size: 54px 54px, 54px 54px, auto;
}

.map-surface::before,
.map-surface::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.map-surface::before {
  inset: -20%;
  opacity: .58;
  background:
    repeating-radial-gradient(ellipse at 22% 36%, transparent 0 16px, rgba(39, 64, 47, .28) 17px 18px, transparent 19px 30px),
    repeating-radial-gradient(ellipse at 76% 68%, transparent 0 24px, rgba(49, 78, 55, .22) 25px 26px, transparent 27px 42px);
  transform: rotate(-12deg);
}

.map-surface::after {
  right: -5%;
  bottom: -21%;
  width: 76%;
  height: 54%;
  border: 2px solid rgba(222, 233, 203, .52);
  border-radius: 50% 50% 0 0;
  background: rgba(55, 91, 91, .72);
  box-shadow: inset 0 12px 28px rgba(16, 44, 48, .2);
  transform: rotate(-8deg);
}

.terrain {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(47, 71, 50, .3);
  border-radius: 47% 53% 45% 55%;
  background: rgba(68, 100, 60, .24);
}

.terrain-one {
  top: 10%;
  left: 8%;
  width: 31%;
  height: 24%;
  transform: rotate(18deg);
}

.terrain-two {
  top: 38%;
  left: 44%;
  width: 38%;
  height: 21%;
  transform: rotate(-12deg);
}

.terrain-three {
  top: 56%;
  left: 7%;
  width: 28%;
  height: 25%;
  transform: rotate(30deg);
}

.terrain-four {
  top: 6%;
  right: 5%;
  width: 23%;
  height: 27%;
  transform: rotate(48deg);
}

.map-route {
  position: absolute;
  z-index: 2;
  height: 3px;
  background: #f1d866;
  box-shadow: 0 0 0 1px rgba(42, 48, 34, .45);
  transform-origin: left center;
}

.route-one {
  top: 68%;
  left: 20%;
  width: 29%;
  transform: rotate(-28deg);
}

.route-two {
  top: 54%;
  left: 44%;
  width: 29%;
  transform: rotate(16deg);
}

.route-three {
  top: 62%;
  left: 70%;
  width: 17%;
  transform: rotate(-31deg);
}

.map-place {
  position: absolute;
  z-index: 3;
  color: rgba(21, 35, 27, .78);
  font-family: Georgia, serif;
  font-size: clamp(8px, .75vw, 11px);
  font-weight: 800;
  letter-spacing: .08em;
  text-shadow: 0 1px rgba(255, 255, 255, .48);
}

.place-one { top: 17%; left: 44%; }
.place-two { top: 49%; left: 34%; }
.place-three { right: 9%; bottom: 17%; }
.place-four { bottom: 21%; left: 13%; }

.map-pin,
.player-marker {
  position: absolute;
  z-index: 5;
}

.map-pin {
  width: 18px;
  height: 18px;
  border: 3px solid #f4f2e8;
  border-radius: 50% 50% 50% 0;
  background: var(--rust);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .32);
  transform: rotate(-45deg);
}

.map-pin i {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

.pin-one { top: 29%; left: 22%; }
.pin-two { top: 40%; right: 24%; }
.pin-three { right: 10%; bottom: 29%; }

.player-marker {
  top: 56%;
  left: 45%;
  width: 26px;
  height: 26px;
  border: 2px solid #f8f8ed;
  border-radius: 50%;
  background: #222f36;
  box-shadow: 0 0 0 7px rgba(34, 47, 54, .16);
}

.player-marker i {
  position: absolute;
  top: 5px;
  left: 8px;
  width: 7px;
  height: 12px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 100%, 50% 72%, 0 100%);
}

.map-coordinates {
  position: absolute;
  z-index: 6;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 1px 12px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #eff2eb;
  background: rgba(15, 23, 30, .88);
  font-size: 9px;
}

.map-coordinates small {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}

.map-coordinates strong {
  font-size: 9px;
  letter-spacing: .08em;
}

.loot-card {
  position: absolute;
  z-index: 8;
  top: 33%;
  left: 44%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding: 13px;
  border-left: 3px solid var(--accent);
  color: #f2f4ee;
  background: rgba(15, 23, 30, .92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
}

.loot-icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(215, 230, 71, .46);
  color: var(--accent);
  font-size: 18px;
}

.loot-card div {
  display: grid;
  gap: 2px;
}

.loot-card small {
  color: #87939a;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .13em;
}

.loot-card strong {
  font-size: 11px;
}

.loot-card div span {
  color: #b1babf;
  font-size: 9px;
}

.visual-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 15px 0 0 28px;
  color: #57636b;
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.visual-note span {
  color: #8a961e;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.signal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 52px);
  min-height: 82px;
  padding: 18px 24px;
  color: #aeb7bc;
  background: var(--ink);
}

.signal-strip p {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  padding: clamp(82px, 10vw, 148px) clamp(24px, 6vw, 100px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  gap: 60px;
  align-items: end;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.section-heading h2,
.guide-intro h2,
.about-copy h2,
.seo-overview-section h2,
.support-section h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: .96;
  text-transform: uppercase;
}

.section-heading > p,
.guide-intro > p,
.about-text p,
.seo-overview-copy p,
.support-section > div:last-child > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.seo-overview-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr);
  align-items: center;
  gap: clamp(50px, 9vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(215, 230, 71, .24), transparent 28%),
    linear-gradient(135deg, #f3f1e9 0%, #e7e2d6 100%);
  border-top: 1px solid rgba(15, 23, 30, .1);
  border-bottom: 1px solid rgba(15, 23, 30, .14);
}

.seo-overview-section .section-kicker {
  color: #65720f;
}

.seo-overview-section > div:first-child {
  position: relative;
  z-index: 1;
  padding-left: 22px;
}

.seo-overview-section > div:first-child::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 5px;
  content: "";
  border-radius: 999px;
  background: var(--accent-deep);
}

.seo-overview-section h2 {
  max-width: 760px;
  color: var(--ink);
}

.seo-overview-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(15, 23, 30, .12);
  border-radius: 3px;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 22px 55px rgba(38, 44, 38, .09);
}

.seo-overview-copy p {
  color: #59636a;
}

.seo-overview-copy p:first-child {
  color: #334047;
}

.seo-overview-copy p + p {
  margin-top: 18px;
}

.seo-overview-copy .text-link {
  margin-top: 28px;
}

.features-section {
  background: #e9e6de;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  max-width: 1400px;
  margin: auto;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 30, .12);
  background: rgba(247, 246, 241, .84);
}

.feature-card-wide {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(300px, 1.1fr);
  grid-column: span 8;
  gap: 32px;
}

.feature-card-dark {
  color: #f3f4ef;
  background: var(--ink-soft);
}

.feature-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #9fa7a5;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.feature-card-dark .feature-number {
  color: #728089;
}

.feature-copy {
  position: relative;
  z-index: 2;
  align-self: end;
}

.feature-card-wide .feature-copy {
  align-self: end;
}

.feature-tag {
  display: block;
  margin-bottom: 14px;
  color: #7f8c33;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 510px;
  margin: 0;
  font-size: clamp(27px, 2.4vw, 38px);
  font-weight: 800;
  letter-spacing: -.038em;
  line-height: 1;
}

.feature-card p {
  max-width: 520px;
  margin: 18px 0 0;
  color: #657078;
  font-size: 13px;
  line-height: 1.65;
}

.feature-card-dark p {
  color: #a5afb5;
}

.feature-copy a {
  display: inline-flex;
  gap: 28px;
  margin-top: 26px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(15, 23, 30, .34);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.loot-visual {
  align-self: center;
  width: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(15, 23, 30, .1);
  background: #ddd9ce;
  transform: rotate(1deg);
}

.loot-visual-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(82px, 1fr) 28px;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(15, 23, 30, .1);
}

.loot-visual-row strong {
  font-size: 12px;
}

.loot-visual-row i {
  grid-column: 1 / -1;
  display: block;
  height: 3px;
  background: rgba(15, 23, 30, .09);
}

.loot-visual-row i::before {
  display: block;
  width: var(--value);
  height: 100%;
  content: "";
  background: var(--ink);
}

.loot-category {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}

.category-red { color: #a74435; }
.category-yellow { color: #8b791f; }
.category-green { color: #4b732e; }

.loot-visual > p {
  margin: 17px 0 0;
  color: #727c81;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.loot-visual > p b {
  color: var(--ink);
}

.feature-icon {
  position: relative;
  display: block;
  width: 118px;
  height: 118px;
  margin: 32px auto auto;
  border: 1px solid rgba(15, 23, 30, .12);
  border-radius: 50%;
}

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

.route-icon::before {
  top: 57px;
  left: 20px;
  width: 74px;
  height: 2px;
  background: var(--ink);
  transform: rotate(-24deg);
}

.route-icon::after {
  top: 39px;
  left: 16px;
  width: 9px;
  height: 9px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 78px 34px 0 -1px var(--accent-deep), 78px 34px 0 3px var(--paper);
}

.marker-icon::before {
  position: absolute;
  top: 27px;
  left: 38px;
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 0;
  content: "";
  background: var(--rust);
  box-shadow: 12px 12px 26px rgba(15, 23, 30, .19);
  transform: rotate(-45deg);
}

.marker-icon::after {
  position: absolute;
  top: 39px;
  left: 50px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background: #f8f6ef;
}

.coordinate-visual {
  display: grid;
  align-content: center;
  min-height: 190px;
  padding: 30px 0 0;
  text-align: center;
}

.coordinate-visual span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
}

.coordinate-visual strong {
  margin-top: 3px;
  font-family: "Courier New", monospace;
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -.07em;
}

.coordinate-visual strong i {
  color: #869199;
  font-style: normal;
}

.coordinate-visual small {
  color: #7d8991;
  font-family: "Courier New", monospace;
  font-size: 10px;
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(420px, 1.25fr);
  gap: clamp(60px, 10vw, 180px);
  background: var(--paper);
}

.guide-intro {
  align-self: start;
  position: sticky;
  top: 110px;
}

.guide-intro > p {
  max-width: 440px;
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  gap: 30px;
  margin-top: 32px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.guide-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guide;
}

.guide-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.guide-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.guide-steps > li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 30, .18);
  border-radius: 50%;
  color: #7c8920;
  font-size: 9px;
  font-weight: 900;
}

.guide-steps h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 31px);
  letter-spacing: -.035em;
}

.guide-steps p {
  max-width: 580px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-section {
  display: grid;
  grid-template-columns: .25fr 1fr .7fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  color: #e9edef;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
}

.about-mark {
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(215, 230, 71, .44);
  color: var(--accent);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -.08em;
}

.about-section .section-kicker {
  color: var(--accent);
}

.about-text {
  display: grid;
  gap: 18px;
}

.about-text p {
  color: #9eaaaf;
}

.roadmap-section {
  display: block;
  color: #e9edef;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    #111a22;
  background-size: 72px 72px;
}

.roadmap-heading {
  margin-bottom: 28px;
}

.roadmap-heading .section-kicker {
  color: var(--accent);
}

.roadmap-heading h2 {
  max-width: 760px;
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(233, 237, 239, .16);
  border-bottom: 1px solid rgba(233, 237, 239, .16);
}

.roadmap-list span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.roadmap-list strong {
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: -.035em;
  line-height: 1.15;
}

.roadmap-disclaimer {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(233, 237, 239, .58);
  font-size: 12px;
  line-height: 1.45;
}

.support-section {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 80px;
  padding: clamp(72px, 8vw, 118px) clamp(24px, 6vw, 100px);
  color: var(--ink);
  background: var(--accent);
}

.support-section .section-kicker {
  color: #626e0f;
}

.support-section > div:last-child {
  align-self: end;
}

.support-section > div:last-child > p {
  color: rgba(15, 23, 30, .7);
}

.button-light {
  margin-top: 28px;
  border-color: rgba(15, 23, 30, .24);
  background: rgba(255, 255, 255, .6);
}

.button-light:hover,
.button-light:focus-visible {
  background: #fff;
}

.button-disabled {
  cursor: default;
  opacity: .76;
}

.button-disabled:hover {
  background: rgba(255, 255, 255, .6);
  transform: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 1fr) auto auto auto;
  gap: 30px;
  align-items: center;
  min-height: 112px;
  padding: 24px clamp(24px, 6vw, 100px);
  color: #8f9ba1;
  background: #0b1217;
  font-size: 10px;
}

.site-footer p {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 14px;
  color: #b8c3c0;
  font-size: 10px;
}

.footer-legal-links a,
.footer-contact,
.map-site-footer a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(215, 230, 71, .5);
  text-underline-offset: 3px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #edf0ec;
}

.footer-brand .brand-mark {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}

.footer-brand strong {
  font-size: 12px;
}

.map-page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #0b0f0d;
}

.map-page .site-header {
  min-height: 36px;
  flex: 0 0 36px;
  padding-right: clamp(14px, 2vw, 32px);
  padding-left: clamp(14px, 2vw, 32px);
}

.map-page .brand-mark {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  border-radius: 6px;
}

.map-page .brand-copy small {
  display: none;
}

.map-page .site-navigation {
  top: 36px;
}

.map-page .site-navigation a {
  padding-right: clamp(8px, .9vw, 13px);
  padding-left: clamp(8px, .9vw, 13px);
  font-size: 10px;
}

.map-page .header-actions {
  gap: 9px;
}

.map-page .language-switch,
.map-page .language-switch select {
  height: 26px;
  min-height: 26px;
}

.map-page .support-link {
  font-size: 10px;
}

.map-page .nav-toggle {
  width: 34px;
  height: 34px;
}

.map-page .app-shell {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
}

.map-site-footer {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 18px;
  min-height: 34px;
  padding: 6px 18px;
  color: #a7b3ad;
  background: #0b1217;
  font-size: 10px;
  line-height: 1.35;
}

.map-site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}

.map-page .app-shell:fullscreen {
  flex: none;
}

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

  .nav-toggle {
    display: block;
    margin-left: 18px;
  }

  .site-navigation {
    position: absolute;
    top: 46px;
    right: 0;
    left: 0;
    display: grid;
    padding: 12px clamp(18px, 3vw, 52px) 18px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: #111a22;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-header.nav-open .site-navigation {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-navigation a {
    min-height: 43px;
    padding: 0 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .navigation-dropdown {
    display: grid;
  }

  .navigation-dropdown > .map-menu-trigger {
    min-height: 43px;
  }

  .map-dropdown {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    padding: 3px 0 8px 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .navigation-dropdown.dropdown-open .map-dropdown {
    display: block;
  }

  .site-navigation .map-dropdown a {
    border-bottom: 0;
  }

  .site-navigation a::after {
    display: none;
  }

  .site-header.nav-open .nav-toggle > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle > span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  }

  .feature-card,
  .feature-card-wide {
    grid-column: span 6;
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
  }

  .loot-visual {
    align-self: start;
  }

  .about-section {
    grid-template-columns: auto 1fr;
  }

  .about-text {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 46px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .site-brand {
    padding-right: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions { gap: 6px; }
  .support-link { font-size: 10px; letter-spacing: .02em; }

  .nav-toggle {
    margin-left: 12px;
  }

  .site-navigation {
    top: 46px;
  }

  .map-link {
    padding: 0 13px;
  }

  .map-link span {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 62px;
    min-height: auto;
    padding-top: 78px;
  }

  .hero-copy {
    max-width: 680px;
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(56px, 13vw, 92px);
  }

  .hero-visual {
    width: min(100%, 660px);
    justify-self: center;
  }

  .map-surface {
    min-height: 470px;
  }

  .signal-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .section-heading,
  .guide-section,
  .seo-overview-section,
  .roadmap-section,
  .support-section {
    grid-template-columns: 1fr;
  }

  .roadmap-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading > p {
    max-width: 600px;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: span 12;
  }

  .feature-card-wide {
    grid-template-columns: minmax(230px, .85fr) minmax(260px, 1.15fr);
  }

  .guide-intro {
    position: static;
  }

  .about-section {
    grid-template-columns: auto 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p:first-of-type {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .footer-legal-links {
    grid-row: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .footer-contact {
    grid-row: 2;
    grid-column: 2;
  }

  .map-page .site-header {
    flex-basis: 36px;
  }
}

@media (max-width: 580px) {
  .brand-copy {
    display: none;
  }

  .site-brand {
    border-right: 0;
  }

  .header-actions .map-link {
    min-height: 38px;
    font-size: 10px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero::before {
    left: 18px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 10px;
  }

  .map-card {
    margin: 0 -28px;
  }

  .map-surface {
    min-height: 400px;
  }

  .loot-card {
    top: 29%;
    left: 26%;
    min-width: 190px;
  }

  .section,
  .support-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-heading h2,
  .guide-intro h2,
  .about-copy h2,
  .seo-overview-section h2,
  .roadmap-section h2,
  .support-section h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .feature-card,
  .feature-card-wide {
    grid-template-columns: 1fr;
    min-height: 360px;
    padding: 23px;
  }

  .feature-card-wide {
    min-height: 630px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-mark {
    width: 72px;
    height: 72px;
    font-size: 20px;
  }

  .about-text {
    grid-column: auto;
  }

  .support-section {
    gap: 38px;
  }

  .roadmap-section {
    gap: 38px;
  }

  .roadmap-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .roadmap-list li {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .roadmap-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 18px;
  }

  .site-footer > p:first-of-type {
    grid-row: auto;
    grid-column: auto;
  }

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

  .footer-legal-links {
    justify-content: flex-start;
  }

  .map-site-footer {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Full-screen Chernarus entry screen. The source is the current aerial-map preview,
   reduced from 4096px/37MB to a versioned 1920px WebP under 1MB. */
.site-page .map-hero {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --zoom-x: 50%;
  --zoom-y: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: calc(100svh - 46px);
  padding: 32px;
  overflow: hidden;
  isolation: isolate;
  color: #f4f6ef;
  background: #0b1318;
  contain: paint;
}

.site-page .map-hero::before {
  content: none;
}

.map-hero-image,
.map-hero-spotlight,
.map-hero-shade {
  position: absolute;
  inset: -2%;
  pointer-events: none;
}

.map-hero-image,
.map-hero-spotlight {
  background-image: url("/assets/chernarus-hero-876c5a08.webp");
  background-position: 50% 48%;
  background-size: cover;
  transform: translateZ(0) scale(1.025);
  transform-origin: var(--zoom-x) var(--zoom-y);
  transition: transform .72s cubic-bezier(.2, .76, .22, 1);
  will-change: transform;
}

.map-hero-image {
  z-index: -4;
  filter: saturate(.72) brightness(.49) contrast(1.11);
}

.map-hero-spotlight {
  z-index: -3;
  opacity: 0;
  filter: saturate(1.32) brightness(1.24) contrast(1.08);
  -webkit-mask-image: radial-gradient(
    circle 300px at var(--pointer-x) var(--pointer-y),
    #000 0,
    rgba(0, 0, 0, .98) 30%,
    rgba(0, 0, 0, .54) 58%,
    transparent 78%
  );
  mask-image: radial-gradient(
    circle 300px at var(--pointer-x) var(--pointer-y),
    #000 0,
    rgba(0, 0, 0, .98) 30%,
    rgba(0, 0, 0, .54) 58%,
    transparent 78%
  );
  transition:
    opacity .3s ease,
    transform .72s cubic-bezier(.2, .76, .22, 1);
}

.map-hero[data-pointer-active="true"] .map-hero-spotlight {
  opacity: 1;
}

.map-hero[data-pointer-active="true"] .map-hero-image,
.map-hero[data-pointer-active="true"] .map-hero-spotlight,
.map-hero:focus-within .map-hero-image {
  transform: translateZ(0) scale(1.14);
}

.map-hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 11, 14, .35), transparent 28%, transparent 68%, rgba(5, 11, 14, .52)),
    radial-gradient(circle at 50% 50%, rgba(8, 15, 19, .05) 0 18%, rgba(8, 15, 19, .22) 55%, rgba(8, 15, 19, .56) 100%),
    linear-gradient(90deg, rgba(4, 10, 13, .36), transparent 24%, transparent 76%, rgba(4, 10, 13, .36));
}

.map-hero-shade::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .15;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 80px 80px;
}

.map-hero-center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(520px, 100%);
  text-align: center;
}

.map-hero-center > h1 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  margin: 0 0 17px;
  color: rgba(238, 242, 236, .72);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.map-hero-label {
  --label-pointer-x: -500px;
  --label-pointer-y: -500px;
  position: relative;
  color: rgba(238, 242, 236, .72);
}

.map-hero-label-contrast {
  position: absolute;
  inset: 0;
  color: #071015;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, .2);
  -webkit-mask-image: radial-gradient(
    circle 150px at var(--label-pointer-x) var(--label-pointer-y),
    #000 0 45%,
    rgba(0, 0, 0, .78) 68%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle 150px at var(--label-pointer-x) var(--label-pointer-y),
    #000 0 45%,
    rgba(0, 0, 0, .78) 68%,
    transparent 100%
  );
  transition: opacity .18s ease;
}

.map-hero[data-pointer-active="true"] .map-hero-label-contrast {
  opacity: 1;
}

.map-hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(215, 230, 71, .13);
}

.hero-map-button {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 62px;
  width: min(420px, 100%);
  min-height: 102px;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  background: rgba(9, 17, 21, .82);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .4),
    inset 0 0 0 1px rgba(255, 255, 255, .04);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.hero-map-button::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 4px;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 24px rgba(215, 230, 71, .35);
}

.hero-map-button > span {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 20px 28px;
  text-align: left;
}

.hero-map-button strong {
  font-size: clamp(24px, 3vw, 35px);
  letter-spacing: -.04em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-map-button > i {
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, .15);
  color: var(--accent);
  font-size: 25px;
  font-style: normal;
  transition: color .22s ease, background .22s ease;
}

.hero-map-button:hover,
.hero-map-button:focus-visible {
  border-color: var(--accent);
  background: rgba(9, 17, 21, .94);
  transform: translateY(-3px);
}

.hero-map-button:hover > i,
.hero-map-button:focus-visible > i {
  color: #111a22;
  background: var(--accent);
}

.map-hero-reticle {
  position: absolute;
  z-index: 1;
  top: var(--pointer-y);
  left: var(--pointer-x);
  width: 72px;
  height: 72px;
  border: 1px solid rgba(215, 230, 71, .78);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  box-shadow:
    0 0 0 7px rgba(215, 230, 71, .06),
    0 0 38px rgba(215, 230, 71, .2);
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}

.map-hero[data-pointer-active="true"] .map-hero-reticle {
  opacity: 1;
}

.map-hero-reticle::before,
.map-hero-reticle::after,
.map-hero-reticle i {
  position: absolute;
  content: "";
  background: rgba(215, 230, 71, .55);
}

.map-hero-reticle::before {
  top: 50%;
  right: -7px;
  left: -7px;
  height: 1px;
}

.map-hero-reticle::after {
  top: -7px;
  bottom: -7px;
  left: 50%;
  width: 1px;
}

.map-hero-reticle i {
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-hero-coordinate {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  margin: 0;
  color: rgba(237, 241, 234, .57);
  font-family: "Courier New", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .11em;
}

.map-hero-coordinate-left {
  left: 26px;
}

@media (max-width: 640px) {
  .site-page .map-hero {
    min-height: calc(100svh - 46px);
    padding: 20px;
  }

  .map-hero-image,
  .map-hero-spotlight {
    background-position: 58% 48%;
  }

  .hero-map-button {
    grid-template-columns: 1fr 52px;
    min-height: 90px;
  }

  .hero-map-button > span {
    padding: 18px 21px;
  }

  .map-hero-coordinate {
    bottom: 14px;
  }

  .map-hero-coordinate-left {
    left: 15px;
  }

}

@media (pointer: coarse) {
  .map-hero-spotlight,
  .map-hero-reticle {
    display: none;
  }
}

@media (pointer: coarse) {
  .map-hero:active .map-hero-image,
  .map-hero:focus-within .map-hero-image {
    transform: translateZ(0) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-hero-image,
  .map-hero-spotlight {
    transform: translateZ(0) scale(1.025);
    transition: none;
  }

  .map-hero[data-pointer-active="true"] .map-hero-image,
  .map-hero[data-pointer-active="true"] .map-hero-spotlight,
  .map-hero:focus-within .map-hero-image {
    transform: translateZ(0) scale(1.14);
  }
}
