:root {
  --bg: #05070d;
  --panel: #252831;
  --panel-2: #1f222a;
  --header: #22252d;
  --text: #f1f3f8;
  --muted: #b7becf;
  --line: #353945;
  --accent: #b7cbe7;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.55;
}

.container {
  width: min(1200px, 95%);
  margin: 0 auto;
}

.topbar {
  background: var(--header);
  border-bottom: 1px solid #2c2f39;
}

.topbar-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2vw, 2rem);
  letter-spacing: 1px;
}

.brand-text small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.topbar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.9rem;
}

.search {
  display: flex;
  align-items: center;
  background: #f4f6fb;
  border: 1px solid #111;
  border-radius: 2px;
  overflow: hidden;
  width: min(360px, 90vw);
}

.search input {
  border: 0;
  background: transparent;
  width: 100%;
  font: inherit;
  padding: 0.45rem 0.6rem;
}

.search button {
  border: 0;
  background: #9fc46d;
  color: #10180a;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.menu {
  position: relative;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
}

.menu-item {
  position: relative;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #dce2ef;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  line-height: 1.2;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.menu-list > .menu-item > .menu-link {
  padding: 0.25rem 0.15rem;
}

.menu-item.has-submenu > .menu-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #dce2ef;
  margin-top: 2px;
}

.menu .submenu .menu-item.has-submenu > .menu-link::after {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #dce2ef;
  border-right: 0;
  margin-top: 0;
}

.menu-link:hover,
.menu-link:focus-visible,
.menu-item:hover > .menu-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  margin: 0;
  padding: 0.45rem 0;
  list-style: none;
  background: #5a5d64;
  border: 1px solid #696c73;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.submenu .menu-link {
  width: 100%;
  padding: 0.55rem 1rem;
  justify-content: space-between;
  color: #f1f5ff;
  font-size: 0.86rem;
  border-radius: 0;
}

.submenu .submenu {
  top: -1px;
  left: 100%;
  transform: translateX(-8px);
}

.menu-item:hover > .submenu,
.menu-item:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu .menu-item:hover > .submenu,
.submenu .menu-item:focus-within > .submenu {
  transform: translateX(0);
}

.servers,
.about {
  padding: 4.25rem 0;
}

.about {
  border-top: 1px solid var(--line);
}

.section-title {
  margin: 0 0 1.35rem;
  text-align: center;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: clamp(2rem, 3vw, 3.3rem);
  letter-spacing: 1px;
}

.server-list {
  background: var(--panel);
  border: 1px solid #2f3340;
}

.server-list details {
  border-bottom: 1px solid #30343f;
}

.server-list details:last-child {
  border-bottom: 0;
}

.server-list summary {
  padding: 1.05rem 1.2rem;
  list-style: none;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2vw, 2rem);
  color: #eef2ff;
}

.server-list summary::-webkit-details-marker {
  display: none;
}

.server-list summary::before {
  content: "▶";
  display: inline-block;
  margin-right: 0.6rem;
  color: #e8edf9;
  transition: transform 0.2s ease;
}

.server-list details[open] summary::before {
  transform: rotate(90deg);
}

.server-list p {
  margin: 0;
  color: var(--muted);
}

.server-content {
  padding: 0 1.2rem 1rem 2.7rem;
  display: grid;
  gap: 0.9rem;
}

.server-address {
  color: #f4f7ff;
  font-weight: 700;
  font-size: 1.03rem;
}

.server-wipe strong,
.server-content p strong {
  color: #e4ecfc;
}

