@import url("./content.css?v=20260606-editor6");

:root {
  --bg: #030208;
  --panel: #06060d;
  --panel-2: #0b0a12;
  --line: #777069;
  --muted: #a6a1a2;
  --text: #eee7df;
  --red: #b22225;
  --wine: #661617;
  --cyan: #1a9499;
  --gold: #d9c2a2;
  --header-band-height: 60px;
  --nav-content-offset-y: 0px;
  --nav-content-offset-extra: 0px;
  --brand-height: 150px;
  --brand-width: min(360px, 34vw);
  --brand-half-width: min(180px, 17vw);
  --nav-logo-gap: 34px;
}

@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/notosanstc/v39/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz76Cy_Co.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/notosanstc/v39/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz75Ky_Co.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/notosanstc/v39/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz70e1_Co.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans TC", "Trebuchet MS", Arial, sans-serif;
  letter-spacing: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow-x: hidden;
  overflow-y: scroll;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .25;
  z-index: 10;
}

.maintenance-body {
  display: grid;
  grid-template-rows: 1fr;
}

.maintenance-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.maintenance-card {
  width: min(620px, 100%);
  background: rgba(3,3,9,.94);
  border: 4px solid rgba(118,109,96,.82);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  padding: 52px 42px 44px;
  text-align: center;
  position: relative;
}

.maintenance-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  right: -4px;
  height: 22px;
  background: linear-gradient(180deg, #777 0 50%, #292531 50% 100%);
}

.maintenance-card img {
  width: min(360px, 82%);
  display: block;
  margin: 4px auto 28px;
  image-rendering: pixelated;
}

.maintenance-card h1 {
  margin: 0 0 18px;
  color: var(--gold);
  letter-spacing: 6px;
  font-size: clamp(28px, 5vw, 42px);
}

.maintenance-card p:last-child {
  margin: 0;
  color: #ded7d1;
  line-height: 1.9;
}

a,
button {
  color: inherit;
}

button {
  font: inherit;
}

.bloodline {
  height: var(--header-band-height);
  background: linear-gradient(180deg, var(--wine) 0 70%, #481617 70% 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #030306;
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.nav-shell {
  height: var(--header-band-height);
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  overflow: visible;
}

.nav-drawer {
  display: contents;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--brand-width);
  height: var(--brand-height);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, calc(-50% + var(--nav-content-offset-y) + var(--nav-content-offset-extra)));
}

.brand img {
  display: block;
  width: 100%;
  height: var(--brand-height);
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.8));
}

.nav-group {
  position: absolute;
  top: 50%;
  display: flex;
  gap: 30px;
  align-items: center;
  transform: translateY(calc(-50% + var(--nav-content-offset-y) + var(--nav-content-offset-extra)));
}

.nav-left {
  right: calc(50% + var(--brand-half-width) + var(--nav-logo-gap));
  justify-content: flex-end;
}

.nav-right {
  left: calc(50% + var(--brand-half-width) + var(--nav-logo-gap));
  justify-content: flex-end;
}

.nav-group a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  color: #ded6cb;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  white-space: nowrap;
  transition: color .18s ease, text-shadow .18s ease, transform .18s ease;
}

.nav-group a:hover,
.nav-group a:focus-visible {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(235, 197, 151, .38);
  transform: translateY(-2px);
}

.nav-group a:focus-visible {
  outline: 1px solid rgba(235, 197, 151, .65);
  outline-offset: 6px;
}

