/* The Fortress of Thieves - Azuriom theme */

:root {
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-title: Georgia, "Times New Roman", serif;

  --black-950: #050409;
  --black-900: #0b0912;
  --black-800: #14101d;
  --violet-950: #19072f;
  --violet-800: #3a126b;
  --violet-600: #8517e8;
  --violet-400: #bd65ff;
  --gold-700: #8f4200;
  --gold-500: #f0a600;
  --gold-300: #ffdd32;
  --gold-100: #fff0a3;
  --wood-900: #210b03;
  --wood-700: #592003;
  --leaf-700: #215e11;
  --leaf-500: #7fcb05;
  --sea-800: #06272e;
  --sea-600: #0e6976;
  --paper-200: #efd9a2;
  --text: rgba(255, 246, 213, .9);
  --muted: rgba(255, 246, 213, .64);
  --line: rgba(255, 221, 50, .18);
  --shadow: 0 24px 70px rgba(0, 0, 0, .45);
  --radius-card: 8px;
  --radius-control: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.theme-fortress {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    linear-gradient(90deg, rgba(255, 221, 50, .025) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(0deg, rgba(255, 221, 50, .018) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(180deg, var(--black-950), var(--violet-950) 44%, var(--wood-900));
  overflow-x: hidden;
}

body.theme-fortress::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(14, 105, 118, .22), transparent 34%),
    linear-gradient(250deg, rgba(127, 203, 5, .12), transparent 32%),
    repeating-linear-gradient(135deg, rgba(189, 101, 255, .045) 0 2px, transparent 2px 32px);
}

body.theme-fortress a {
  color: var(--gold-300);
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

body.theme-fortress a:hover {
  color: var(--gold-100);
}

::selection {
  color: #210b03;
  background: var(--gold-300);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: #210b03;
  background: var(--gold-300);
  border-radius: var(--radius-control);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.theme-fortress :focus-visible {
  outline: 3px solid rgba(255, 221, 50, .82);
  outline-offset: 3px;
}

.theme-fortress img {
  max-width: 100%;
}

.theme-fortress h1,
.theme-fortress h2,
.theme-fortress h3,
.theme-fortress h4,
.theme-fortress h5,
.theme-fortress h6 {
  color: var(--gold-100);
  font-family: var(--font-title);
  letter-spacing: 0;
}

.theme-fortress p {
  color: var(--muted);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 11px;
  color: var(--gold-100);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(5, 4, 9, .64);
  border: 1px solid rgba(255, 221, 50, .24);
  border-radius: 999px;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-control);
  font-weight: 900;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-gold,
.theme-fortress .btn-primary {
  color: #241000;
  background: linear-gradient(180deg, #fff06d, var(--gold-300) 48%, var(--gold-500) 49%, var(--gold-700));
  border: 1px solid rgba(255, 240, 163, .88);
  box-shadow: 0 14px 28px rgba(240, 166, 0, .3), inset 0 -3px 0 rgba(65, 27, 0, .38);
}

.btn-gold:hover,
.theme-fortress .btn-primary:hover,
.theme-fortress .btn-primary:focus {
  color: #160900;
  background: linear-gradient(180deg, #fff7ac, var(--gold-300) 55%, #d17a00);
  border-color: #fff6b8;
}

.btn-darkwater,
.theme-fortress .btn-info {
  color: #effcff;
  background: linear-gradient(180deg, var(--sea-600), #093944);
  border: 1px solid rgba(189, 101, 255, .28);
  box-shadow: 0 14px 28px rgba(14, 105, 118, .25);
}

.btn-darkwater:hover,
.theme-fortress .btn-info:hover {
  color: #fff;
  background: linear-gradient(180deg, #118696, #0a4b57);
}

.btn-ghost,
.theme-fortress .btn-secondary,
.theme-fortress .btn-outline-primary {
  color: var(--text);
  background: rgba(5, 4, 9, .56);
  border: 1px solid rgba(255, 221, 50, .22);
}

.btn-ghost:hover,
.theme-fortress .btn-secondary:hover,
.theme-fortress .btn-outline-primary:hover {
  color: var(--gold-100);
  background: rgba(58, 18, 107, .58);
  border-color: rgba(255, 221, 50, .42);
}

/* Navbar */
.navbar-fortress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: 0;
}

.navbar-shell {
  min-height: 72px;
  padding: 0 22px;
  background: rgba(5, 4, 9, .7);
  border-bottom: 1px solid rgba(255, 221, 50, .16);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .26);
  backdrop-filter: blur(16px);
}

.navbar-fortress.scrolled .navbar-shell {
  background: rgba(5, 4, 9, .94);
}

.fortress-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  margin-right: 18px;
  color: var(--gold-100);
  font-weight: 900;
  text-decoration: none;
}

.fortress-brand:hover {
  color: var(--gold-100);
}

.fortress-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.fortress-nav {
  gap: 2px;
  margin-left: auto;
}

.fortress-link {
  position: relative;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px !important;
  color: rgba(255, 246, 213, .76) !important;
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fortress-link:hover,
.fortress-link.active,
.fortress-link.show {
  color: #fff !important;
  background: rgba(255, 221, 50, .08);
}

.fortress-link.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-300), var(--violet-400));
}

.server-ribbon {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.fortress-toggler {
  width: 44px;
  height: 44px;
  display: none;
  padding: 0;
  border: 1px solid rgba(255, 221, 50, .26);
  border-radius: var(--radius-control);
}

.fortress-toggler span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--gold-300);
  border-radius: 999px;
}

.fortress-dropdown,
.theme-fortress .dropdown-menu {
  padding: 8px;
  color: var(--text);
  background: rgba(8, 6, 14, .98);
  border: 1px solid rgba(255, 221, 50, .18);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.theme-fortress .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  color: rgba(255, 246, 213, .8);
  border-radius: 6px;
}

.theme-fortress .dropdown-item:hover,
.theme-fortress .dropdown-item:focus {
  color: #fff;
  background: rgba(133, 23, 232, .2);
}

/* Hero */
.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 112px 0 72px;
  isolation: isolate;
}