.discord-link {
  margin: 0 0 2rem;
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.discord-link a {
  color: inherit;
  text-decoration: none;
}

.discord-link a:hover,
.discord-link a:focus-visible {
  text-decoration: underline;
}

.about-body {
  overflow: hidden;
}

.about-text {
  color: #e5e9f3;
  font-size: 1.04rem;
}

.about-text p {
  margin: 0 0 1.1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  float: right;
  width: min(380px, 42%);
  margin: 0 0 1.25rem 1.75rem;
  border: 2px solid #c8d8f0;
  background: #0d1220;
  overflow: hidden;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .topbar-right {
    width: 100%;
    align-items: flex-start;
  }

  .menu {
    width: 100%;
  }

  .menu-list {
    justify-content: flex-start;
  }

  .about-image {
    float: none;
    width: 100%;
    margin: 0 0 1.25rem;
    max-width: 400px;
  }
}

.site-footer {
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
  background: #080b12;
}

.footer-inner {
  padding: 0.95rem 0 0.8rem;
  text-align: center;
}

.footer-links {
  margin: 0.4rem 0;
}
.footer-links a {
  margin: 0 0.5rem;
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-title {
  margin: 0;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  color: #e8edf8;
}

.footer-copy {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: #a9b1c1;
  text-transform: uppercase;
}
:root {
  --bg: #06070b;
  --bg-elev: #111420;
  --card: #171b29;
  --card-2: #1f2434;
  --text: #f4f7ff;
  --muted: #aab4ca;
  --line: #2a3146;
  --brand: #8bc3ff;
  --brand-2: #7b86ff;
  --success: #8ff1c2;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% -15%, rgba(123, 134, 255, 0.18), transparent 40%),
    radial-gradient(circle at 10% -20%, rgba(120, 209, 255, 0.12), transparent 40%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, 94%);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 700;
}

.section-title {
  margin: 0 0 0.8rem;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.section-intro {
  margin: 0 auto 1.6rem;
  max-width: 70ch;
  text-align: center;
  font-size: 1.125rem;
  color: var(--muted);
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(8, 12, 20, 0.78);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}

.brand-text strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  letter-spacing: 0.05em;
}

.brand-text small {
  display: block;
  margin-top: 0.05rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.topbar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.search {
  width: min(360px, 90vw);
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #0a0a0a;
  font: inherit;
  padding: 0.55rem 0.75rem;
}

.search input::placeholder {
  color: #a9b3cb;
}

.search button {
  width: 40px;
  height: 40px;
  border: 0;
  cursor: pointer;
  color: #051018;
  background: linear-gradient(140deg, #9ae7c3, #74d9ff);
}

.search-results {
  min-height: 2rem;
}

.search-message {
  color: var(--muted);
  margin: 0.5rem 0 1rem;
}

.search-results-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.search-results-list li {
  margin-bottom: 0.4rem;
}

.search-results-list a {
  color: var(--accent);
  text-decoration: none;
}

.search-results-list a:hover {
  text-decoration: underline;
}

/* Nav */
.menu {
  position: relative;
}

.menu-list,
.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-item {
  position: relative;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  text-decoration: none;
  color: #e6ecfb;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  letter-spacing: 0.02em;
  font-size: 0.93rem;
  line-height: 1.2;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.menu-list > .menu-item > .menu-link {
  padding: 0.35rem 0.35rem;
}

.menu-item.has-submenu > .menu-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #c9d2e7;
  margin-top: 2px;
}

.menu .submenu .menu-item.has-submenu > .menu-link::after {
  border: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #d7e2ff;
}

.menu-link:hover,
.menu-link:focus-visible,
.menu-item:hover > .menu-link {
  color: #fff;
  background: rgba(140, 183, 255, 0.18);
  border-radius: 8px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 0.45rem 0;
  border: 1px solid rgba(157, 172, 201, 0.32);
  border-radius: 12px;
  background: rgba(23, 29, 45, 0.95);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.submenu .menu-link {
  width: 100%;
  padding: 0.55rem 0.95rem;
  border-radius: 0;
  font-size: 0.86rem;
}

.submenu .submenu {
  top: -1px;
  left: calc(100% + 0.45rem);
  transform: translateX(-8px);
}

.menu-item:hover > .submenu,
.menu-item:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu .menu-item:hover > .submenu,
.submenu .menu-item:focus-within > .submenu {
  transform: translateX(0);
}

/* Hero */
.hero {
  padding: clamp(4rem, 8vw, 6.25rem) 0 3rem;
}

.hero-inner {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(132, 150, 188, 0.32);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(127, 137, 255, 0.18), rgba(94, 176, 255, 0.08)),
    linear-gradient(180deg, rgba(22, 27, 42, 0.95), rgba(12, 16, 28, 0.95));
  box-shadow: var(--shadow);
}

.hero h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 6vw, 4rem);
}

.hero-copy {
  margin: 1rem 0 0;
  max-width: 68ch;
  color: #c4cfe6;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.hero-actions {
  margin-top: 1.55rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.1rem;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.77rem;
  font-weight: 700;
}

.btn-primary {
  color: #08111f;
  background: linear-gradient(140deg, #79e8be, #7cd6ff);
}

.btn-ghost {
  color: #dce6fc;
  border: 1px solid rgba(220, 230, 252, 0.36);
  background: rgba(255, 255, 255, 0.04);
}

/* Servers */
.server-list {
  display: grid;
  gap: 1rem;
}

.server-list details {
  border: 1px solid rgba(161, 176, 207, 0.28);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--card), var(--card-2));
  overflow: hidden;
}

.server-list summary {
  padding: 1rem 1.2rem;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.15rem, 2.7vw, 1.7rem);
}

