:root {
  --fs-bg: #030202;
  --fs-panel: rgba(9, 6, 6, 0.82);
  --fs-panel-strong: rgba(15, 6, 5, 0.94);
  --fs-red: #ff2b1f;
  --fs-red-soft: rgba(255, 43, 31, 0.42);
  --fs-red-deep: #780b08;
  --fs-ivory: #f4eee4;
  --fs-muted: #b9aaa0;
  --fs-line: rgba(255, 47, 31, 0.32);
  --fs-metal: rgba(196, 181, 164, 0.24);
  --fs-shadow: 0 30px 90px rgba(0, 0, 0, 0.72);
  --fs-font-title: "Cinzel", "Times New Roman", serif;
  --fs-font-body: "Exo 2", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--fs-bg);
}

body.fs-cinematic {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(117, 9, 6, 0.2), transparent 42rem),
    linear-gradient(180deg, #040202 0%, #080404 42%, #030202 100%);
  color: var(--fs-ivory);
  font-family: var(--fs-font-body);
  letter-spacing: 0;
}

body.fs-cinematic.fs-modal-open {
  overflow: hidden;
}

body.fs-cinematic::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 38, 20, 0.14), transparent 18rem),
    radial-gradient(circle at 84% 16%, rgba(177, 20, 12, 0.13), transparent 20rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
  opacity: 0.5;
}

body.fs-cinematic::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 54, 28, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 168, 90, 0.55) 0 1px, transparent 2px);
  background-size: 280px 240px, 420px 360px;
  background-position: 10% 20%, 75% 12%;
  mix-blend-mode: screen;
  opacity: 0.24;
  animation: fs-embers 18s linear infinite;
}

@keyframes fs-embers {
  from { transform: translate3d(0, 18px, 0); }
  to { transform: translate3d(0, -80px, 0); }
}

body.fs-cinematic a {
  color: inherit;
}

.fs-cinematic img {
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

.fs-page {
  position: relative;
  min-height: 100vh;
}

.fs-shell {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
}

.fs-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 42, 27, 0.22);
  background:
    linear-gradient(180deg, rgba(7, 4, 4, 0.96), rgba(7, 4, 4, 0.72)),
    radial-gradient(circle at 50% 0%, rgba(255, 40, 24, 0.15), transparent 40rem);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.58);
}

.fs-header::before,
.fs-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.fs-header::before {
  top: 50%;
  left: 2%;
  width: min(34vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 46, 30, 0.7), transparent);
}

.fs-header::after {
  top: 50%;
  right: 2%;
  width: min(34vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 46, 30, 0.7), transparent);
}

.fs-header__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 86px;
  gap: 18px;
}

.fs-brand {
  position: relative;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.fs-brand__crest {
  position: relative;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  display: grid;
  place-items: center;
}

.fs-brand__crest::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 37, 25, 0.34), transparent 66%);
  filter: blur(8px);
}

.fs-brand__crest img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 40, 30, 0.58));
}

.fs-brand__word {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.fs-brand__name {
  font-family: var(--fs-font-title);
  font-size: clamp(20px, 1.7vw, 31px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 50, 34, 0.38);
  white-space: nowrap;
}

.fs-brand__name span {
  color: var(--fs-red);
}

.fs-brand__meta {
  font-family: var(--fs-font-title);
  font-size: 13px;
  color: var(--fs-red);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.fs-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 16px;
  padding: 0 clamp(24px, 2.7vw, 48px);
  isolation: isolate;
}

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

.fs-nav::before {
  z-index: -2;
  inset: -12px 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 47, 32, 0.18), transparent 58%),
    linear-gradient(90deg, transparent, rgba(255, 47, 32, 0.36) 18%, rgba(255, 47, 32, 0.08) 50%, rgba(255, 47, 32, 0.36) 82%, transparent);
  border-top: 1px solid rgba(255, 47, 32, 0.24);
  border-bottom: 1px solid rgba(255, 47, 32, 0.18);
  opacity: 0.82;
}

.fs-nav::after {
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 52, 34, 0.9);
  background: rgba(35, 3, 2, 0.92);
  box-shadow:
    0 0 8px rgba(255, 47, 32, 0.62),
    inset 0 0 6px rgba(255, 47, 32, 0.36);
  filter: none;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: fsNavEmblemPulse 2.6s infinite ease-in-out;
}

