@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f5f8f6;
  color: #102820;
  font:
    14px/1.6 Poppins,
    Arial,
    sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrap {
  width: min(1140px, calc(100% - 28px));
  margin: auto;
}
.page {
  width: min(1240px, calc(100% - 28px));
  margin: 26px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px #173c2c22;
  overflow: hidden;
}
.header {
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e4ece8;
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-size: 20px;
  font-weight: 800;
  color: #07583f;
}
.brand:before {
  content: "🧭";
  margin-right: 9px;
}
.links {
  display: flex;
  gap: 26px;
  font-weight: 600;
  font-size: 12px;
}
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #0b995b, #087344);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 7px 18px #08734433;
}
.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 25px;
}
.hero {
  padding: 34px 0;
  background: radial-gradient(circle at 15% 30%, #fff, #edf8f2);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 35px;
  align-items: center;
}
.hero h1 {
  font-size: 43px;
  line-height: 1.18;
  margin: 0 0 17px;
  letter-spacing: -1.3px;
}
.hero p {
  max-width: 500px;
}
.hero-img {
  height: 410px;
  border: 7px solid #24372f;
  border-radius: 17px;
  background: url("../images/reference.png") 68% 3%/1010px auto;
  position: relative;
}
.hero-img:after {
  content: "Waypoints\A ● Home\A ● Base Camp\A ● Village\A ● Mine Entrance\A ● Stronghold";
  white-space: pre;
  position: absolute;
  right: 12px;
  top: 14px;
  background: #10241ddd;
  color: #fff;
  border-radius: 8px;
  padding: 14px;
  width: 130px;
  line-height: 2.9;
  font-size: 9px;
}
.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.pill {
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #e1eae5;
  border-radius: 20px;
  font-size: 9px;
}
.content {
  padding: 12px 0;
}
.panel {
  border: 1px solid #dfe8e3;
  border-radius: 13px;
  box-shadow: 0 5px 16px #173c2c12;
  padding: 20px;
  margin-bottom: 13px;
  background: #fff;
}
.panel h2,
.title {
  text-align: center;
  color: #07583f;
  margin: 0 0 14px;
  font-size: 21px;
}
.about {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 26px;
  align-items: center;
}
.about h2 {
  text-align: left;
}
.logo-art {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0d7c4c, #49be69);
  border: 7px solid #d8f1e3;
  display: grid;
  place-items: center;
  font-size: 57px;
}
.grid6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  text-align: center;
  border: 1px solid #e3ebe7;
  border-radius: 10px;
  min-height: 190px;
  padding: 28px 20px;
  box-shadow: 0 4px 12px #173c2c10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card i {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  margin: auto;
  border-radius: 50%;
  background: #eff9f3;
  font-style: normal;
  font-size: 26px;
}
.card h3 {
  font-size: 11px;
  margin: 9px 0 5px;
}
.card p {
  font-size: 9px;
  color: #596760;
  margin: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  padding-top: 30px;
}
.num {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: #138456;
  color: #fff;
  border-radius: 50%;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.tri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.info {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
}
.info > i {
  font-size: 35px;
  font-style: normal;
}
.info h2 {
  text-align: left;
  font-size: 17px;
}
.list {
  list-style: none;
  padding: 0;
  font-size: 10px;
}
.list li:before {
  content: "✓";
  color: #16a45d;
  font-weight: 800;
  margin-right: 8px;
}
.download {
  display: grid;
  grid-template-columns: 220px 1fr 190px;
  align-items: center;
  background: linear-gradient(120deg, #075c49, #054a3e);
  color: #fff;
}
.download h2 {
  text-align: left;
  color: #fff;
  font-size: 23px;
}
.download .art {
  font-size: 72px;
  text-align: center;
}
.download .btn {
  background: #fff;
  color: #087448;
}
.route {
  height: 70px;
  border-bottom: 3px dashed #f2b744;
  border-radius: 50%;
}
.trouble {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trouble div {
  min-height: 145px;
  padding: 24px 18px;
  border: 1px solid #e1e9e5;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trouble div:first-child { display: none; }
.trouble h3 {
  font-size: 15px;
  margin: 0 0 8px;
}
.trouble p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.guides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.guide {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 10px;
  border: 1px solid #e2eae6;
  border-radius: 9px;
  padding: 7px;
}
.thumb {
  height: 82px;
  border-radius: 7px;
  background: url("../images/reference.png") 70% 16%/900px auto;
}
.guide h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 8px 0;
  border-radius: 7px;
  overflow: hidden;
}
.guide p,
.guide span {
  font-size: 8px;
  margin: 0;
}
.guide span {
  color: #07824d;
  font-weight: 700;
}
.faqs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.cat {
  text-align: center;
  padding: 5px;
  background: #35b46c;
  color: #fff;
  font-size: 10px;
}
.faq {
  border: 1px solid #e4e9e6;
  margin: 4px 0;
}
.q {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  padding: 13px 38px 13px 15px;
  font: 600 13px/1.45 Poppins;
  position: relative;
}
.q:after {
  content: "+";
  position: absolute;
  right: 9px;
}
.faq.open .q:after {
  content: "−";
}
.a {
  display: none;
  padding: 0 15px 14px;
  font-size: 12px;
  line-height: 1.65;
}
.faq.open .a {
  display: block;
}
.footer {
  background: #064d3e;
  color: #fff;
  padding: 32px 0 10px;
}
.foot {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
}
.footer a,
.footer p {
  display: block;
  font-size: 9px;
  margin: 4px 0;
}
.footer h3 {
  font-size: 12px;
}
.footer .brand { color: #fff; font-size: 21px; }
.footer .brand:before { filter: drop-shadow(0 1px 2px #0005); }
.footer .footer-about p { max-width: 360px; font-size: 12px; line-height: 1.75; margin-top: 12px; }
.bottom {
  border-top: 1px solid #ffffff22;
  margin-top: 20px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 8px;
}
.inner {
  padding: 50px 0;
  text-align: center;
  background: linear-gradient(135deg, #edf9f2, #fff);
}
.inner h1 {
  font-size: 36px;
  color: #07583f;
}
.article {
  max-width: 850px;
  margin: 28px auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card .thumb {
  height: 160px;
}
.blog-card h2 {
  text-align: left;
  font-size: 16px;
}
.top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  border: 0;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  background: #08784b;
  color: #fff;
}
.post {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) {
  .links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px;
    flex-direction: column;
  }
  .links.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .nav > .btn {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    text-align: center;
  }
  .hero p {
    margin: auto;
  }
  .hero-img {
    height: 360px;
  }
  .grid6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps,
  .trouble {
    grid-template-columns: repeat(2, 1fr);
  }
  .tri,
  .download,
  .guides,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .route {
    display: none;
  }
}
@media (max-width: 600px) {
  .page {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .hero h1 {
    font-size: 33px;
  }
  .hero-img {
    height: 260px;
    background-size: 670px auto;
  }
  .grid6,
  .steps,
  .tri,
  .download,
  .guides,
  .faqs,
  .blog-grid,
  .post {
    grid-template-columns: 1fr;
  }
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about h2 {
    text-align: center;
  }
  .logo-art {
    margin: auto;
  }
  .trouble {
    grid-template-columns: 1fr;
  }
  .card { min-height: 170px; padding: 24px 18px; }
  .q { font-size: 13px; }
  .foot {
    grid-template-columns: 1fr 1fr;
  }
  .bottom {
    flex-direction: column;
  }
  .download {
    padding: 18px;
  }
}

/* Readability and topic-specific image refinements */
.hero-img {
  background-image: url("../images/hero-map.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-img::after {
  display: none;
}
.card h3 {
  font-size: 13px;
  line-height: 1.4;
}
.card p {
  font-size: 11px;
  line-height: 1.55;
}
.info .list,
.info ol,
.info p {
  font-size: 13px;
  line-height: 1.75;
}
#compatibility .list,
.tri .info:nth-child(2) .list {
  font-size: 14px;
  font-weight: 500;
}
.thumb {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.thumb-guide-1 { background-image: url("../images/guide-getting-started.png"); }
.thumb-guide-2 { background-image: url("../images/guide-waypoints.png"); }
.thumb-guide-3 { background-image: url("../images/guide-settings.png"); }
.thumb-guide-4 { background-image: url("../images/guide-multiplayer.png"); }
.thumb-guide-5 { background-image: url("../images/guide-performance.png"); }
.thumb-guide-6 { background-image: url("../images/guide-dimensions.png"); }
.thumb-guide-7 { background-image: url("../images/guide-backup.png"); }
.thumb-guide-8 { background-image: url("../images/guide-errors.png"); }
.thumb-guide-9 { background-image: url("../images/guide-advanced.png"); }
@media (max-width: 760px) {
  .hero-img { background-size: cover; }
  .card h3 { font-size: 14px; }
  .card p { font-size: 12px; }
  .info .list,
  .info ol,
  .info p,
  #compatibility .list,
  .tri .info:nth-child(2) .list { font-size: 14px; }
}
