:root {
  color-scheme: dark;
  --gold: #c9ae8b;
  --text: #b8b4a9;
  --line: #5b5445;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #020505;
  color: var(--text);
  font:
    12px/1.65 Arial,
    sans-serif;
  min-height: 100vh;
}
.landscape {
  position: absolute;
  inset: 0 0 auto;
  min-height: 1800px;
  height: 100%;
  background: url("assets/night-background.png") center -44px/1280px auto
    no-repeat;
  pointer-events: none;
  z-index: -1;
}
.site {
  width: 760px;
  max-width: calc(100% - 56px);
  margin: auto;
}
.topbar {
  height: 27px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 13px;
  border: 2px ridge #555044;
  background: linear-gradient(#3b3a32, #141713);
  box-shadow: 0 2px 6px #000;
  color: #e0d6bf;
  letter-spacing: 1.1px;
  font:
    9px Georgia,
    serif;
  position: relative;
  z-index: 3;
}
.topbar a {
  margin-left: auto;
  text-decoration: none;
  color: #c4bfaf;
  font-size: 9px;
  white-space: nowrap;
}
.top-icons {
  color: #a8ada6;
  font-size: 14px;
}
header {
  height: 206px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header a {
  display: block;
}
header .brand {
  width: 320px;
  height: auto;
  display: block;
  filter: drop-shadow(0 3px 3px #000);
}
nav {
  position: relative;
  height: 77px;
  margin-top: -7px;
  z-index: 3;
}
nav:before {
  content: "";
  position: absolute;
  inset: -10px -27px -18px;
  background: url("assets/navigation.svg") center/100% 100% no-repeat;
  pointer-events: none;
}
.nav-links {
  position: relative;
  display: flex;
  padding: 10px 66px 0;
}
.nav-links a {
  font:
    small-caps 15px Georgia,
    serif;
  letter-spacing: 0.7px;
  text-align: center;
  flex: 1;
  padding: 10px 0 9px;
  white-space: nowrap;
  color: #d9d0be;
  text-shadow: 0 1px 2px #000;
  text-decoration: none;
  border: 3px ridge #555348;
  background: linear-gradient(#33342e, #121611 53%, #23251f);
  box-shadow:
    inset 0 0 7px #000,
    0 2px 4px #000;
  margin-left: 2px;
}
.nav-links a:hover,
.nav-links a.active {
  color: #f6e6c8;
  background: linear-gradient(#45463b, #1b241f 55%, #34382b);
  border-color: #777566;
}
.frame {
  position: relative;
  padding: 15px;
  border: 5px ridge #49483a;
  background: linear-gradient(110deg, #292a22, #191d17 55%, #24241c);
  box-shadow:
    0 0 0 1px #070a08,
    0 0 0 3px #4c4637,
    0 9px 20px #000;
  margin-bottom: 29px;
}
.frame:before,
.frame:after {
  content: "";
  position: absolute;
  width: 54px;
  height: 70px;
  top: -17px;
  left: -31px;
  background: url("assets/corner.svg") center/contain no-repeat;
  pointer-events: none;
  z-index: 2;
}
.frame:after {
  left: auto;
  right: -31px;
  transform: scaleX(-1);
}
.main-frame {
  padding: 13px 14px 14px;
}
.main-frame:before,
.main-frame:after {
  height: 90px;
  top: -30px;
}
.screenshot {
  height: 178px;
  position: relative;
  border: 4px ridge #696151;
  background: #080a07;
  box-shadow: 0 0 0 3px #0a0d09;
  overflow: hidden;
}
.screenshot > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 49%;
  filter: brightness(0.72) saturate(0.76);
}
.screenshot:after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 24px 9px #0008;
  pointer-events: none;
}
.banner-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 7px 12px;
  background: linear-gradient(transparent, #000d);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d0c5ab;
  font:
    10px Georgia,
    serif;
  letter-spacing: 1.8px;
  z-index: 1;
}
.banner-caption button {
  font-size: 23px;
  line-height: 1;
  background: transparent;
  border: 0;
  color: #e9dfc7;
  cursor: pointer;
}
.columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 13px;
  margin-top: 16px;
}
.inset {
  position: relative;
  background: linear-gradient(120deg, #11130f, #090d09);
  padding: 16px 17px;
  border: 3px ridge #575449;
  box-shadow: 0 0 0 3px #090b08;
}
.kicker {
  font:
    8px Georgia,
    serif;
  letter-spacing: 1.7px;
  color: #7e8f7b;
}
h1,
h2 {
  font:
    small-caps 21px/1.3 Georgia,
    serif;
  letter-spacing: 1.3px;
  font-weight: 400;
  color: var(--gold);
  margin: 3px 0 12px;
}
h2 {
  font-size: 19px;
}
p {
  margin: 0 0 12px;
}
article p {
  font-size: 11px;
  line-height: 1.62;
}
.read-more {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
  font:
    small-caps 12px Georgia,
    serif;
  letter-spacing: 0.8px;
  color: #ccb897;
  border-bottom: 1px solid #58523d;
  padding-bottom: 3px;
}
.read-more:hover {
  color: #86d9db;
  border-color: #448d8f;
}
.read-more span {
  font-size: 19px;
}
.forum-sign {
  display: block;
  position: relative;
  transform: rotate(8deg);
  margin: -25px -2px 22px -4px;
  padding: 13px 3px 12px;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(
    125deg,
    #686551,
    #393b2f 38%,
    #282d22 74%,
    #565342
  );
  border: 5px ridge #676450;
  box-shadow: 3px 5px 5px #000;
  text-shadow: 0 1px 1px #9b9878;
  color: #0b100b;
}
.forum-sign:before,
.forum-sign:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px ridge #918b6b;
  background: #34382a;
  left: 1px;
  top: 2px;
  box-shadow: 0 1px 3px #000;
}
.forum-sign:after {
  left: auto;
  top: auto;
  right: 1px;
  bottom: 2px;
}
.forum-sign span {
  font:
    small-caps 16px Georgia,
    serif;
  display: block;
}
.forum-sign strong {
  font:
    700 15px/1.3 Georgia,
    serif;
  display: block;
  letter-spacing: -0.5px;
}
.forum-sign small {
  font-size: 7px;
  letter-spacing: 1px;
  text-shadow: none;
  display: block;
  margin-top: 7px;
  color: #c5c1a4;
}
.forum-sign:hover {
  filter: brightness(1.18);
  transform: rotate(5deg);
}
.side-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.side-links a {
  display: block;
  padding: 7px 3px;
  color: #cfbfa7;
  text-align: center;
  text-decoration: none;
  font:
    small-caps 11px Georgia,
    serif;
  letter-spacing: 0.7px;
  border: 3px ridge #4d4b40;
  background: linear-gradient(#34362d, #141810 60%, #292a21);
  box-shadow: inset 0 0 7px #000;
}
.side-links a:hover {
  color: #9ee2e0;
  border-color: #657467;
}
.aside-note {
  font:
    10px/1.5 Georgia,
    serif;
  text-align: center;
  color: #858775;
  margin: 16px 0 0;
}
.feature {
  padding: 14px;
}
.feature-content {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 235px;
  padding: 15px 19px 15px 4px;
}
.feature-content article {
  padding: 0 3px;
}
.island {
  position: relative;
  width: 234px;
  height: 225px;
  filter: drop-shadow(6px 12px 6px #000);
  transform: translateY(-3px);
}
.island img {
  position: absolute;
  width: 53px;
  height: auto;
  image-rendering: auto;
}
.page-frame {
  min-height: 410px;
}
.page-frame > .inset {
  min-height: 372px;
  padding: 22px;
}
.page-frame h1 {
  font-size: 26px;
  margin: 5px 0 20px;
}
.page-frame h2 {
  margin-top: 17px;
}
.lore-art {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 25px;
  align-items: center;
  margin-top: 24px;
}
.lore-art img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  object-position: 50% 20%;
  border: 4px ridge #6c604a;
  filter: sepia(0.18);
}
.gallery-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.gallery-heading h1 {
  font-size: 23px;
}
.filters {
  display: flex;
  gap: 4px;
}
.filters button {
  border: 2px ridge #5c5847;
  background: #242a20;
  color: #b7b6a5;
  padding: 5px 8px;
  cursor: pointer;
  font-size: 9px;
}
.filters button.selected {
  color: #bfefdf;
  background: #284238;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.gallery-card {
  background: #1a2018;
  border: 3px ridge #615948;
  padding: 0;
  color: #cfc0a8;
  cursor: pointer;
  text-align: left;
}
.gallery-card:hover {
  border-color: #87a18d;
}
.gallery-card img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.gallery-card span {
  display: block;
  padding: 7px;
  font:
    small-caps 12px Georgia,
    serif;
}
.gallery-card em {
  float: right;
  font-style: normal;
  color: #89b7a6;
}
.caption {
  font-size: 9px;
  color: #858b7c;
  margin: 19px 0 0;
}
.notice {
  border: 1px solid #56533d;
  background: #26291d;
  padding: 4px 17px 12px;
  margin: 23px 0;
}
.community-links {
  display: grid;
  gap: 9px;
}
.community-links a {
  padding: 10px 13px;
  background: #1f281d;
  border: 1px solid #4e5842;
  color: #c5c8b5;
  text-decoration: none;
}
.community-links span {
  float: right;
}
details {
  padding: 13px 0;
  border-bottom: 1px solid #414737;
}
summary {
  color: #c7c7ae;
  cursor: pointer;
  font:
    small-caps 15px Georgia,
    serif;
}
details p {
  font-size: 11px;
  margin: 12px 0 1px;
  color: #a9af9c;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3px 18px 0;
  padding-bottom: 30px;
  gap: 20px;
}
footer > div {
  font-size: 8px;
  color: #8e9788;
}
footer span {
  font:
    8px Georgia,
    serif;
  letter-spacing: 1.2px;
  color: #b2ad95;
}
footer p {
  margin: 5px 0;
}
footer a {
  color: #a0ac97;
  text-decoration: none;
}
footer img {
  width: 185px;
  display: block;
}
dialog {
  padding: 37px 13px 10px;
  background: #10150e;
  border: 4px ridge #8a7f62;
  max-width: min(94vw, 1100px);
  width: fit-content;
  box-shadow: 0 20px 100px #000;
}
dialog::backdrop {
  background: #020604ed;
}
dialog > img {
  display: block;
  max-width: 100%;
  max-height: 77vh;
  margin: auto;
}
dialog .close {
  position: absolute;
  right: 7px;
  top: 0;
  background: none;
  border: 0;
  color: #ddd;
  font-size: 30px;
  cursor: pointer;
}
dialog > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 10px;
}
dialog p {
  margin: 0;
  text-align: center;
}
dialog > div button {
  background: #213a30;
  color: #dedec6;
  border: 1px solid #526854;
  padding: 5px 15px;
  cursor: pointer;
}
[hidden] {
  display: none !important;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #8bdee0;
  outline-offset: 3px;
}
@media (min-width: 1500px) {
  .landscape {
    background-size: 1450px auto;
    background-position: center -65px;
  }
}
@media (max-width: 650px) {
  .site {
    max-width: calc(100% - 30px);
  }
  .landscape {
    background-size: 1000px auto;
    background-position: center -28px;
  }
  .topbar {
    padding: 0 7px;
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .top-icons {
    display: none;
  }
  header {
    height: 194px;
  }
  header .brand {
    width: 285px;
    max-width: 85vw;
  }
  nav {
    height: 68px;
  }
  .nav-links {
    padding: 12px 12px 0;
  }
  .nav-links a {
    font-size: 12px;
    padding: 8px 0;
    letter-spacing: 0;
    border-width: 2px;
  }
  nav:before {
    inset: 0 -14px -12px;
  }
  .frame {
    padding: 10px;
    border-width: 4px;
  }
  .frame:before,
  .frame:after {
    width: 35px;
    height: 47px;
    left: -21px;
    top: -11px;
  }
  .frame:after {
    left: auto;
    right: -21px;
  }
  .main-frame:before,
  .main-frame:after {
    height: 65px;
    top: -22px;
  }
  .screenshot {
    height: 156px;
  }
  .columns {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 13px;
  }
  .inset {
    padding: 15px 13px;
  }
  .columns aside {
    display: grid;
    grid-template-columns: 125px 1fr;
    gap: 13px;
    padding: 6px 5px 0;
  }
  .forum-sign {
    margin: 2px 0 7px;
    align-self: center;
    padding: 13px 2px;
  }
  .forum-sign span {
    font-size: 13px;
  }
  .forum-sign strong {
    font-size: 12px;
  }
  .forum-sign small {
    font-size: 6px;
  }
  .side-links {
    gap: 6px;
  }
  .side-links a {
    padding: 5px;
    font-size: 10px;
  }
  .aside-note {
    display: none;
  }
  .feature-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 14px 15px;
  }
  .island {
    margin: 0 auto;
    height: 208px;
  }
  .feature-content article {
    padding: 0;
  }
  .page-frame > .inset {
    padding: 15px;
  }
  .page-frame h1 {
    font-size: 23px;
  }
  .lore-art {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .lore-art img {
    max-width: 220px;
    margin: auto;
  }
  .gallery-heading {
    display: block;
    margin-bottom: 16px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
  }
  .gallery-card img {
    height: 105px;
  }
  .gallery-card span {
    font-size: 11px;
  }
  footer {
    margin: 0 3px;
    gap: 12px;
  }
  footer img {
    width: 125px;
  }
  footer > div {
    max-width: 60%;
  }
  .banner-caption {
    font-size: 8px;
    letter-spacing: 1px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
@media (max-width: 650px) {
  .site {
    max-width: calc(100% - 40px);
  }
  .frame:before {
    left: -18px;
  }
  .frame:after {
    right: -18px;
  }
  article p {
    font-size: 12px;
    line-height: 1.7;
  }
  .topbar {
    letter-spacing: 0;
  }
  .nav-links {
    padding-left: 5px;
    padding-right: 5px;
  }
}
/* Sculpted ironwork and a bounded landscape that fades into the page. */
.landscape {
  min-height: 0;
  height: 1150px;
  background-image:
    linear-gradient(to bottom, transparent 490px, #020505 1120px),
    linear-gradient(
      to right,
      #020505 0%,
      transparent calc(50% - 460px),
      transparent calc(50% + 460px),
      #020505 100%
    ),
    url("assets/night-background.png");
  background-size:
    100% 100%,
    100% 100%,
    1080px auto;
  background-position:
    center,
    center,
    center -20px;
  background-repeat: no-repeat;
}
header .brand {
  width: 300px;
}
.topbar {
  border-radius: 0 0 8px 8px;
}
.nav-links a,
.side-links a,
.filters button {
  border: 0;
  background: url("assets/button.svg") center/100% 100% no-repeat;
  box-shadow: none;
  border-radius: 0;
  padding: 14px 10px;
  transition:
    filter 0.18s,
    color 0.18s;
  text-shadow: 0 1px 2px #000;
}
.nav-links a {
  padding: 13px 5px;
  margin-left: -1px;
}
.nav-links a:hover,
.nav-links a.active,
.side-links a:hover,
.filters button.selected {
  background: url("assets/button.svg") center/100% 100% no-repeat;
  filter: brightness(1.28);
  color: #eddfb9;
}
.side-links {
  gap: 5px;
}
.side-links a {
  padding: 11px 10px;
}
.filters button {
  padding: 10px 13px;
}
.frame {
  border-radius: 24px 9px 22px 9px;
  background: linear-gradient(115deg, #303127, #1b2019 50%, #24281d);
}
.inset {
  border-radius: 12px 4px 17px 5px;
}
.screenshot {
  border-radius: 13px 5px 11px 4px;
}
.forum-sign {
  border-radius: 11px 3px 13px 4px;
}
.gallery-card {
  border-radius: 10px 3px 12px 3px;
  overflow: hidden;
}
.notice {
  border-radius: 13px 4px;
}
.community-links a {
  border-radius: 9px 3px 11px 3px;
}
dialog {
  border-radius: 14px 5px 14px 5px;
}
.frame:before {
  top: -12px;
}
.frame:after {
  top: -12px;
}
.main-frame:before,
.main-frame:after {
  top: -26px;
}
@media (min-width: 1500px) {
  .landscape {
    background-size:
      100% 100%,
      100% 100%,
      1080px auto;
    background-position:
      center,
      center,
      center -20px;
  }
}
@media (max-width: 650px) {
  .landscape {
    height: 920px;
    min-height: 0;
    background-image:
      linear-gradient(to bottom, transparent 310px, #020505 850px),
      linear-gradient(
        to right,
        #020505 0%,
        transparent 12%,
        transparent 88%,
        #020505 100%
      ),
      url("assets/night-background.png");
    background-size:
      100% 100%,
      100% 100%,
      850px auto;
    background-position:
      center,
      center,
      center 8px;
  }
  header .brand {
    width: 265px;
  }
  .nav-links a {
    padding: 12px 2px;
    font-size: 11px;
  }
  .side-links a {
    padding: 9px 9px;
  }
  .frame {
    border-radius: 20px 7px 19px 7px;
  }
  .frame:before,
  .frame:after {
    top: -9px;
  }
  .main-frame:before,
  .main-frame:after {
    top: -19px;
  }
}
.landscape {
  width: 1080px;
  max-width: 100%;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}
@media (max-width: 650px) {
  .landscape {
    width: 100%;
    mask-image: linear-gradient(
      to right,
      transparent,
      #000 7%,
      #000 93%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      #000 7%,
      #000 93%,
      transparent
    );
  }
}