.nav-group a .pixel-dot {
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.nav-group a:hover .pixel-dot,
.nav-group a:focus-visible .pixel-dot {
  border-color: #731f25;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 0 12px rgba(24,120,116,.62);
  transform: scale(1.08);
}

.pixel-dot {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: linear-gradient(180deg, #187874 0 50%, #005859 50% 100%);
  border: 5px solid #5c171d;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  position: absolute;
  left: 16px;
  top: 18px;
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  background: #09090f;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--gold);
}

.nav-overlay {
  display: none;
}

.hero {
  min-height: 810px;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  --active-slide: url("./assets/slide-images/slide-1.jpg");
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 60px;
  background:
    linear-gradient(90deg, #03040a 0%, rgba(3,4,10,.18) 22%, rgba(3,4,10,.18) 78%, #03040a 100%),
    linear-gradient(180deg, rgba(3,4,10,.05) 0%, rgba(3,4,10,.08) 54%, #03040a 100%),
    var(--active-slide) center center / cover no-repeat;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 60px;
  background:
    linear-gradient(90deg, #03040a 0%, rgba(3,4,10,.18) 22%, rgba(3,4,10,.18) 78%, #03040a 100%),
    linear-gradient(180deg, rgba(3,4,10,.05) 0%, rgba(3,4,10,.08) 54%, #03040a 100%),
    var(--next-slide) center center / cover no-repeat;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: none;
}

.hero.bg-fading::after {
  opacity: 1;
  transition: opacity .48s ease;
}

.server-status {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  width: fit-content;
  max-width: calc(100% - 32px);
  margin-left: auto;
  margin-right: auto;
  padding: 14px 28px;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,0,0,.62) 20%, rgba(0,0,0,.62) 80%, rgba(0,0,0,0));
  text-shadow:
    0 2px 0 #000,
    0 0 10px #000,
    0 0 18px rgba(0,0,0,.95);
}

.server-address {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  text-shadow: inherit;
  line-height: 1;
  transition: transform .16s ease, color .16s ease, text-shadow .16s ease;
}

.server-address::before,
.server-address::after {
  position: absolute;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}

.server-address::before {
  content: attr(data-tooltip);
  bottom: calc(100% + 11px);
  transform: translate(-50%, 4px);
  background: rgba(4,7,9,.96);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: none;
  text-shadow: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0,0,0,.55);
}

.server-address::after {
  content: "";
  bottom: calc(100% + 5px);
  transform: translate(-50%, 4px);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(4,7,9,.96);
}

.server-address:hover,
.server-address:focus-visible {
  transform: translateY(-1px) scale(1.025);
  color: #fff0c9;
  text-shadow:
    0 2px 0 #000,
    0 0 10px #000,
    0 0 16px rgba(255,220,155,.75),
    0 0 26px rgba(255,220,155,.35);
}

.server-address:hover::before,
.server-address:hover::after,
.server-address:focus-visible::before,
.server-address:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.server-address:active {
  transform: translateY(1px) scale(.99);
}

.server-address-text {
  display: inline-block;
}

.copy-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
  flex: 0 0 auto;
  opacity: .82;
  transition: transform .16s ease, opacity .16s ease;
}

.server-address:hover .copy-icon,
.server-address:focus-visible .copy-icon {
  transform: translateX(2px);
  opacity: 1;
}

.server-status p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 4px;
  line-height: 1;
}

.server-status strong {
  color: #ff3b43;
  font-weight: 400;
  text-shadow:
    0 2px 0 #000,
    0 0 8px #000,
    0 0 14px rgba(255,23,39,.55);
}

.copy-note {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  min-height: 18px;
  color: var(--cyan);
  font-size: 12px;
}

.carousel-stage {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 28px 34px;
}

.slide-track {
  --main-width: min(660px, 54vw);
  --arrow-gap: 80px;
  height: 390px;
  position: relative;
  z-index: 1;
}

.carousel-anim-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.slide-ghost {
  position: absolute;
  border: 4px solid rgba(139,128,117,.78);
  background: #03040a;
  box-shadow: 0 18px 45px rgba(0,0,0,.55);
  overflow: hidden;
  will-change: left, top, width, height, opacity;
}

.slide-ghost-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.slide-track.is-animating .far-shot,
.slide-track.is-animating .side-shot,
.slide-track.is-animating .main-shot {
  opacity: 0;
}

.main-shot,
.side-shot,
.far-shot {
  position: absolute;
  margin: 0;
  --slide-card-opacity: 1;
  border: 4px solid rgba(139,128,117,.78);
  background: #03040a;
  box-shadow: 0 18px 45px rgba(0,0,0,.55);
  overflow: hidden;
  opacity: var(--slide-card-opacity);
}

.main-shot {
  overflow: visible;
}

.main-shot {
  width: var(--main-width);
  aspect-ratio: 16 / 9;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 4;
}

.main-shot img,
.side-shot img,
.far-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.side-shot,
.far-shot {
  display: block;
}

.side-shot {
  width: min(420px, 31vw);
  aspect-ratio: 16 / 9;
  --slide-card-opacity: .70;
  top: 172px;
  z-index: 3;
}

.side-left {
  left: 10.5%;
}

.side-right {
  right: 10.5%;
}

.far-shot {
  width: min(250px, 18vw);
  aspect-ratio: 16 / 9;
  --slide-card-opacity: .30;
  top: 290px;
  z-index: 2;
}

.far-left {
  left: .5%;
}

.far-right {
  right: .5%;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 0;
  height: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.prev {
  left: calc(-1 * var(--arrow-gap));
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 28px solid var(--gold);
}

.next {
  right: calc(-1 * var(--arrow-gap));
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--gold);
}

.content-wrap,
.info-grid {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 44px;
}

.content-wrap {
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  margin-top: 24px;
  margin-bottom: 88px;
}

.info-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  padding-bottom: 88px;
}