.server-list summary::-webkit-details-marker {
  display: none;
}

.server-list summary::before {
  content: "▶";
  font-size: 0.85rem;
  color: #d7e1f7;
  transition: transform 0.2s ease;
}

.server-list details[open] summary::before {
  transform: rotate(90deg);
}

.server-content {
  padding: 0.35rem 1.2rem 1.2rem 2.7rem;
  display: grid;
  gap: 0.85rem;
}

.server-list p {
  margin: 0;
  color: #c7d0e5;
}

.server-address {
  color: var(--success);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.server-content strong {
  color: #eef4ff;
}

/* About */
.about {
  border-top: 1px solid var(--line);
}

.discord-link {
  margin: 0 0 2rem;
}

.discord-link a {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(123, 177, 255, 0.42);
  border-radius: 999px;
  text-decoration: none;
  color: #b9d9ff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.discord-link a:hover,
.discord-link a:focus-visible {
  border-color: #9cc8ff;
  color: #d6e9ff;
}


.about-copy,
.about-more {
  color: #d6ddef;
  font-size: 1.03rem;
}

.about-more {
  margin-top: 1rem;
  columns: 2;
  column-gap: 1.3rem;
}

.about-more p {
  margin: 0 0 1rem;
  break-inside: avoid;
}

.about-image {
  border: 1px solid rgba(171, 194, 231, 0.36);
  border-radius: 14px;
  overflow: hidden;
  background: #101726;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  background: rgba(9, 12, 20, 0.88);
}

.footer-inner {
  padding: 1.2rem 0 1rem;
  text-align: center;
}

.footer-links {
  margin: 0.4rem 0;
}
.footer-links a {
  margin: 0 0.5rem;
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-title {
  margin: 0;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.footer-copy {
  margin: 0.2rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 0;
  }

  .topbar-right {
    width: 100%;
    align-items: flex-start;
  }

  .menu-list {
    justify-content: flex-start;
    row-gap: 0.55rem;
  }

  .about-image {
    float: none;
    width: 100%;
    margin: 0 0 1.25rem;
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.4rem 0;
  }

  .search {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    flex: 1 1 auto;
  }

  .submenu {
    min-width: 200px;
  }
}
:root {
  --bg: #05070d;
  --panel: #252831;
  --panel-2: #1f222a;
  --header: #22252d;
  --text: #f1f3f8;
  --muted: #b7becf;
  --line: #353945;
  --accent: #b7cbe7;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.55;
}

.container {
  width: min(1200px, 95%);
  margin: 0 auto;
}

.topbar {
  background: var(--header);
  border-bottom: 1px solid #2c2f39;
}

.topbar-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2vw, 2rem);
  letter-spacing: 1px;
}

.brand-text small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.topbar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.9rem;
}