.fs-nav a,
.fs-nav button {
  position: relative;
  z-index: 1;
  min-height: 42px;
  min-width: 122px;
  border: 1px solid rgba(255, 52, 34, 0.32);
  padding: 0 22px;
  background:
    linear-gradient(180deg, rgba(255, 64, 42, 0.08), rgba(58, 8, 6, 0.64) 54%, rgba(8, 4, 4, 0.92)),
    linear-gradient(90deg, rgba(255, 47, 32, 0.16), transparent 20%, transparent 80%, rgba(255, 47, 32, 0.16));
  color: rgba(244, 238, 228, 0.88);
  font-family: var(--fs-font-title);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-shadow:
    inset 0 0 18px rgba(255, 47, 32, 0.08),
    0 0 0 rgba(255, 47, 32, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: color 180ms ease, text-shadow 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.fs-nav a:first-child,
.fs-nav button:first-of-type {
  margin-right: 0;
}

.fs-nav a::before,
.fs-nav button::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  opacity: 0;
  transform: translateX(-105%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.fs-nav a:hover,
.fs-nav button:hover,
.fs-nav .is-active {
  color: #fff9ef;
  text-shadow: 0 0 18px rgba(255, 46, 32, 0.58);
  border-color: rgba(255, 75, 48, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 69, 45, 0.2), rgba(93, 10, 7, 0.82) 55%, rgba(13, 5, 4, 0.98)),
    linear-gradient(90deg, rgba(255, 47, 32, 0.2), transparent 18%, transparent 82%, rgba(255, 47, 32, 0.2));
  box-shadow:
    inset 0 0 24px rgba(255, 48, 31, 0.2),
    0 0 26px rgba(255, 38, 24, 0.28);
  transform: translateY(-1px);
}

.fs-nav a:hover::before,
.fs-nav button:hover::before,
.fs-nav .is-active::before {
  opacity: 1;
  transform: translateX(105%);
}

.fs-nav .is-active {
  color: var(--fs-ivory);
}

.fs-nav .is-active::after {
  display: none;
}

.fs-nav .fs-nav-mobile-only,
.fs-nav-mobile-langs {
  display: none;
}

@keyframes fsNavEmblemPulse {
  0%,
  100% {
    opacity: 0.78;
    box-shadow:
      0 0 7px rgba(255, 47, 32, 0.48),
      inset 0 0 5px rgba(255, 47, 32, 0.28);
  }

  50% {
    opacity: 1;
    box-shadow:
      0 0 11px rgba(255, 47, 32, 0.72),
      inset 0 0 7px rgba(255, 47, 32, 0.44);
  }
}

.fs-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 9px;
  min-width: 0;
}

.fs-langs {
  display: inline-flex;
  border: 1px solid rgba(255, 48, 34, 0.32);
  background: rgba(13, 7, 6, 0.72);
  box-shadow: inset 0 0 16px rgba(255, 47, 32, 0.08);
}

.fs-langs a {
  min-width: 38px;
  padding: 9px 10px;
  color: rgba(244, 238, 228, 0.76);
  font-family: var(--fs-font-title);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.fs-langs a.is-active {
  color: #fff;
  background: rgba(146, 15, 10, 0.56);
}

.fs-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 55, 36, 0.42);
  background: rgba(14, 7, 6, 0.82);
  color: var(--fs-ivory);
  font-size: 20px;
  cursor: pointer;
}

.fs-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border: 1px solid rgba(255, 52, 34, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 69, 45, 0.22), rgba(83, 8, 6, 0.88) 55%, rgba(21, 5, 4, 0.96)),
    linear-gradient(90deg, rgba(255, 47, 32, 0.16), transparent 18%, transparent 82%, rgba(255, 47, 32, 0.16));
  color: #fff6ea;
  font-family: var(--fs-font-title);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  box-shadow:
    inset 0 0 22px rgba(255, 44, 28, 0.18),
    0 0 26px rgba(255, 36, 22, 0.28);
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.fs-button::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-top: 1px solid rgba(255, 220, 190, 0.22);
  border-bottom: 1px solid rgba(255, 47, 32, 0.24);
  pointer-events: none;
}

.fs-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-105%);
  transition: transform 420ms ease;
}

.fs-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 91, 55, 0.95);
  filter: saturate(1.18);
  box-shadow:
    inset 0 0 28px rgba(255, 60, 42, 0.28),
    0 0 34px rgba(255, 42, 24, 0.46);
}

.fs-button:hover::before {
  transform: translateX(105%);
}

.fs-button--ghost {
  border-color: rgba(220, 195, 170, 0.32);
  background: linear-gradient(180deg, rgba(21, 18, 17, 0.9), rgba(9, 6, 6, 0.9));
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.04);
}

.fs-button--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

.fs-button--cabinet {
  border-color: rgba(220, 195, 170, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 54, 35, 0.12), rgba(24, 10, 9, 0.94)),
    linear-gradient(90deg, rgba(255, 47, 32, 0.12), transparent 22%, transparent 78%, rgba(255, 47, 32, 0.12));
}

.fs-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 118px 0 96px;
  overflow: hidden;
}

.fs-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 42, 27, 0.52), transparent);
}

.fs-hero {
  min-height: 100svh;
  padding-top: 110px;
  background:
    linear-gradient(90deg, rgba(3, 2, 2, 0.94) 0%, rgba(3, 2, 2, 0.48) 38%, rgba(3, 2, 2, 0.7) 100%),
    linear-gradient(180deg, rgba(3, 2, 2, 0.15), rgba(3, 2, 2, 0.98) 95%),
    url("/assets/images/hero-bg-dark-fantasy.png") center / cover no-repeat;
}

.fs-hero::before,
.fs-server-section::before,
.fs-final::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 28, 18, 0.28), transparent 25rem),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  mix-blend-mode: screen;
  opacity: 0.62;
}

.fs-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
}

.fs-hero__copy {
  min-width: 0;
  max-width: 520px;
}

.fs-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 14px);
  color: var(--fs-red);
  font-family: var(--fs-font-title);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  text-shadow:
    0 0 6px rgba(255, 30, 20, 0.78),
    0 0 14px rgba(255, 30, 20, 0.34);
}

.fs-kicker::before,
.fs-kicker::after {
  content: "";
  display: block;
  flex: 0 0 clamp(58px, 8vw, 112px);
  width: clamp(58px, 8vw, 112px);
  height: 36px;
  background: url("/assets/images/l2-title-side.svg") center / 100% 100% no-repeat;
  animation: fsDecorPulse 2.2s infinite ease-in-out;
}

.fs-kicker::after {
  transform: scaleX(-1);
}