.panel {
  background: rgba(3,3,9,.92);
  border: 4px solid rgba(118,109,96,.82);
  position: relative;
  padding: 56px 44px 40px;
}

.panel-bars {
  position: absolute;
  top: 0;
  left: -4px;
  right: -4px;
  height: 25px;
  background: #676767;
  border-bottom: 24px solid #2b2736;
}

.panel > h1,
.panel > h2 {
  margin: 0 0 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 400;
}

.panel > h1 {
  font-size: 28px;
  border-bottom: 2px solid rgba(201,191,176,.52);
  padding-bottom: 16px;
}

.panel-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 2px solid rgba(201,191,176,.52);
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.panel-title-row h1 {
  border: 0;
  margin: 0;
  padding: 0;
}

.panel-title-row a,
.page-head-actions a,
.public-announcements-controls a,
.pagination a,
.announcement-detail-head > a {
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
}

.panel > h2 {
  font-size: 18px;
}

.announcement-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 18px;
  padding: 30px 0;
  border-bottom: 2px solid rgba(201,191,176,.42);
}

.latest-announcements-list {
  display: grid;
  grid-auto-rows: 1fr;
}

.latest-announcement-item {
  min-height: 154px;
  align-items: start;
  padding-top: 28px;
}

.announcement-item > div {
  min-width: 0;
}

.announcement-item > .pixel-dot {
  margin-top: .75em;
}

.announcement-item h2 {
  margin: 0 0 5px;
  letter-spacing: 1px;
  color: #f0e7df;
  text-transform: none;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-all;
  white-space: normal;
}

.announcement-item h2 a {
  color: inherit;
  text-decoration: none;
  transition: color .18s ease, text-shadow .18s ease;
}

.announcement-item h2 a:hover,
.announcement-item h2 a:focus-visible {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(235, 197, 151, .28);
}

.announcement-item h2 a:focus-visible {
  outline: 1px solid rgba(235, 197, 151, .6);
  outline-offset: 4px;
}