.search {
  display: flex;
  align-items: center;
  background: #f4f6fb;
  border: 1px solid #111;
  border-radius: 2px;
  overflow: hidden;
  width: min(360px, 90vw);
}

.search input {
  border: 0;
  background: transparent;
  width: 100%;
  font: inherit;
  padding: 0.45rem 0.6rem;
}

.search button {
  border: 0;
  background: #9fc46d;
  color: #10180a;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.menu {
  position: relative;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
}

.menu-item {
  position: relative;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #dce2ef;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  line-height: 1.2;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.menu-list > .menu-item > .menu-link {
  padding: 0.25rem 0.15rem;
}

.menu-item.has-submenu > .menu-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #dce2ef;
  margin-top: 2px;
}

.menu .submenu .menu-item.has-submenu > .menu-link::after {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #dce2ef;
  border-right: 0;
  margin-top: 0;
}

.menu-link:hover,
.menu-link:focus-visible,
.menu-item:hover > .menu-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  margin: 0;
  padding: 0.45rem 0;
  list-style: none;
  background: #5a5d64;
  border: 1px solid #696c73;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.submenu .menu-link {
  width: 100%;
  padding: 0.55rem 1rem;
  justify-content: space-between;
  color: #f1f5ff;
  font-size: 0.86rem;
  border-radius: 0;
}

.submenu .submenu {
  top: -1px;
  left: 100%;
  transform: translateX(-8px);
}

.menu-item:hover > .submenu,
.menu-item:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu .menu-item:hover > .submenu,
.submenu .menu-item:focus-within > .submenu {
  transform: translateX(0);
}

.servers,
.about {
  padding: 4.25rem 0;
}

.about {
  border-top: 1px solid var(--line);
}

.section-title {
  margin: 0 0 1.35rem;
  text-align: center;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: clamp(2rem, 3vw, 3.3rem);
  letter-spacing: 1px;
}

.server-list {
  background: var(--panel);
  border: 1px solid #2f3340;
}

.server-list details {
  border-bottom: 1px solid #30343f;
}

.server-list details:last-child {
  border-bottom: 0;
}

.server-list summary {
  padding: 1.05rem 1.2rem;
  list-style: none;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2vw, 2rem);
  color: #eef2ff;
}

.server-list summary::-webkit-details-marker {
  display: none;
}

.server-list summary::before {
  content: "▶";
  display: inline-block;
  margin-right: 0.6rem;
  color: #e8edf9;
  transition: transform 0.2s ease;
}

.server-list details[open] summary::before {
  transform: rotate(90deg);
}

.server-list p {
  margin: 0;
  color: var(--muted);
}

.server-content {
  padding: 0 1.2rem 1rem 2.7rem;
  display: grid;
  gap: 0.9rem;
}

.server-address {
  color: #f4f7ff;
  font-weight: 700;
  font-size: 1.03rem;
}

.server-wipe strong,
.server-content p strong {
  color: #e4ecfc;
}