/* Replace this animated CSS background with a server screenshot/video poster when assets are ready. */
.hero-screen-slot {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 4, 9, .9), rgba(5, 4, 9, .35) 45%, rgba(5, 4, 9, .72)),
    linear-gradient(180deg, rgba(5, 4, 9, .26), rgba(5, 4, 9, .62) 76%, var(--black-950)),
    linear-gradient(120deg, rgba(6, 39, 46, .86), rgba(58, 18, 107, .74) 48%, rgba(89, 32, 3, .78));
}

.hero-screen-slot::before,
.hero-screen-slot::after,
.hero-screen-motion {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-screen-slot::before {
  background:
    linear-gradient(90deg, rgba(255, 221, 50, .06) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(255, 221, 50, .04) 1px, transparent 1px) 0 0 / 72px 72px;
  opacity: .58;
}

.hero-screen-slot::after {
  background:
    repeating-linear-gradient(170deg, transparent 0 28px, rgba(255, 221, 50, .08) 28px 30px),
    radial-gradient(circle at 74% 22%, rgba(127, 203, 5, .2), transparent 26%),
    radial-gradient(circle at 20% 42%, rgba(189, 101, 255, .24), transparent 32%);
  mix-blend-mode: screen;
}

.hero-screen-motion {
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(255, 246, 213, .1) 28%, transparent 40%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .02) 0 1px, transparent 1px 7px);
  animation: hero-sweep 9s linear infinite;
  opacity: .8;
}

.hero-logo-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.hero-logo-lockup {
  display: block;
  width: min(680px, 86%);
}

.hero-logo-lockup img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .58));
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 246, 213, .82);
  font-size: 1.1rem;
  line-height: 1.72;
}


/* Sections */
.news-strip {
  padding: 58px 0;
  background:
    linear-gradient(180deg, var(--black-950), #0d0a15),
    repeating-linear-gradient(90deg, rgba(255, 221, 50, .025) 0 1px, transparent 1px 42px);
  border-bottom: 1px solid rgba(255, 221, 50, .12);
}

.news-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.news-copy {
  max-width: 720px;
}

.news-copy h2,
.section-heading h2,
.route-copy h2 {
  margin: 16px 0 12px;
  font-size: 2.5rem;
  line-height: 1.08;
}

.news-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.news-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, #0d0a15, #16071f 48%, #08060d),
    repeating-linear-gradient(135deg, rgba(189, 101, 255, .04) 0 2px, transparent 2px 28px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  grid-auto-rows: minmax(276px, auto);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  background: rgba(8, 6, 14, .8);
  border: 1px solid rgba(255, 221, 50, .16);
  border-radius: var(--radius-card);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .32);
}