.fs-hero__copy .fs-kicker {
  display: flex;
  width: 100%;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.fs-hero__copy .fs-kicker::before,
.fs-hero__copy .fs-kicker::after {
  flex-basis: 40px;
  width: 40px;
  height: 23px;
}

@keyframes fsDecorPulse {
  0%,
  100% {
    opacity: 0.46;
    filter:
      brightness(0.82)
      drop-shadow(0 0 8px rgba(255, 27, 18, 0.72));
  }

  50% {
    opacity: 1;
    filter:
      brightness(1.55)
      drop-shadow(0 0 12px rgba(255, 27, 18, 0.96));
  }
}

.fs-hero h1,
.fs-section-title {
  margin: 18px 0 0;
  color: var(--fs-ivory);
  font-family: var(--fs-font-title);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(255, 47, 31, 0.32);
}

.fs-hero h1 {
  font-size: clamp(42px, 4vw, 70px);
}

.fs-hero h1 span {
  display: block;
}

.fs-hero__rates {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.fs-section-title {
  font-size: clamp(38px, 4.5vw, 74px);
}

.fs-hero__lead,
.fs-section-lead {
  color: rgba(244, 238, 228, 0.78);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.68;
}

.fs-hero__lead {
  margin: 26px 0 0;
}

.fs-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.fs-launch-countdown {
  position: relative;
  max-width: 510px;
  margin-top: 28px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 52, 34, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 47, 32, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(18, 8, 7, 0.9), rgba(5, 3, 3, 0.96));
  box-shadow:
    inset 0 0 32px rgba(255, 42, 27, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.46);
}

.fs-launch-countdown::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 64, 46, 0.9);
  background: #220605;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 0 10px rgba(255, 47, 32, 0.7);
}

.fs-launch-countdown__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.fs-launch-countdown__head span {
  color: var(--fs-red);
  font-family: var(--fs-font-title);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fs-launch-countdown__head strong {
  color: rgba(244, 238, 228, 0.9);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.fs-launch-countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 15px;
}

.fs-launch-countdown__grid div {
  min-height: 64px;
  padding: 8px 5px 6px;
  border: 1px solid rgba(255, 52, 34, 0.26);
  background: rgba(4, 3, 3, 0.55);
  text-align: center;
}

.fs-launch-countdown__grid b {
  display: block;
  color: #fff3e5;
  font-family: var(--fs-font-title);
  font-size: 25px;
  line-height: 1.02;
  text-shadow: 0 0 14px rgba(255, 47, 32, 0.34);
}

.fs-launch-countdown__grid small {
  display: block;
  margin-top: 4px;
  color: rgba(244, 238, 228, 0.58);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.fs-launch-countdown__caption {
  display: block;
  margin-top: 11px;
  color: rgba(244, 238, 228, 0.62);
  font-size: 12px;
  text-align: center;
}

.fs-launch-countdown.is-open .fs-launch-countdown__caption {
  color: var(--fs-red);
  font-family: var(--fs-font-title);
  font-weight: 800;
  text-transform: uppercase;
}

.fs-hero__promise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.fs-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 47, 32, 0.3);
  background: rgba(10, 5, 5, 0.66);
  color: rgba(244, 238, 228, 0.86);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.fs-start-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fs-start-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(255, 55, 36, 0.34);
  background:
    linear-gradient(180deg, rgba(17, 9, 8, 0.94), rgba(5, 3, 3, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(255, 47, 32, 0.2), transparent 70%);
  box-shadow: var(--fs-shadow);
}

.fs-start-card img {
  width: min(190px, 48%);
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.6));
}

.fs-start-card h3 {
  margin: 18px 0 0;
  color: var(--fs-ivory);
  font-family: var(--fs-font-title);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.fs-start-card p {
  min-height: 72px;
  margin: 16px 0 0;
  color: rgba(244, 238, 228, 0.78);
  font-size: 17px;
  line-height: 1.55;
}

.fs-start-card__launch {
  display: block;
  margin-top: 12px;
  color: var(--fs-red);
  font-family: var(--fs-font-title);
  font-size: 13px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 47, 32, 0.36);
}

.fs-start-card .fs-modal-actions {
  margin-top: 24px;
}

.fs-hero__logo {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: min(62vw, 670px);
  isolation: isolate;
}

.fs-hero__logo::before {
  display: none;
}

.fs-hero__logo::after {
  display: none;
}

.fs-hero__logo img {
  position: relative;
  width: min(100%, 620px);
  max-height: 70vh;
  object-fit: contain;
  mix-blend-mode: normal;
  filter:
    drop-shadow(0 0 14px rgba(255, 43, 31, 0.42))
    drop-shadow(0 34px 42px rgba(0, 0, 0, 0.85));
}

.fs-status-panel {
  align-self: center;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 55, 36, 0.33);
  background:
    linear-gradient(180deg, rgba(15, 8, 7, 0.9), rgba(3, 2, 2, 0.86)),
    radial-gradient(circle at 50% 0%, rgba(255, 43, 31, 0.18), transparent 70%);
  box-shadow: var(--fs-shadow);
}

.fs-status-panel h2,
.fs-modal h2,
.fs-server-copy h2,
.fs-final h2 {
  margin: 0;
  font-family: var(--fs-font-title);
  font-weight: 800;
  text-transform: uppercase;
}

.fs-status-panel h2 {
  font-size: 21px;
}

.fs-status-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fs-status-row .server-status-pill {
  grid-column: 1 / -1;
  justify-self: start;
}