.announcement-item time,
.announcement-item p,
.panel li:not(.announcement-content li),
.panel summary,
.panel label,
.ban-result {
  color: #d6d2d4;
  line-height: 1.7;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.announcement-item p {
  display: -webkit-box;
  margin: 12px 0;
  white-space: pre-line;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.announcement-item time {
  display: block;
  color: #aaa2a7;
  font-size: 12px;
}

.more-text {
  display: none;
}

.announcement-item.open .more-text {
  display: block;
}

.read-more {
  display: block;
  margin-left: auto;
  border: 0;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
}

.side-column {
  display: grid;
  gap: 44px;
}

.empty-announcements {
  padding: 34px 0;
  color: #d6d2d4;
  line-height: 1.7;
}

.announcements-page-shell,
.about-page-shell,
.rules-page-shell,
.faq-page-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 90px auto 110px;
}

.announcements-list-panel,
.announcement-detail-panel,
.about-detail-panel,
.rules-detail-panel,
.faq-detail-panel {
  padding-left: 48px;
  padding-right: 48px;
}

.faq-search {
  display: grid;
  gap: 8px;
  color: #ded7d1;
  margin: 22px 0;
}

.faq-search input {
  width: 100%;
  min-height: 44px;
  border: 2px solid var(--line);
  background: #090912;
  color: var(--text);
  padding: 0 12px;
  font: inherit;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 2px solid rgba(118,109,96,.62);
  background: rgba(8,8,16,.72);
  padding: 0;
}

.faq-item summary {
  color: var(--gold);
  cursor: pointer;
  letter-spacing: 2px;
  padding: 18px 20px;
}

.faq-item div {
  border-top: 1px solid rgba(201,191,176,.22);
  color: #d6d2d4;
  line-height: 1.8;
  padding: 18px 20px 22px;
}

.faq-empty-result {
  color: var(--muted);
  line-height: 1.7;
}

.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 2px solid rgba(201,191,176,.52);
  margin-bottom: 26px;
  padding-bottom: 20px;
}

.page-head h1 {
  border: 0;
  margin: 10px 0 0;
  padding: 0;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 400;
}

.page-head-actions {
  padding-top: 4px;
  flex: 0 0 auto;
}

.page-kicker {
  margin: 0;
  color: var(--muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
}

.public-announcements-controls {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) auto auto;
  gap: 12px;
  align-items: end;
  margin: 22px 0 12px;
}

.public-announcements-controls label {
  color: #ded7d1;
  line-height: 1.7;
}

.public-announcements-controls select,
.public-announcements-controls button {
  width: 100%;
  min-height: 42px;
  border: 2px solid var(--line);
  background: #090912;
  color: var(--text);
  padding: 0 12px;
  font: inherit;
}

.public-announcements-controls button {
  color: var(--gold);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.public-announcements-list {
  display: grid;
}

.public-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.public-tag-list a {
  border: 1px solid rgba(26,148,153,.72);
  color: #bfeff2;
  padding: 4px 8px;
  text-decoration: none;
  font-size: 13px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 26px;
}

.pagination span {
  color: #d6d2d4;
}

.announcement-detail-head {
  border-bottom: 2px solid rgba(201,191,176,.52);
  padding-bottom: 22px;
  margin-bottom: 26px;
}

.announcement-detail-head h1 {
  border: 0;
  margin: 18px 0 8px;
  padding: 0;
  color: var(--gold);
  letter-spacing: 3px;
}

.announcement-detail-head time {
  color: #aaa2a7;
  font-size: 13px;
}

.join-panel {
  text-align: center;
  padding-left: 24px;
  padding-right: 24px;
}

.server-icon {
  width: 104px;
  height: 104px;
  object-fit: cover;
  image-rendering: pixelated;
}

.join-panel hr,
.admins hr {
  border: 0;
  border-top: 2px solid rgba(201,191,176,.45);
  margin: 28px 14px 22px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #7f9aad;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 14px 0;
  font-size: 13px;
}

.social-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: grid;
  place-items: center;
  font: 700 24px Arial, sans-serif;
  border-radius: 2px;
}

.admins ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.admins li {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 14px;
  margin: 18px 0;
}

.admins img {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  image-rendering: pixelated;
}

.admins strong {
  color: #d72c2f;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
}

.admins span {
  color: #6194a5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

details {
  border-bottom: 1px solid rgba(201,191,176,.28);
  padding: 11px 0;
}

summary {
  cursor: pointer;
  color: var(--gold);
}

details p {
  color: var(--muted);
  margin-bottom: 0;
}

.site-footer {
  min-height: 150px;
  background: var(--wine);
  border-top: 2px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: 80px minmax(180px, 1fr) minmax(180px, auto);
  gap: 30px;
  align-items: center;
  padding: 26px 38px;
  color: #dfd3c6;
  font-size: 12px;
  letter-spacing: 3px;
}

.footer-server-icon {
  width: 76px;
  height: 76px;
  object-fit: cover;
  image-rendering: pixelated;
}

.footer-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  text-align: right;
  line-height: 1.6;
}