.feature-card--large {
  grid-row: span 2;
}

.feature-card:hover {
  border-color: rgba(255, 221, 50, .38);
  transform: translateY(-3px);
}

/* These media slots are intentionally CSS-only until real server screenshots are available. */
.feature-media {
  min-height: 300px;
  background:
    linear-gradient(180deg, transparent, rgba(5, 4, 9, .86)),
    linear-gradient(90deg, rgba(255, 221, 50, .08) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(0deg, rgba(255, 221, 50, .06) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(130deg, rgba(6, 39, 46, .92), rgba(58, 18, 107, .82), rgba(89, 32, 3, .72));
}

.feature-card--large .feature-media {
  min-height: 470px;
}

.feature-media--treasure {
  background:
    linear-gradient(180deg, transparent, rgba(5, 4, 9, .88)),
    linear-gradient(135deg, rgba(255, 221, 50, .28), transparent 36%),
    linear-gradient(120deg, rgba(89, 32, 3, .9), rgba(58, 18, 107, .78));
}

.feature-media--crew {
  background:
    linear-gradient(180deg, transparent, rgba(5, 4, 9, .88)),
    radial-gradient(circle at 28% 20%, rgba(127, 203, 5, .3), transparent 28%),
    linear-gradient(120deg, rgba(6, 39, 46, .9), rgba(58, 18, 107, .74));
}

.feature-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(5, 4, 9, .96) 22%);
}

.feature-body span {
  color: var(--gold-300);
  font-size: .82rem;
  font-weight: 900;
}

.feature-body h3 {
  max-width: 620px;
  margin: 7px 0 8px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.feature-body p {
  max-width: 620px;
  margin: 0;
  line-height: 1.58;
}

.routes-section {
  padding: 82px 0;
  color: #1d0c03;
  background:
    linear-gradient(180deg, var(--paper-200), #d6b46d),
    repeating-linear-gradient(45deg, rgba(33, 11, 3, .08) 0 1px, transparent 1px 20px);
}

.routes-section p {
  max-width: 560px;
  line-height: 1.7;
}

.routes-section h2,
.routes-section p {
  color: #1d0c03;
}

.routes-section .section-kicker {
  color: #1d0c03;
  background: rgba(255, 221, 50, .38);
  border-color: rgba(33, 11, 3, .18);
}

.routes-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: center;
}

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

.route-link {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: #1d0c03;
  font-size: 1rem;
  font-weight: 900;
  text-align: left;
  text-decoration: none;
  background: rgba(255, 255, 255, .32);
  border: 1px solid rgba(33, 11, 3, .18);
  border-radius: var(--radius-card);
}

.route-link:hover {
  color: #1d0c03;
  background: rgba(255, 255, 255, .52);
  transform: translateY(-2px);
}

.route-link i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold-100);
  background: linear-gradient(180deg, var(--violet-600), var(--violet-800));
  border-radius: var(--radius-control);
}

.server-info-section {
  padding: 72px 0 94px;
  background:
    linear-gradient(180deg, #08060d, var(--black-950)),
    repeating-linear-gradient(135deg, rgba(255, 221, 50, .04) 0 2px, transparent 2px 26px);
}

.server-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.server-info-item {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 22px;
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(20, 16, 29, .92), rgba(33, 11, 3, .82));
  border: 1px solid rgba(255, 221, 50, .16);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .26);
}

.server-info-item:hover {
  color: #fff;
  border-color: rgba(255, 221, 50, .38);
  transform: translateY(-2px);
}