.fs-status-row strong {
  color: var(--fs-red);
  font-family: var(--fs-font-title);
  font-size: 26px;
}

.fs-status-row > span {
  min-width: 0;
}

.fs-status-dot,
.server-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #34db5f;
  box-shadow: 0 0 14px rgba(52, 219, 95, 0.9);
}

.fs-server-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #5dff86;
  font-weight: 800;
  text-transform: uppercase;
}

.server-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 47, 32, 0.34);
  background: rgba(12, 6, 5, 0.72);
  color: rgba(244, 238, 228, 0.86);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.fs-header__actions > .server-status-pill {
  min-width: 112px;
  justify-content: center;
}

.server-status-pill.is-online {
  border-color: rgba(58, 229, 100, 0.5);
  background:
    radial-gradient(circle at 18% 50%, rgba(53, 229, 100, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(14, 48, 26, 0.86), rgba(7, 18, 12, 0.9));
  color: #f2fff0;
  box-shadow:
    inset 0 0 18px rgba(53, 229, 100, 0.14),
    0 0 22px rgba(53, 229, 100, 0.26);
}

.server-status-pill.is-online .server-status-dot,
.server-status-pill.is-gmonly .server-status-dot {
  background: #35e564;
  box-shadow: 0 0 14px rgba(53, 229, 100, 0.9);
}

.server-status-pill.is-offline .server-status-dot {
  background: #ff3728;
  box-shadow: 0 0 14px rgba(255, 55, 40, 0.9);
}

.server-status-copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.server-status-subtext {
  color: rgba(244, 238, 228, 0.58);
  font-size: 11px;
}

.fs-scroll-cue {
  --fs-scroll-scale: 0.76;
  position: absolute;
  left: 50%;
  bottom: 8px;
  z-index: 8;
  display: block;
  transform: translateX(-50%) scale(var(--fs-scroll-scale));
  width: 104px;
  height: 188px;
  background: url("/assets/images/l2-scroll-down.svg") center bottom / contain no-repeat;
  color: transparent;
  font-size: 0;
  text-decoration: none;
  opacity: 1;
  filter:
    drop-shadow(0 0 10px rgba(255, 27, 18, 0.68))
    drop-shadow(0 0 24px rgba(255, 27, 18, 0.32));
  transition: opacity 0.4s ease;
  animation: fsScrollEmblemFloat 2.4s infinite ease-in-out;
}

.fs-hero .fs-scroll-cue {
  --fs-scroll-scale: 1;
  bottom: 10px;
  z-index: 12;
}

.fs-scroll-cue--section {
  bottom: 14px;
}

.fs-scroll-cue::before {
  content: none;
}

.fs-scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.fs-scroll-cue__line,
.fs-scroll-cue__diamond,
.fs-scroll-cue__arrow {
  display: none;
}

@keyframes fsScrollEmblemFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(-4px) scale(var(--fs-scroll-scale));
    filter:
      brightness(0.88)
      drop-shadow(0 0 9px rgba(255, 27, 18, 0.62))
      drop-shadow(0 0 22px rgba(255, 27, 18, 0.26));
  }

  50% {
    transform: translateX(-50%) translateY(6px) scale(var(--fs-scroll-scale));
    filter:
      brightness(1.45)
      drop-shadow(0 0 13px rgba(255, 27, 18, 0.86))
      drop-shadow(0 0 32px rgba(255, 27, 18, 0.42));
  }
}

.fs-lore {
  background:
    linear-gradient(180deg, rgba(3, 2, 2, 0.98), rgba(12, 6, 5, 0.96)),
    radial-gradient(circle at 20% 50%, rgba(255, 45, 28, 0.13), transparent 32rem);
}

.fs-lore__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(380px, 1.2fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
}

.fs-lore__art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.fs-lore__art::before {
  content: "";
  position: absolute;
  width: 94%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 50, 33, 0.28);
  background:
    radial-gradient(circle, rgba(255, 37, 24, 0.22), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent);
  box-shadow: inset 0 0 48px rgba(0, 0, 0, 0.74);
  transform: rotate(45deg);
}

.fs-lore__art img {
  position: relative;
  width: min(92%, 460px);
  object-fit: contain;
  mask-image: radial-gradient(circle, #000 56%, rgba(0, 0, 0, 0.75) 68%, transparent 86%);
  filter: drop-shadow(0 0 28px rgba(255, 40, 26, 0.45));
}

.fs-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.fs-step {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 50, 33, 0.28);
  background: linear-gradient(180deg, rgba(18, 9, 8, 0.78), rgba(5, 3, 3, 0.86));
  box-shadow: inset 0 0 30px rgba(255, 34, 23, 0.06);
}

.fs-step img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 16px rgba(255, 45, 30, 0.38));
}

.fs-step strong {
  display: block;
  color: var(--fs-red);
  font-family: var(--fs-font-title);
  font-size: 14px;
  text-transform: uppercase;
}

.fs-step h3,
.fs-community-item h3,
.fs-feature h3,
.fs-server-card h3 {
  margin: 8px 0 0;
  font-family: var(--fs-font-title);
  font-size: 20px;
  text-transform: uppercase;
}

.fs-step p,
.fs-community-item p,
.fs-feature p,
.fs-server-card p,
.fs-modal p,
.fs-modal li {
  color: rgba(244, 238, 228, 0.73);
  line-height: 1.65;
}