.footer-side p {
  margin: 0;
}

.footer-studio-logo {
  width: auto;
  height: 94px;
  max-width: 160px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(223, 211, 198, .45);
  text-underline-offset: 3px;
  transition: color .18s ease, text-decoration-color .18s ease;
}

.site-footer a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

@media (max-width: 1050px) {
  .nav-shell {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    height: auto;
    min-height: var(--header-band-height);
    padding-bottom: 16px;
  }

  .brand {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 300px;
    height: 126px;
  }

  .brand img {
    height: 126px;
  }

  .nav-group {
    position: static;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0;
  }

  .content-wrap,
  .info-grid {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

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

@media (max-width: 720px) {
  body.nav-open {
    overflow: hidden;
  }

  .bloodline {
    height: 32px;
  }

  .menu-toggle {
    display: block;
    z-index: 61;
  }

  .nav-shell {
    min-height: 78px;
    padding-bottom: 0;
  }

  .brand {
    height: 82px;
    width: 230px;
    z-index: 41;
  }

  .brand img {
    height: 96px;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 48;
    border: 0;
    background: rgba(0, 0, 0, .56);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
  }

  .nav-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 55;
    display: flex;
    flex-direction: column;
    width: min(330px, 86vw);
    padding: 92px 22px 26px;
    border-right: 3px solid rgba(118,109,96,.82);
    background:
      linear-gradient(180deg, rgba(120, 22, 24, .28) 0 58px, transparent 58px),
      rgba(3, 3, 9, .96);
    box-shadow: 24px 0 60px rgba(0,0,0,.55);
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.22,.78,.2,1), visibility .28s ease;
  }

  .nav-drawer::before {
    content: "";
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(118,109,96,.68);
  }

  .nav-group {
    display: grid;
    position: static;
    width: 100%;
    gap: 12px;
    padding: 0;
    transform: none;
  }

  .nav-left,
  .nav-right {
    left: auto;
    right: auto;
    justify-content: stretch;
  }

  .nav-right {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(201,191,176,.28);
  }

  .nav-group a {
    min-height: 46px;
    padding: 0 4px;
    font-size: 15px;
  }

  .nav-shell.open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-shell.open .nav-drawer {
    visibility: visible;
    transform: translateX(0);
  }

  .hero {
    min-height: 560px;
    padding-top: 40px;
  }

  .server-status {
    margin-bottom: 52px;
  }

  .server-address,
  .server-status p {
    letter-spacing: 3px;
  }

  .carousel-stage {
    padding-inline: 18px;
    overflow: hidden;
  }

  .slide-track {
    --main-width: min(300px, calc(100% - 78px));
    --arrow-gap: 16px;
    height: 220px;
  }

  .side-shot,
  .far-shot {
    display: none;
  }

  .main-shot {
    width: min(300px, calc(100% - 78px));
    top: 18px;
  }

  .slide-btn {
    top: 50%;
  }

  .prev {
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-right-width: 23px;
  }

  .next {
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 23px;
  }

  .panel {
    padding: 52px 20px 28px;
  }

  .panel > h1,
  .panel > h2 {
    letter-spacing: 4px;
  }

  .announcement-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .panel-title-row,
  .page-head,
  .public-announcements-controls {
    grid-template-columns: 1fr;
    display: grid;
  }

  .announcements-list-panel,
  .announcement-detail-panel,
  .about-detail-panel,
  .rules-detail-panel,
  .faq-detail-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .announcement-item p {
    word-break: break-all;
  }

  .read-more {
    margin-left: 0;
  }

  .side-column {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 26px 24px;
  }

  .footer-side {
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
  }

  .footer-studio-logo {
    height: 86px;
  }

}