.server-info-item span {
  color: rgba(255, 246, 213, .56);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.server-info-item strong {
  overflow: hidden;
  color: var(--gold-100);
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-info-item button {
  max-width: 100%;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
}

/* Inner Azuriom pages */
.page-shell {
  position: relative;
  min-height: 70vh;
  padding: 118px 0 80px;
  background:
    linear-gradient(180deg, rgba(58, 18, 107, .26), rgba(6, 39, 46, .12)),
    repeating-linear-gradient(135deg, rgba(255, 221, 50, .026) 0 1px, transparent 1px 28px);
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 240px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 4, 9, .44), transparent),
    repeating-linear-gradient(160deg, rgba(255, 221, 50, .055) 0 2px, transparent 2px 28px);
}

.page-shell__inner {
  position: relative;
  z-index: 1;
}

.page-shell h1,
.page-shell .h1 {
  margin-bottom: 24px;
  font-size: 2.4rem;
}

.theme-fortress .card {
  color: var(--text);
  background: linear-gradient(180deg, rgba(20, 16, 29, .96), rgba(33, 11, 3, .9));
  border: 1px solid rgba(255, 221, 50, .16);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.theme-fortress .card-header,
.theme-fortress .card-footer {
  color: var(--gold-100);
  background: rgba(0, 0, 0, .18);
  border-color: rgba(255, 221, 50, .14);
}

.theme-fortress .card-title {
  color: var(--gold-100);
}

.theme-fortress .list-group-item {
  color: var(--text);
  background: rgba(11, 9, 18, .75);
  border-color: rgba(255, 221, 50, .12);
}

.theme-fortress .table {
  color: var(--text);
  border-color: rgba(255, 221, 50, .15);
}

.theme-fortress .table > :not(caption) > * > * {
  color: inherit;
  background: rgba(11, 9, 18, .62);
  border-color: rgba(255, 221, 50, .12);
}

.theme-fortress .table thead th {
  color: var(--gold-100);
  background: rgba(33, 11, 3, .88);
}

.theme-fortress .form-label {
  color: var(--gold-100);
  font-weight: 900;
}

.theme-fortress .form-control,
.theme-fortress .form-select {
  min-height: 44px;
  color: #210b03;
  background-color: var(--paper-200);
  border: 1px solid rgba(89, 32, 3, .42);
  border-radius: var(--radius-control);
}

.theme-fortress .form-control:focus,
.theme-fortress .form-select:focus {
  color: #170801;
  background-color: #fff0be;
  border-color: var(--violet-400);
  box-shadow: 0 0 0 .22rem rgba(133, 23, 232, .22);
}

.theme-fortress .input-group-text {
  color: var(--gold-100);
  background: rgba(33, 11, 3, .95);
  border-color: rgba(255, 221, 50, .2);
}

.theme-fortress .form-text,
.theme-fortress .text-muted {
  color: rgba(255, 246, 213, .58) !important;
}

.theme-fortress .alert {
  color: var(--text);
  background: rgba(11, 9, 18, .9);
  border: 1px solid rgba(255, 221, 50, .18);
  border-radius: var(--radius-card);
}

.theme-fortress .alert-success {
  border-color: rgba(127, 203, 5, .42);
}

.theme-fortress .alert-danger,
.theme-fortress .alert-error {
  border-color: rgba(189, 101, 255, .5);
}

.theme-fortress .badge {
  border-radius: 999px;
  font-weight: 900;
}

.theme-fortress .bg-primary,
.theme-fortress .badge.bg-primary {
  color: #210b03 !important;
  background-color: var(--gold-500) !important;
}

.theme-fortress .bg-secondary,
.theme-fortress .badge.bg-secondary {
  background-color: var(--violet-800) !important;
}

.theme-fortress .breadcrumb {
  padding: 10px 12px;
  background: rgba(11, 9, 18, .72);
  border: 1px solid rgba(255, 221, 50, .14);
  border-radius: var(--radius-card);
}

.theme-fortress .breadcrumb-item,
.theme-fortress .breadcrumb-item.active {
  color: rgba(255, 246, 213, .68);
}

.theme-fortress .nav-tabs {
  border-bottom-color: rgba(255, 221, 50, .2);
}

.theme-fortress .nav-tabs .nav-link {
  color: rgba(255, 246, 213, .72);
  border-radius: var(--radius-control) var(--radius-control) 0 0;
}

.theme-fortress .nav-tabs .nav-link:hover,
.theme-fortress .nav-tabs .nav-link.active {
  color: var(--gold-100);
  background: rgba(58, 18, 107, .78);
  border-color: rgba(255, 221, 50, .2);
}

.theme-fortress .pagination {
  gap: 6px;
}

.theme-fortress .page-link {
  color: var(--gold-300);
  background: rgba(11, 9, 18, .82);
  border-color: rgba(255, 221, 50, .18);
  border-radius: var(--radius-control);
}

.theme-fortress .page-link:hover,
.theme-fortress .page-item.active .page-link {
  color: #210b03;
  background: var(--gold-300);
  border-color: var(--gold-100);
}

.theme-fortress .modal-content {
  color: var(--text);
  background: linear-gradient(180deg, rgba(20, 16, 29, .98), rgba(33, 11, 3, .98));
  border: 1px solid rgba(255, 221, 50, .22);
  border-radius: var(--radius-card);
}

.theme-fortress .modal-header,
.theme-fortress .modal-footer {
  border-color: rgba(255, 221, 50, .16);
}

.theme-fortress .progress {
  background: rgba(0, 0, 0, .32);
  border-radius: 999px;
}

.theme-fortress .progress-bar {
  background: linear-gradient(90deg, var(--violet-600), var(--gold-300), var(--leaf-500));
}

/* Footer */
.footer-fortress {
  color: var(--text);
  background:
    linear-gradient(180deg, var(--black-950), var(--wood-900)),
    repeating-linear-gradient(90deg, rgba(255, 221, 50, .024) 0 1px, transparent 1px 34px);
  border-top: 1px solid rgba(255, 221, 50, .16);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(150px, .7fr) minmax(150px, .7fr);
  gap: 34px;
  padding: 48px 12px 36px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-100);
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-brand:hover {
  color: var(--gold-100);
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-brand-block p {
  max-width: 430px;
  margin: 16px 0 18px;
  line-height: 1.65;
}

.server-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  padding: 10px 13px;
  color: #210b03;
  font-weight: 900;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  border-radius: var(--radius-control);
}

.server-ribbon span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--gold-100);
  font-size: 1.08rem;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column a {
  color: rgba(255, 246, 213, .64);
  font-weight: 800;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  max-width: 1140px;
  padding: 18px 12px 24px;
  margin: 0 auto;
  color: rgba(255, 246, 213, .44);
  font-size: .86rem;
  border-top: 1px solid rgba(255, 221, 50, .12);
}