.fs-server-section {
  background:
    linear-gradient(90deg, rgba(3, 2, 2, 0.92) 0%, rgba(3, 2, 2, 0.64) 48%, rgba(3, 2, 2, 0.9) 100%),
    var(--section-bg) center / cover no-repeat;
}

.fs-server-section--x100 {
  --section-bg: url("/assets/images/section-x100-bg.png");
}

.fs-server-section--x1200 {
  --section-bg: url("/assets/images/section-x1200-bg.png");
}

.fs-server-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 0.84fr) minmax(410px, 1.16fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
}

.fs-server-section--x1200 .fs-server-grid {
  grid-template-columns: minmax(410px, 1.16fr) minmax(340px, 0.84fr);
}

.fs-server-emblem {
  display: grid;
  place-items: center;
}

.fs-server-emblem img {
  width: min(88vw, 490px);
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(255, 42, 28, 0.44));
}

.fs-server-copy {
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(255, 50, 34, 0.34);
  background:
    linear-gradient(180deg, rgba(12, 7, 6, 0.88), rgba(4, 3, 3, 0.82)),
    radial-gradient(circle at 100% 0%, rgba(255, 42, 28, 0.16), transparent 28rem);
  box-shadow: var(--fs-shadow);
}

.fs-server-copy h2 {
  margin-top: 14px;
  font-size: clamp(40px, 4vw, 72px);
  line-height: 0.98;
}

.fs-server-copy h2 span {
  display: block;
  color: var(--fs-red);
  font-size: 0.42em;
  letter-spacing: 8px;
}

.fs-server-copy ul,
.fs-modal ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.fs-server-copy li,
.fs-modal li {
  position: relative;
  padding: 10px 0 10px 24px;
}

.fs-server-copy li::before,
.fs-modal li::before {
  content: "";
  position: absolute;
  top: 1.06em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--fs-red);
  box-shadow: 0 0 12px rgba(255, 45, 30, 0.88);
  transform: rotate(45deg);
}

.fs-server-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.fs-compare {
  background:
    linear-gradient(180deg, rgba(3, 2, 2, 0.96), rgba(9, 4, 4, 0.98)),
    radial-gradient(circle at 50% 50%, rgba(255, 40, 27, 0.12), transparent 34rem);
}

.fs-compare__head {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-bottom: 44px;
}

.fs-server-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fs-server-card {
  min-height: 420px;
  padding: 34px;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(255, 50, 34, 0.32);
  background:
    linear-gradient(180deg, rgba(18, 8, 7, 0.86), rgba(5, 3, 3, 0.9)),
    radial-gradient(circle at 20% 18%, rgba(255, 45, 30, 0.16), transparent 22rem);
}

.fs-server-card img {
  width: 170px;
  height: 170px;
  object-fit: contain;
}

.fs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.fs-tags span,
.fs-tags button {
  padding: 8px 10px;
  border: 1px solid rgba(255, 50, 34, 0.35);
  background: rgba(8, 4, 4, 0.62);
  color: var(--fs-red);
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.fs-tags button.is-active,
.fs-tags button:hover {
  background: rgba(160, 14, 10, 0.44);
  border-color: rgba(255, 84, 62, 0.78);
  color: #fff3e5;
}

.fs-live-panel {
  margin-top: 18px;
}

.fs-live-panel .leaderboard-list,
.fs-live-panel {
  display: grid;
  gap: 10px;
}

.fs-live-panel .leaderboard-item {
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.22);
}

.fs-live-panel .leaderboard-empty {
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid rgba(255, 47, 32, 0.22);
  background: rgba(5, 3, 3, 0.62);
  color: rgba(244, 238, 228, 0.68);
}

.fs-live-panel .leaderboard-rank {
  width: 32px;
  height: 32px;
  font-size: 13px;
}

.fs-live-panel .leaderboard-name {
  font-size: 14px;
}

.fs-live-panel .leaderboard-score {
  font-size: 16px;
}

.fs-community {
  background:
    linear-gradient(180deg, rgba(4, 3, 3, 0.96), rgba(9, 5, 5, 0.97)),
    url("/assets/images/news-tome.png") 92% 60% / min(40vw, 560px) auto no-repeat;
}

.fs-community__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}

.fs-community__grid--simple {
  width: min(100% - 48px, 980px);
  grid-template-columns: minmax(0, 1fr);
}

.fs-community-list {
  display: grid;
  gap: 14px;
}

.fs-community-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255, 47, 32, 0.3);
  background: rgba(8, 5, 5, 0.78);
}

.fs-community-item img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 43, 28, 0.36));
}

.fs-announcements {
  display: none;
}