.discord-link {
  margin: 0 0 2rem;
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.discord-link a {
  color: inherit;
  text-decoration: none;
}

.discord-link a:hover,
.discord-link a:focus-visible {
  text-decoration: underline;
}

.about-body {
  overflow: hidden;
}

.about-text {
  color: #e5e9f3;
  font-size: 1.04rem;
}

.about-text p {
  margin: 0 0 1.1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  float: right;
  width: min(380px, 42%);
  margin: 0 0 1.25rem 1.75rem;
  border: 2px solid #c8d8f0;
  background: #0d1220;
  overflow: hidden;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .topbar-right {
    width: 100%;
    align-items: flex-start;
  }

  .menu {
    width: 100%;
  }

  .menu-list {
    justify-content: flex-start;
  }

  .about-image {
    float: none;
    width: 100%;
    margin: 0 0 1.25rem;
    max-width: 400px;
  }
}

.site-footer {
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
  background: #080b12;
}

.footer-inner {
  padding: 0.95rem 0 0.8rem;
  text-align: center;
}

.footer-links {
  margin: 0.4rem 0;
}
.footer-links a {
  margin: 0 0.5rem;
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-title {
  margin: 0;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  color: #e8edf8;
}

.footer-copy {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: #a9b1c1;
  text-transform: uppercase;
}

/* ==========================================================================
   Page content (FAQ, Known Issues, Policies, Ranks) – shared & per-page
   ========================================================================== */

.breadcrumb {
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  margin: 0 0.35rem;
  color: var(--muted);
}

.breadcrumb span:last-child {
  color: var(--text);
}

.cmd {
  color: #e6c84a;
  font-weight: 500;
}

.page-faq,
.page-known-issues,
.page-administration-policies,
.page-privacy-policy,
.page-explicit-content,
.page-ranks,
.page-plugins {
  padding: 2.5rem 0 4rem;
}

.page-faq .faq-title,
.policy-title,
.issues-title,
.ranks-title,
.plugins-title {
  margin: 0 0 1.5rem;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
}

/* Plugins index grid & list */
.plugins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem 3rem;
  margin-bottom: 2rem;
}

.plugins-column {
  margin: 0;
}

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

.plugins-list li {
  margin-bottom: 0.5rem;
}

.plugins-list a {
  color: var(--accent);
  text-decoration: none;
}

.plugins-list a:hover {
  text-decoration: underline;
}

.plugins-note {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

/* Plugin content pages (Shop & Market, Markets, etc.) */
.page-plugins-content .content-prose {
  max-width: 72ch;
}

.content-prose h2 {
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.content-prose p,
.content-prose li {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.content-prose ul {
  margin: 0.75rem 0 1rem 1.25rem;
  padding-left: 1.25rem;
}

.sitemap-prose h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.sitemap-prose h2:first-of-type {
  margin-top: 0;
}

.about-team-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.about-team-list li {
  margin-bottom: 0.35rem;
}

.content-prose a {
  color: var(--accent);
  text-decoration: none;
}

.content-prose a:hover {
  text-decoration: underline;
}

.content-hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}

.content-accordion {
  margin: 1.5rem 0;
}

.content-accordion-item {
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s ease;
}

.content-accordion-item:last-child {
  border-bottom: 0;
}

.content-accordion-item:hover {
  background: var(--panel-2);
}

.content-accordion-item > summary {
  list-style: none;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
}

.content-accordion-item > summary::-webkit-details-marker {
  display: none;
}

.content-accordion-item > summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  margin-right: 0.5rem;
  color: var(--accent);
}

.content-accordion-item[open] > summary::before {
  content: "−";
}

.content-accordion-item > p {
  padding: 0 1.25rem 1rem 2.5rem;
  margin: 0;
}

.content-accordion-item > p + p {
  padding-top: 0;
}

.content-wipe-list {
  margin: 0.75rem 0 1rem 1.25rem;
  padding-left: 1.25rem;
}

.content-highlight {
  color: #e6c84a;
}

.content-muted {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

.content-links-list {
  list-style: none;
  margin: 0.75rem 0;
  padding: 0;
}

.content-links-list li {
  margin-bottom: 0.35rem;
}

.content-figure {
  margin: 1.25rem 0;
}

.content-figure img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.content-figure figcaption {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.content-figure .lightbox-link {
  display: inline-block;
}

.guidelines-legend {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.guidelines-legend li {
  margin-bottom: 0.6rem;
  padding-left: 0.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.guideline-dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 0.2rem;
}

.guideline-dot-white {
  background: #e0e0e0;
  border: 1px solid #999;
}

.guideline-dot-yellow {
  background: #faff0c;
  border: 1px solid #c4c800;
}

.guideline-dot-orange {
  background: #ff8f13;
  border: 1px solid #c46d0a;
}

.guideline-dot-red {
  background: #f30000;
  border: 1px solid #a00000;
}

.deploy-list {
  list-style: none;
  margin: 0.75rem 0 1rem 0;
  padding: 0;
}

.deploy-list li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.deploy-list .guideline-dot {
  margin-top: 0.25rem;
}

.content-admin-note {
  color: #facccc;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.content-figure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.content-figure-grid .content-figure {
  margin: 0;
}

.content-figure-side {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 1.5rem;
  align-items: start;
  margin: 1.25rem 0;
}

@media (max-width: 640px) {
  .content-figure-side {
    grid-template-columns: 1fr;
  }
}

.content-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 1.25rem 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.content-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-video-link {
  margin: 0.5rem 0 1.25rem;
}

.content-video-link a {
  color: var(--muted);
  font-size: 0.95rem;
}

.content-video-link a:hover {
  text-decoration: underline;
}

.content-raid-tiers {
  list-style: none;
  padding-left: 0;
}

.content-raid-tiers li {
  margin-bottom: 0.5rem;
  padding-left: 0;
}

.content-prose code {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}

.page-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.page-faq .faq-section {
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s ease;
}

.page-faq .faq-section:last-of-type {
  border-bottom: 0;
}

.page-faq .faq-section:hover {
  background: var(--panel-2);
}

.page-faq .faq-section > summary {
  list-style: none;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-faq .faq-section > summary::-webkit-details-marker {
  display: none;
}

.page-faq .faq-section > summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.page-faq .faq-section[open] > summary::before {
  content: "−";
}

.page-faq .faq-questions {
  padding: 0 0 0.5rem 0;
}

.page-faq .faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0 1.25rem 0 3rem;
}

.page-faq .faq-item:first-child {
  border-top: 0;
}

.page-faq .faq-item > summary {
  list-style: none;
  padding: 0.75rem 0;
  cursor: pointer;
  font-size: 0.98rem;
  color: #d8e0f0;
}

.page-faq .faq-item > summary::-webkit-details-marker {
  display: none;
}

.page-faq .faq-item > summary::before {
  content: "▶";
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.7rem;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.page-faq .faq-item[open] > summary::before {
  transform: rotate(90deg);
}

.page-faq .faq-answer {
  padding: 0 0 1rem 2rem;
}

.page-faq .faq-answer p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.page-faq .faq-answer p:last-child {
  margin-bottom: 0;
}

.page-faq .faq-answer ol,
.page-faq .faq-answer ul {
  margin: 0.75rem 0 1rem 1.25rem;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.page-faq .faq-answer li {
  margin-bottom: 0.35rem;
}

.page-faq .faq-answer li:last-child {
  margin-bottom: 0;
}

.page-faq .faq-answer a {
  color: var(--accent);
}

.page-faq .faq-answer a:hover {
  text-decoration: underline;
}

.page-faq .faq-answer .faq-img,
.page-faq .faq-answer img.faq-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0.75rem 0;
  border-radius: 4px;
}

.issues-intro {
  margin: 0 0 2rem;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.6;
}

.issues-intro a {
  color: var(--accent);
}

.issues-intro a:hover {
  text-decoration: underline;
}

.issues-title {
  margin: 0 0 1rem;
}

.issues-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.issues-item {
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s ease;
}

.issues-item:last-child {
  border-bottom: 0;
}

.issues-item:hover {
  background: var(--panel-2);
}

.issues-item > summary {
  list-style: none;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.issues-item > summary::-webkit-details-marker {
  display: none;
}

.issues-item > summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.issues-item[open] > summary::before {
  content: "−";
}

.issues-detail {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.issues-detail p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.issues-detail p:last-child {
  margin-bottom: 0;
}

.issues-detail a {
  color: var(--accent);
}

.issues-detail a:hover {
  text-decoration: underline;
}

.issues-detail code {
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.policy-content {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.6;
}

.policy-content p {
  margin: 0 0 0.75rem;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content h2 {
  margin: 2rem 0 0.75rem;
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  color: var(--text);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h5 {
  margin: 1.25rem 0 0.5rem;
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: var(--text);
}

.policy-content ul {
  margin: 0.75rem 0 1rem 1.25rem;
  padding-left: 1.25rem;
}

.policy-content li {
  margin-bottom: 0.35rem;
}

.policy-content a {
  color: var(--accent);
}

.policy-content a:hover {
  text-decoration: underline;
}

.policy-content strong {
  color: var(--text);
}

.policy-content code {
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.policy-item {
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s ease;
}

.policy-item:last-child {
  border-bottom: 0;
}

.policy-item:hover {
  background: var(--panel-2);
}

.policy-item > summary {
  list-style: none;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-item > summary::-webkit-details-marker {
  display: none;
}

.policy-item > summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--muted);
}

.policy-item[open] > summary::before {
  content: "−";
}

.policy-detail {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.policy-detail p,
.policy-detail ul {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.policy-detail p:last-child,
.policy-detail ul:last-child {
  margin-bottom: 0;
}

.policy-detail .policy-notice {
  text-align: center;
  margin: 0.75rem 0;
}

.policy-detail .policy-notice strong {
  color: #e60000;
}

.ranks-title {
  margin: 0 0 1rem;
}

.ranks-intro {
  margin: 0 0 2rem;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.6;
}

.ranks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.ranks-column {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.25rem;
  border-radius: 4px;
}

.ranks-column-title {
  margin: 0 0 1rem;
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  color: var(--text);
}

.ranks-list {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
}

.ranks-list li {
  margin-bottom: 0.5rem;
}

.ranks-list a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.98rem;
}

.ranks-list a:hover {
  text-decoration: underline;
}

.ranks-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
}

/* Individual rank page */
.rank-subtitle {
  margin: -0.5rem 0 1.25rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.rank-note {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

.rank-perk-num {
  color: #e6b366;
}

.rank-perk-highlight {
  color: #c285ff;
}

/* Rank kit (VIP Gold / Veteran Gold daily kit image) */
.rank-kit {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 1.5rem 0;
  border-top: 2px solid var(--line);
}

.rank-kit-img {
  display: block;
  max-width: 200px;
  height: auto;
  border: 4px solid var(--line);
  border-radius: 4px;
}

.rank-kit-details {
  flex: 1;
  min-width: 200px;
}

.rank-kit-title {
  margin: 0 0 0.5rem;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--accent);
}

.rank-kit-desc {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.rank-kit-link {
  color: var(--accent);
  font-weight: 500;
}

.rank-kit-link:hover {
  text-decoration: underline;
}

/* ========== Kits page ========== */
.page-kits {
  padding: 2.5rem 0 4rem;
}

.kits-title {
  margin: 0 0 1.5rem;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
}

.kits-section-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 600;
}

.kits-divider {
  margin: 2rem 0;
  border: 0;
  border-top: 2px solid var(--line);
}

.kits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.kit-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.25rem;
}

.kit-card .lightbox-link {
  display: block;
  margin: -1.25rem -1.25rem 1rem;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  text-align: center;
  background: var(--panel-2);
}

.kit-card .kit-img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  border: 2px solid var(--line);
}

.kit-card .lightbox-link:hover .kit-img {
  border-color: var(--accent);
}

.kit-title {
  margin: 0 0 0.5rem;
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  color: var(--accent);
}

.kit-desc {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.kit-cta {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

.kit-cta:hover {
  text-decoration: underline;
}

/* ========== Lightbox (AJAX-style image popup) ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: var(--panel-2);
}