.footer-bottom a {
  color: rgba(255, 246, 213, .56);
  text-decoration: none;
}

/* Motion */
@keyframes hero-sweep {
  from { transform: translateX(-28%); }
  to { transform: translateX(28%); }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* Responsive */
@media (max-width: 1199.98px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .navbar-shell {
    min-height: 66px;
    padding: 8px 12px;
  }

  .fortress-toggler {
    display: block;
    margin-left: auto;
  }

  .navbar-fortress .navbar-collapse {
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    background: rgba(5, 4, 9, .96);
    border: 1px solid rgba(255, 221, 50, .14);
    border-radius: var(--radius-card);
  }

  .fortress-link {
    min-height: 42px;
    width: 100%;
  }

  .hero-logo-lockup {
    width: min(560px, 86%);
  }

  .news-strip-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-grid,
  .routes-layout,
  .server-info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    grid-row: auto;
  }

  .feature-card--large .feature-media,
  .feature-media {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .home-hero {
    padding-top: 92px;
  }

  .hero-logo-lockup {
    width: min(430px, 86%);
  }

  .news-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .news-actions .btn {
    width: 100%;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .news-strip,
  .feature-section,
  .routes-section,
  .server-info-section {
    padding: 64px 0;
  }

  .news-copy h2,
  .section-heading h2,
  .route-copy h2,
  .page-shell h1,
  .page-shell .h1 {
    font-size: 2rem;
  }

  .feature-media,
  .feature-card--large .feature-media {
    min-height: 260px;
  }

  .feature-body {
    padding: 18px;
  }

  .feature-body h3 {
    font-size: 1.32rem;
  }

  .page-shell {
    padding-top: 96px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .section-kicker {
    font-size: .7rem;
  }

  .route-link {
    padding: 18px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