.fs-announcements__head {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.fs-announcements .fs-section-title {
  font-size: clamp(30px, 3.6vw, 54px);
}

.fs-announcements .announcement-strip {
  width: min(1220px, 100%);
  margin-top: 32px;
}

.fs-announcements .announcement-link {
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(19, 8, 7, 0.94), rgba(5, 3, 3, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(255, 47, 32, 0.16), transparent 70%);
  border: 1px solid rgba(255, 47, 32, 0.26);
  box-shadow:
    0 0 22px rgba(255, 47, 32, 0.08),
    inset 0 0 16px rgba(255, 47, 32, 0.05);
}

.fs-announcements .announcement-link:hover {
  border-color: rgba(255, 78, 50, 0.7);
  box-shadow:
    0 0 28px rgba(255, 47, 32, 0.26),
    inset 0 0 20px rgba(255, 47, 32, 0.11);
}

.fs-announcements .announcement-link img {
  height: 31px;
  max-width: 180px;
  object-fit: contain;
  pointer-events: none;
}

.fs-rank-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.fs-rank-panel {
  min-height: 310px;
  padding: 22px;
  border: 1px solid rgba(255, 47, 32, 0.28);
  background: rgba(8, 5, 5, 0.78);
}

.fs-rank-panel h3 {
  margin: 0 0 16px;
  font-family: var(--fs-font-title);
  font-size: 18px;
  text-transform: uppercase;
}

.leaderboard-list {
  display: grid;
  gap: 10px;
}

.leaderboard-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.leaderboard-rank {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #ffe0b6;
  font-family: var(--fs-font-title);
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(255, 47, 32, 0.88);
  isolation: isolate;
}

.leaderboard-rank::before,
.leaderboard-rank::after {
  content: "";
  position: absolute;
  transform: rotate(45deg);
}

.leaderboard-rank::before {
  inset: 5px;
  z-index: -2;
  border: 1px solid rgba(255, 54, 36, 0.86);
  background:
    radial-gradient(circle, rgba(255, 43, 31, 0.28), transparent 58%),
    linear-gradient(180deg, rgba(70, 7, 5, 0.96), rgba(6, 3, 3, 0.98));
  box-shadow:
    0 0 14px rgba(255, 47, 32, 0.48),
    inset 0 0 14px rgba(255, 47, 32, 0.18);
}

.leaderboard-rank::after {
  inset: 13px;
  z-index: -1;
  background: var(--fs-red);
  box-shadow: 0 0 12px rgba(255, 47, 32, 0.94);
}

.leaderboard-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.leaderboard-name {
  overflow: hidden;
  color: var(--fs-ivory);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leaderboard-subtitle,
.leaderboard-metric,
.leaderboard-empty {
  color: rgba(244, 238, 228, 0.58);
  font-size: 12px;
}

.leaderboard-value {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.leaderboard-score {
  color: var(--fs-red);
  font-family: var(--fs-font-title);
  font-weight: 900;
}

.fs-final {
  min-height: 92vh;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(3, 2, 2, 0.7), rgba(3, 2, 2, 0.96)),
    url("/assets/images/hero-bg-dark-fantasy.png") center / cover no-repeat;
}

.fs-final__content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: 0 auto;
}

.fs-final h2 {
  margin-top: 18px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
}

.fs-brand-headline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.28em;
  text-transform: none;
}

.fs-final__gate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  color: #fff3e5;
  font-size: clamp(42px, 5.6vw, 92px);
  line-height: 0.94;
  letter-spacing: 3px;
  text-shadow:
    0 0 22px rgba(255, 47, 32, 0.48),
    0 0 52px rgba(255, 47, 32, 0.22);
}

.fs-final__gate::before,
.fs-final__gate::after {
  flex-basis: clamp(70px, 12vw, 170px);
  width: clamp(70px, 12vw, 170px);
  height: clamp(40px, 5vw, 58px);
}

.fs-wordmark {
  display: inline-block;
  font-family: var(--fs-font-title);
  font-size: 1.08em;
  font-weight: 900;
  line-height: 1;
  color: #fff3e5;
  text-transform: none;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.92),
    0 0 18px rgba(255, 47, 32, 0.34),
    0 0 46px rgba(255, 47, 32, 0.18);
  filter: drop-shadow(0 0 18px rgba(255, 47, 32, 0.18));
}

.fs-wordmark span {
  color: #ff2b1f;
  text-shadow:
    0 0 16px rgba(255, 47, 32, 0.92),
    0 0 34px rgba(255, 47, 32, 0.42);
}

.fs-final p {
  margin: 24px auto 0;
  max-width: 720px;
  color: rgba(244, 238, 228, 0.78);
  font-size: 20px;
  line-height: 1.65;
}

.fs-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.fs-footer {
  padding: 28px 0 24px;
  border-top: 1px solid rgba(255, 47, 32, 0.26);
  background: #030202;
  color: rgba(244, 238, 228, 0.58);
}

.fs-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.fs-footer__announcements {
  margin-top: 18px;
  display: grid;
  justify-items: start;
  gap: 10px;
}

.fs-footer__ann-title {
  justify-content: flex-start;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
}

.fs-footer__ann-title::before,
.fs-footer__ann-title::after {
  flex-basis: 58px;
  width: 58px;
  height: 22px;
}

.announcement-strip--footer {
  justify-content: flex-start;
  gap: 6px;
  margin: 0;
  padding: 0;
  max-width: min(760px, 100%);
}

.announcement-strip--footer .announcement-link {
  padding: 2px;
  border-radius: 3px;
  border-color: rgba(255, 47, 32, 0.2);
  background:
    linear-gradient(180deg, rgba(14, 7, 6, 0.84), rgba(3, 2, 2, 0.94));
  box-shadow:
    inset 0 0 12px rgba(255, 47, 32, 0.05),
    0 0 10px rgba(255, 47, 32, 0.06);
}

.announcement-strip--footer .announcement-link:hover {
  border-color: rgba(255, 73, 48, 0.62);
  box-shadow:
    inset 0 0 14px rgba(255, 47, 32, 0.1),
    0 0 18px rgba(255, 47, 32, 0.22);
}

.announcement-strip--footer .announcement-link img {
  width: auto;
  height: 18px;
  max-width: 96px;
  object-fit: contain;
  border-radius: 2px;
}

.fs-footer a {
  color: var(--fs-ivory);
  text-decoration: none;
}

.fs-footer button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--fs-ivory);
  font: inherit;
  cursor: pointer;
}

.fs-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
}

.fs-modal.is-open {
  display: flex;
}

.fs-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 34, 22, 0.18), transparent 44rem),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.fs-modal__panel {
  position: relative;
  width: min(1160px, calc(100vw - 68px));
  max-height: min(86vh, 880px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid rgba(255, 48, 32, 0.55);
  background:
    linear-gradient(180deg, rgba(19, 8, 7, 0.96), rgba(3, 2, 2, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(255, 43, 31, 0.13), transparent 36rem);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.9), inset 0 0 48px rgba(255, 32, 20, 0.08);
  overflow: hidden;
}

.fs-modal__panel::before,
.fs-modal__panel::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 47, 32, 0.85), transparent);
}

.fs-modal__panel::before {
  top: 18px;
}

.fs-modal__panel::after {
  bottom: 18px;
}

.fs-modal__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 30px 34px 20px;
  border-bottom: 1px solid rgba(255, 47, 32, 0.22);
}

.fs-modal__eyebrow {
  color: var(--fs-red);
  font-family: var(--fs-font-title);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fs-modal__head h2 {
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 44px);
}

.fs-modal__close {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 47, 32, 0.5);
  background: rgba(92, 10, 8, 0.72);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.fs-modal__close:hover {
  background: rgba(176, 20, 13, 0.82);
  transform: translateY(-1px);
}

.fs-modal__scroll,
.fs-modal__iframe-wrap {
  min-height: 0;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fs-modal__scroll::-webkit-scrollbar,
.fs-modal__iframe-wrap::-webkit-scrollbar,
.fs-modal__iframe::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.fs-modal__scroll {
  padding: 34px;
}

.fs-modal__hero {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 47, 32, 0.24);
  background: rgba(6, 4, 4, 0.68);
}

.fs-modal__hero img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 43, 28, 0.42));
}

.fs-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fs-modal-box {
  padding: 22px;
  border: 1px solid rgba(255, 47, 32, 0.24);
  background: rgba(5, 3, 3, 0.72);
}

.fs-modal-box h3 {
  margin: 0 0 14px;
  color: var(--fs-ivory);
  font-family: var(--fs-font-title);
  font-size: 21px;
  text-transform: uppercase;
}

.fs-modal__iframe-wrap {
  height: min(72vh, 760px);
}

.fs-modal__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #030202;
}

.fs-modal--wide .fs-modal__panel {
  width: min(1180px, calc(100vw - 68px));
}

.fs-modal--tall .fs-modal__iframe-wrap {
  height: min(76vh, 830px);
}

.fs-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.fs-modal-note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 47, 32, 0.24);
  background: rgba(255, 47, 32, 0.06);
  color: rgba(244, 238, 228, 0.78);
}

@media (max-width: 1380px) and (min-width: 1221px) {
  .fs-nav {
    padding: 0 34px;
  }

  .fs-header__actions > .server-status-pill {
    display: none;
  }
}

@media (max-width: 1220px) {
  .fs-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .fs-brand {
    padding-right: 0;
  }

  .fs-nav::before,
  .fs-nav::after {
    display: none;
  }

  .fs-header__actions {
    padding: 0;
  }

  .fs-nav {
    position: fixed;
    top: 86px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid rgba(255, 47, 32, 0.3);
    background: rgba(5, 3, 3, 0.96);
  }

  .fs-nav.is-open,
  .fs-nav.open {
    display: flex;
  }

  .fs-nav a,
  .fs-nav button {
    padding: 14px 18px;
    text-align: left;
  }

  .fs-menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .fs-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .fs-hero__logo {
    order: -1;
    min-height: 420px;
  }

  .fs-hero__logo img {
    width: min(78vw, 560px);
  }

  .fs-status-panel {
    max-width: 620px;
  }

  .fs-rank-preview,
  .fs-quick,
  .fs-server-cards {
    grid-template-columns: 1fr;
  }

  .fs-server-card {
    min-height: 0;
  }
}

@media (max-width: 920px) {
  .fs-shell {
    width: min(100% - 28px, 720px);
  }

  .fs-header::before,
  .fs-header::after {
    display: none;
  }

  .fs-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
    gap: 12px;
  }

  .fs-nav {
    top: 72px;
  }

  .fs-brand__crest {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .fs-brand__name {
    font-size: 18px;
  }

  .fs-brand__meta {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .fs-header__actions .server-status-pill,
  .fs-langs {
    display: none;
  }

  .fs-header__actions .fs-button--cabinet {
    display: none;
  }

  .fs-nav .fs-nav-mobile-only {
    display: inline-flex;
  }

  .fs-nav-mobile-langs {
    display: flex;
    gap: 8px;
    padding: 12px 18px 0;
  }

  .fs-nav-mobile-langs a {
    min-width: 58px;
    min-height: 40px;
    padding: 0 14px;
  }

  .fs-section {
    min-height: auto;
    padding: 104px 0 124px;
  }

  .fs-hero {
    min-height: 100svh;
  }

  .fs-hero__copy {
    max-width: none;
  }

  .fs-scroll-cue {
    --fs-scroll-scale: 0.64;
    bottom: 8px;
  }

  .fs-lore__grid,
  .fs-server-grid,
  .fs-server-section--x1200 .fs-server-grid,
  .fs-community__grid {
    grid-template-columns: 1fr;
  }

  .fs-server-section--x1200 .fs-server-emblem {
    order: -1;
  }

  .fs-lore__art {
    min-height: 340px;
  }

  .fs-quick {
    margin-top: 28px;
  }

  .fs-server-card,
  .fs-community-item,
  .fs-modal__hero {
    grid-template-columns: 1fr;
  }

  .fs-community-item {
    align-items: start;
  }

  .fs-modal {
    padding: 12px;
  }

  .fs-modal__panel {
    width: min(100%, calc(100vw - 24px));
    max-height: 92vh;
  }

  .fs-modal__head {
    padding: 22px 20px 16px;
  }

  .fs-modal__scroll {
    padding: 20px;
  }

  .fs-modal-grid {
    grid-template-columns: 1fr;
  }

  .fs-modal__iframe-wrap {
    height: 74vh;
  }

  .fs-start-choice {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .fs-header {
    backdrop-filter: blur(12px);
  }

  .fs-header__inner {
    min-height: 68px;
    gap: 8px;
  }

  .fs-nav {
    top: 68px;
    padding: 14px 14px 18px;
  }

  .fs-brand {
    gap: 6px;
  }

  .fs-brand__crest {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .fs-brand__name {
    font-size: 15px;
  }

  .fs-brand__meta {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .fs-header__actions {
    gap: 7px;
  }

  .fs-header__actions > .fs-button:not(.fs-button--cabinet) {
    width: auto;
    min-width: 108px;
    min-height: 42px;
    padding: 0 10px;
    font-size: 11px;
  }

  .fs-menu-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .fs-section {
    padding: 78px 0 112px;
  }

  .fs-hero {
    padding-top: 82px;
    padding-bottom: 112px;
  }

  .fs-hero__grid {
    gap: 24px;
    padding-top: 0;
  }

  .fs-hero__logo {
    min-height: 356px;
  }

  .fs-hero__logo img {
    width: min(94vw, 400px);
    max-height: none;
  }

  .fs-hero h1,
  .fs-section-title,
  .fs-final h2 {
    overflow-wrap: anywhere;
  }

  .fs-hero h1 {
    margin-top: 14px;
    font-size: 42px;
    line-height: 1.03;
  }

  .fs-kicker {
    max-width: 100%;
    gap: 7px;
    font-size: 11px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .fs-kicker::before,
  .fs-kicker::after {
    flex: 0 1 52px;
    width: 52px;
    min-width: 25px;
    height: 22px;
    background-image: url("/assets/images/l2-title-side-mobile.svg");
    background-size: 100% 100%;
    animation: none;
    opacity: 1;
    filter: drop-shadow(0 0 2px rgba(255, 40, 27, 0.42));
  }

  .fs-hero__copy .fs-kicker,
  .fs-compare__head .fs-kicker,
  .fs-community__grid .fs-kicker {
    display: flex;
    width: 100%;
  }

  .fs-hero__copy .fs-kicker::before,
  .fs-hero__copy .fs-kicker::after {
    flex-basis: 52px;
    width: 52px;
  }

  .fs-hero__copy .fs-kicker {
    font-size: 10px;
  }

  .fs-final__gate {
    gap: 14px;
    letter-spacing: 1px;
  }

  .fs-final__gate::before,
  .fs-final__gate::after {
    flex-basis: 54px;
    width: 54px;
  }

  .fs-scroll-cue {
    --fs-scroll-scale: 1;
    width: 58px;
    height: 106px;
    bottom: 10px;
    background: url("/assets/images/l2-scroll-down-mobile.svg") center bottom / contain no-repeat;
    filter: drop-shadow(0 0 3px rgba(255, 45, 28, 0.42));
    animation: fsScrollMobileFloat 2.2s infinite ease-in-out;
  }

  .fs-hero .fs-scroll-cue {
    --fs-scroll-scale: 1;
    bottom: 12px;
  }

  .fs-scroll-cue__line,
  .fs-scroll-cue__diamond,
  .fs-scroll-cue__arrow {
    display: none;
  }

  .fs-launch-countdown {
    margin-top: 24px;
    padding: 14px 12px 12px;
  }

  .fs-launch-countdown__head {
    display: grid;
    gap: 5px;
    text-align: center;
  }

  .fs-launch-countdown__head strong {
    font-size: 13px;
  }

  .fs-launch-countdown__grid {
    gap: 5px;
    margin-top: 12px;
  }

  .fs-launch-countdown__grid div {
    min-height: 57px;
    padding: 7px 3px 5px;
  }

  .fs-launch-countdown__grid b {
    font-size: 21px;
  }

  .fs-launch-countdown__grid small {
    font-size: 9px;
  }

  .fs-hero__cta .fs-button,
  .fs-final__actions .fs-button,
  .fs-server-actions .fs-button,
  .fs-modal-actions .fs-button {
    width: 100%;
    padding: 0 18px;
  }

  .fs-hero__cta,
  .fs-final__actions {
    width: 100%;
  }

  .fs-server-copy {
    padding: 24px 18px;
  }

  .fs-footer__inner {
    display: grid;
  }
}

@keyframes fsScrollMobileFloat {
  0%,
  100% {
    opacity: 0.78;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
  }
}

@media (max-width: 370px) {
  .fs-header__inner {
    gap: 5px;
  }

  .fs-brand__crest {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .fs-brand__name {
    font-size: 12px;
  }

  .fs-brand__meta {
    display: none;
  }

  .fs-header__actions > .fs-button:not(.fs-button--cabinet) {
    min-width: 86px;
    font-size: 9px;
  }

  .fs-header__actions {
    gap: 5px;
  }

  .fs-menu-btn {
    width: 38px;
    height: 38px;
  }
}
