:root {
  --bg: #080911;
  --panel: #11121c;
  --panel2: #171824;
  --text: #f8f6ff;
  --muted: #9193a3;
  --line: rgba(255, 255, 255, 0.09);
  --purple: #9a5cff;
  --purple2: #c373ff;
  --green: #43dda4;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
button,
input {
  font: inherit;
}
button,
a {
  color: inherit;
}
a {
  text-decoration: none;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.header {
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  transition: 0.25s;
}
.header.scrolled {
  height: 64px;
  background: #080911e8;
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -1px;
}
.brand > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #7542e2, #c45fff);
  box-shadow: 0 0 24px #914fff66;
}
.brand b {
  font-size: 15px;
}
.brand em {
  font-style: normal;
  color: var(--purple2);
}
.header nav {
  display: flex;
  gap: 32px;
  margin-left: 70px;
}
.header nav a {
  font-size: 12px;
  color: #9b9cab;
  font-weight: 600;
  position: relative;
}
.header nav a:hover,
.header nav a.active {
  color: white;
}
.header nav a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: var(--purple);
  box-shadow: 0 0 10px var(--purple);
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #989aa9;
  font-size: 10px;
  margin-right: 12px;
}
.live i,
.season i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.ghost,
.primary {
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.ghost {
  background: #ffffff09;
  border: 1px solid var(--line);
}
.primary {
  background: linear-gradient(135deg, #7d4be5, #ad61ff);
  box-shadow: 0 9px 28px #723ad34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: 0.2s;
}
.primary:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}
.account-button {
  border: 1px solid var(--line);
  background: #ffffff09;
  border-radius: 9px;
  padding: 5px 9px 5px 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.account-button > span {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: linear-gradient(135deg, #7542e2, #c45fff);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}
.account-button b {
  font-size: 10px;
}
.account-button i {
  font-style: normal;
  color: #6d6f7d;
}
.hidden {
  display: none !important;
}
.menu-toggle {
  display: none;
}
.hero {
  height: 770px;
  min-height: 680px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #070810 0%, #080914ed 30%, #0708147c 62%, #07081020),
    linear-gradient(0deg, #080911 0%, transparent 28%, #07081055 100%);
}
.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: #8338d632;
  filter: blur(80px);
  right: 10%;
  top: 17%;
}
.hero-content {
  position: relative;
  padding-top: 185px;
}
.season {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b483ff;
  font-size: 10px;
  letter-spacing: 2.3px;
  font-weight: 800;
}
.hero h1 {
  font-size: 67px;
  line-height: 0.98;
  letter-spacing: -4px;
  margin: 22px 0;
  font-weight: 950;
}
.hero h1 span {
  color: #bd73ff;
  text-shadow: 0 0 35px #9c4dff66;
}
.hero-content > p {
  width: 480px;
  color: #a9aaba;
  font-size: 14px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}
.big {
  padding: 15px 22px;
  font-size: 10px;
  letter-spacing: 0.4px;
}
.play-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.play-link > i {
  width: 39px;
  height: 39px;
  border: 1px solid #ffffff33;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 10px;
  background: #ffffff08;
}
.play-link > span {
  display: flex;
  flex-direction: column;
}
.play-link b {
  font-size: 10px;
}
.play-link small {
  color: #777987;
  font-size: 8px;
  margin-top: 3px;
}
.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 65px;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-stats b {
  font-size: 20px;
}
.hero-stats span {
  font-size: 7px;
  color: #777988;
  letter-spacing: 1.4px;
}
.scroll-hint {
  position: absolute;
  right: 45px;
  bottom: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}
.scroll-hint span {
  writing-mode: vertical-rl;
  font-size: 7px;
  letter-spacing: 2px;
  color: #6d6f7e;
}
.scroll-hint i {
  width: 1px;
  height: 35px;
  background: linear-gradient(var(--purple), transparent);
}
.section {
  padding-top: 105px;
  padding-bottom: 105px;
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px;
}
.section-title small,
.download-copy > small {
  font-size: 9px;
  letter-spacing: 2.5px;
  font-weight: 800;
  color: #9f6cff;
}
.section-title h2,
.download-copy h2 {
  font-size: 34px;
  letter-spacing: -1.8px;
  margin: 9px 0;
}
.section-title p,
.download-copy p {
  font-size: 12px;
  color: #858797;
  line-height: 1.7;
  margin: 0;
}
.slider-arrows {
  display: flex;
  gap: 8px;
}
.slider-arrows button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #ffffff06;
  border-radius: 8px;
  cursor: pointer;
}
.server-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.server-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
  background: #11121b;
  transition: 0.25s;
}
.server-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent), transparent 45%);
  box-shadow: 0 25px 55px #0008;
}
.server-image {
  height: 185px;
  position: relative;
  background: radial-gradient(
    circle at 52% 48%,
    var(--accent),
    #1d1730 28%,
    #0d0e16 70%
  );
  overflow: hidden;
}
.server-image:before,
.server-image:after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid #ffffff1c;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.server-image:after {
  width: 70px;
  height: 70px;
  background: #ffffff0a;
}
.server-letter {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 52px;
  font-weight: 950;
  text-shadow: 0 0 25px var(--accent);
  z-index: 1;
}
.server-status {
  position: absolute;
  top: 13px;
  right: 13px;
  background: #080a11cc;
  border: 1px solid #ffffff10;
  padding: 5px 8px;
  border-radius: 7px;
  font-size: 8px;
  color: var(--green);
  z-index: 2;
}
.server-status.off {
  color: #9a9ba7;
}
.server-body {
  padding: 20px;
}
.server-body > small {
  font-size: 8px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 1px;
}
.server-body h3 {
  font-size: 18px;
  margin: 7px 0;
}
.server-body p {
  height: 45px;
  overflow: hidden;
  color: #777988;
  font-size: 10px;
  line-height: 1.55;
}
.tags {
  display: flex;
  gap: 5px;
  margin: 15px 0;
}
.tags span {
  font-size: 7px;
  color: #9b9dac;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 4px 7px;
}
.server-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.server-footer span {
  font-size: 8px;
  color: #6f7180;
}
.server-footer a {
  font-size: 8px;
  font-weight: 800;
  color: #bc88ff;
}
.skeleton {
  height: 365px;
  border-radius: 15px;
  background: linear-gradient(90deg, #11121b, #1a1b27, #11121b);
  background-size: 200% 100%;
  animation: shine 1.5s infinite;
}
@keyframes shine {
  to {
    background-position: -200% 0;
  }
}
.features {
  background:
    radial-gradient(circle at 50% 20%, #55269b22, transparent 40%), #0b0c14;
  border-block: 1px solid var(--line);
}
.centered {
  text-align: center;
  justify-content: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feature-grid article {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff04;
}
.feature-grid article > span {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #9459ee17;
  color: #b87cff;
  display: grid;
  place-items: center;
  font-size: 19px;
}
.feature-grid h3 {
  font-size: 13px;
  margin: 18px 0 8px;
}
.feature-grid p {
  font-size: 9px;
  color: #777988;
  line-height: 1.7;
  margin: 0;
}
.download-card {
  min-height: 390px;
  border: 1px solid #9d63ff33;
  border-radius: 20px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 50%, #7c37cd35, transparent 38%),
    linear-gradient(120deg, #11121d, #0d0e17);
}
.download-card:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid #9e66ff1c;
  transform: rotate(45deg);
  right: 80px;
  top: 45px;
}
.download-copy {
  width: 47%;
  position: relative;
  z-index: 2;
}
.download-copy h2 {
  font-size: 38px;
}
.download-copy p {
  margin-bottom: 24px;
}
.download-copy em {
  display: block;
  color: #626473;
  font-size: 8px;
  margin-top: 11px;
  font-style: normal;
}
.launcher-mock {
  position: absolute;
  width: 490px;
  height: 290px;
  right: -20px;
  top: 70px;
  background: #090a11;
  border: 1px solid #ffffff1c;
  border-radius: 14px;
  box-shadow: 0 35px 65px #000b;
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
  z-index: 1;
}
.mock-top {
  height: 26px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}
.mock-top i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #444550;
}
.mock-body {
  height: calc(100% - 26px);
  display: grid;
  grid-template-columns: 65px 1fr;
  background: radial-gradient(circle at 80% 50%, #7437b944, transparent 35%);
}
.mock-body aside {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 17px;
}
.mock-body aside b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #9b5af0;
}
.mock-body aside i {
  width: 17px;
  height: 3px;
  background: #343540;
}
.mock-body > div {
  padding: 62px 38px;
}
.mock-body small {
  color: #a36aff;
  font-size: 7px;
  letter-spacing: 2px;
}
.mock-body h3 {
  font-size: 27px;
  margin: 10px 0;
}
.mock-body h3 span {
  color: #b974ff;
}
.mock-body button {
  border: 0;
  background: #9659f1;
  border-radius: 6px;
  color: white;
  padding: 8px 16px;
  font-size: 7px;
  font-weight: 800;
}
footer {
  border-top: 1px solid var(--line);
  padding: 38px 0;
  background: #07080d;
}
footer > .wrap {
  display: flex;
  align-items: center;
  gap: 35px;
}
footer p {
  font-size: 8px;
  color: #636573;
  line-height: 1.6;
}
footer .wrap > div {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
footer a,
footer button {
  font-size: 9px;
  color: #858795;
  background: none;
  border: 0;
  cursor: pointer;
}
footer .wrap > small {
  font-size: 8px;
  color: #555764;
  margin-left: 25px;
}
.footer-legal {
  border-top: 1px solid var(--line);
  margin-top: 25px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer-legal p {
  margin: 0;
}
.footer-legal nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}
.footer-legal a {
  color: #999baa;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
}
.modal.open {
  display: grid;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: #040509d9;
  backdrop-filter: blur(12px);
}
.auth-card {
  width: 430px;
  max-height: calc(100vh - 30px);
  overflow: auto;
  border: 1px solid #ffffff16;
  border-radius: 17px;
  background: #10111b;
  padding: 30px 34px;
  z-index: 1;
  position: relative;
  box-shadow: 0 35px 90px #000c;
}
.modal-close,
.panel-close {
  position: absolute;
  right: 15px;
  top: 10px;
  border: 0;
  background: none;
  color: #707281;
  font-size: 22px;
  cursor: pointer;
}
.auth-brand {
  justify-content: center;
  margin-bottom: 23px;
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #080910;
  border-radius: 9px;
  padding: 4px;
  margin-bottom: 25px;
}
.auth-tabs button {
  border: 0;
  background: none;
  color: #727482;
  border-radius: 7px;
  padding: 9px;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}
.auth-tabs button.active {
  background: #252131;
  color: #c7a8ff;
}
.auth-form {
  display: none;
}
.auth-form.active {
  display: block;
}
.auth-form h2 {
  text-align: center;
  font-size: 21px;
  margin: 0 0 6px;
}
.auth-form > p {
  text-align: center;
  color: #747684;
  font-size: 9px;
  margin: 0 0 20px;
}
.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 8px;
  color: #a2a3af;
  margin-bottom: 13px;
}
.auth-form input {
  width: 100%;
  border: 1px solid #ffffff12;
  background: #080910;
  color: white;
  border-radius: 8px;
  padding: 11px 12px;
  outline: 0;
  font-size: 10px;
}
.auth-form input:focus {
  border-color: #9a62ff88;
}
.auth-form .submit {
  width: 100%;
  margin-top: 4px;
  padding: 13px;
}
.agreement {
  flex-direction: row !important;
  align-items: center;
}
.agreement input {
  width: 15px;
}
.agreement span {
  color: #727482;
}
.agreement a {
  color: #b982ff;
}
.form-message {
  font-size: 9px;
  text-align: center;
  min-height: 14px;
  margin-top: 12px;
  color: #ff8da2;
}
.form-message.success {
  color: var(--green);
}
.account-panel {
  position: fixed;
  z-index: 40;
  right: -390px;
  top: 0;
  width: 370px;
  height: 100vh;
  background: #0e0f18;
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 80px #0009;
  padding: 70px 34px 30px;
  text-align: center;
  transition: 0.3s;
}
.account-panel.open {
  right: 0;
}
.profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, #7542e2, #c45fff);
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  font-size: 27px;
  font-weight: 900;
  box-shadow: 0 0 35px #8d4bdf55;
}
.account-panel > small {
  font-size: 7px;
  color: #a56fff;
  letter-spacing: 2px;
}
.account-panel h2 {
  font-size: 23px;
  margin: 7px 0 3px;
}
.account-panel > p {
  font-size: 9px;
  color: #777987;
}
.profile-id {
  text-align: left;
  background: #080910;
  border-radius: 9px;
  padding: 12px;
  margin: 24px 0;
}
.profile-id span {
  display: block;
  font-size: 7px;
  color: #666877;
  margin-bottom: 5px;
}
.profile-id code {
  font-size: 8px;
  color: #aaaab5;
  word-break: break-all;
}
.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.profile-stats div {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.profile-stats b {
  font-size: 12px;
}
.profile-stats span {
  font-size: 7px;
  color: #686a78;
}
.panel-download {
  width: 100%;
  margin-top: 25px;
  padding: 13px;
}
.logout {
  margin-top: 13px;
  border: 0;
  background: none;
  color: #797b88;
  font-size: 9px;
  cursor: pointer;
}
.owner-open {
  width: 100%;
  margin-top: 18px;
  padding: 13px;
  border: 1px solid #9f65ff66;
  border-radius: 9px;
  background: linear-gradient(135deg, #6f3bd6, #9c51ec);
  color: white;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.7px;
  cursor: pointer;
  box-shadow: 0 12px 35px #7038c638;
}
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.admin-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.admin-backdrop {
  position: absolute;
  inset: 0;
  background: #03040adb;
  backdrop-filter: blur(12px);
}
.admin-shell {
  position: relative;
  width: min(1420px, calc(100vw - 40px));
  height: min(900px, calc(100vh - 40px));
  overflow: auto;
  padding: 28px;
  border: 1px solid #a66cff3d;
  border-radius: 20px;
  background:
    radial-gradient(circle at 15% 0%, #6b31b52b, transparent 32%), #0b0c14;
  box-shadow: 0 40px 120px #000e;
}
.admin-header,
.console-toolbar,
.admin-header-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.admin-header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.admin-header small,
.privilege-card > small,
.audit-card > small {
  color: #ae73ff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 2px;
}
.admin-header h2 {
  margin: 5px 0 2px;
  font-size: 27px;
}
.admin-header p {
  color: #747686;
  font-size: 9px;
}
.admin-header-actions span {
  color: #8b8d9a;
  font-size: 8px;
}
.auto-live { display:inline-flex !important; align-items:center; gap:7px; }
.auto-live i { width:6px; height:6px; border-radius:50%; background:#43dda4; box-shadow:0 0 9px #43dda4; animation:autoLive 1.8s ease-in-out infinite; }
@keyframes autoLive { 50% { opacity:.35; transform:scale(.8); } }
.admin-header-actions button,
.console-toolbar button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151621;
  color: #c6c6d0;
  padding: 9px 12px;
  font-size: 8px;
  cursor: pointer;
}
.admin-header-actions button:last-child {
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 19px;
}
.admin-server-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.admin-loading {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: #777988;
  text-align: center;
  font-size: 9px;
}
.admin-server {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 17px;
  background: #11121c;
}
.admin-server-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.admin-server h3 {
  margin: 4px 0;
  font-size: 15px;
}
.admin-server small {
  color: #6d6f7e;
  font-size: 7px;
}
.admin-state {
  padding: 5px 8px;
  border-radius: 999px;
  background: #183429;
  color: #54e9aa;
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
}
.admin-state.offline {
  background: #371a22;
  color: #ff8da2;
}
.admin-server-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 13px;
}
.admin-server-metrics span {
  padding: 9px 7px;
  border: 1px solid #272936;
  border-radius: 8px;
  background: #0b0c13;
  text-align: center;
}
.admin-server-metrics b,
.admin-server-metrics small {
  display: block;
}
.admin-server-metrics b {
  color: #e8e8ef;
  font-size: 10px;
}
.admin-server-metrics small {
  margin-top: 3px;
  color: #737687;
  font-size: 7px;
}
.admin-server-actions {
  display: flex;
  gap: 7px;
  margin-top: 14px;
}
.admin-server-actions button {
  flex: 1;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #191a25;
  color: #b9bac5;
  font-size: 8px;
  cursor: pointer;
}
.admin-server-actions button[data-action="restart"] {
  border-color: #9d60f65e;
  color: #c99dff;
}
.admin-server-actions button[data-action="stop"] {
  border-color: #d44c6357;
  color: #ff91a4;
}
.admin-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 16px;
}
.admin-donations-card {
  margin-bottom: 16px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #10111a;
}
.admin-donations-card h3 {
  margin: 5px 0 10px;
  font-size: 15px;
}
.admin-donations {
  max-height: 160px;
  overflow: auto;
}
.admin-donation-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-top: 1px solid #ffffff08;
}
.admin-donation-row span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.admin-donation-row span:last-child {
  text-align: right;
}
.admin-donation-row b { font-size: 9px; }
.admin-donation-row small { color: #727482; font-size: 7px; }
.console-card,
.privilege-card,
.audit-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #10111a;
}
.console-toolbar {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
}
.console-toolbar label {
  color: #7d7f8e;
  font-size: 8px;
}
.console-toolbar select {
  margin-left: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #090a11;
  color: #e9e8ef;
  padding: 7px 10px;
  font-size: 8px;
}
#adminConsole {
  height: 380px;
  margin: 0;
  overflow: auto;
  padding: 15px;
  background: #07080d;
  color: #b8c3bd;
  font:
    9px/1.55 Consolas,
    monospace;
  white-space: pre-wrap;
  word-break: break-word;
}
.console-command {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}
.console-command input,
.privilege-card input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080910;
  color: white;
  padding: 11px;
  font-size: 9px;
  outline: none;
}
.console-command button {
  border: 0;
  border-radius: 8px;
  background: #8650df;
  color: white;
  padding: 0 17px;
  font-size: 8px;
  font-weight: 900;
  cursor: pointer;
}
.admin-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.privilege-card,
.audit-card {
  padding: 17px;
}
.privilege-card h3 {
  margin: 7px 0 13px;
  font-size: 15px;
}
.privilege-card input {
  width: 100%;
}
.privilege-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 9px;
}
.privilege-actions button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #171822;
  color: #bdbec8;
  padding: 9px 7px;
  font-size: 8px;
  cursor: pointer;
}
.privilege-card p {
  margin-top: 12px;
  color: #707280;
  font-size: 8px;
  line-height: 1.5;
}
.privilege-card code {
  color: #c49af5;
}
.admin-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
  color: #777987;
  font-size: 8px;
}
.admin-field select {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080910;
  color: white;
  padding: 9px;
  font-size: 8px;
}
.entitlement-apply {
  width: 100%;
  margin-top: 10px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #7d4ee4, #ae5cff);
  color: white;
  padding: 11px;
  font-size: 8px;
  font-weight: 900;
  cursor: pointer;
}
.audit-card {
  min-height: 150px;
}
#adminAudit {
  max-height: 180px;
  overflow: auto;
  margin-top: 10px;
  color: #858795;
  font-size: 8px;
  line-height: 1.7;
}
.audit-line {
  padding: 6px 0;
  border-bottom: 1px solid #ffffff08;
}
@media (max-width: 850px) {
  .admin-shell {
    width: 100vw;
    height: 100vh;
    border: 0;
    border-radius: 0;
    padding: 18px;
  }
  .admin-header,
  .admin-header-actions {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .admin-server-grid,
  .admin-workspace {
    grid-template-columns: 1fr;
  }
  #adminConsole {
    height: 300px;
  }
}
.toast {
  position: fixed;
  z-index: 80;
  right: 25px;
  bottom: 25px;
  background: #1c1d28;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 16px;
  font-size: 9px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.25s;
}
.toast.show {
  opacity: 1;
  transform: none;
}
.toast.error {
  color: #ff99ac;
  border-color: #d64f6a66;
}
.donate {
  background:
    radial-gradient(circle at 50% 15%, #7436c52e, transparent 40%), #090a12;
  border-bottom: 1px solid var(--line);
}
.donation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.donation-server-title {
  grid-column: 1 / -1;
  margin: 20px 0 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.donation-server-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.donation-server-title small {
  color: var(--purple);
  font-size: 7px;
  letter-spacing: 1.8px;
  font-weight: 900;
}
.donation-server-title h3 {
  margin: 6px 0 0;
  font-size: 21px;
}
.donation-card {
  --donate-accent: #9a5cff;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--donate-accent), transparent 65%);
  border-radius: 17px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--donate-accent), #11121c 90%),
    #0d0e16
  );
  padding: 27px 25px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.donation-card:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -80px;
  top: -85px;
  background: var(--donate-accent);
  filter: blur(55px);
  opacity: 0.18;
}
.donation-card.featured {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px #0008;
}
.donation-card.owned {
  border-color: color-mix(in srgb, var(--donate-accent), white 12%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--donate-accent), transparent 72%);
}
.donation-card.owned button {
  color: #e7dcff;
  background: color-mix(in srgb, var(--donate-accent), #11121b 72%);
}
.donation-badge {
  position: relative;
  width: max-content;
  border: 1px solid color-mix(in srgb, var(--donate-accent), transparent 45%);
  color: var(--donate-accent);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 7px;
  letter-spacing: 1.3px;
  font-weight: 900;
}
.donation-card h3 {
  font-size: 24px;
  margin: 22px 0 5px;
}
.donation-price {
  font-size: 28px;
  font-weight: 950;
  color: var(--donate-accent);
  letter-spacing: -1px;
}
.donation-price small {
  font-size: 10px;
  letter-spacing: 0;
  color: #999aa8;
}
.donation-card p {
  font-size: 10px;
  line-height: 1.7;
  color: #838594;
  min-height: 53px;
}
.donation-card ul {
  list-style: none;
  padding: 0;
  margin: 5px 0 22px;
  display: grid;
  gap: 8px;
}
.donation-card li {
  font-size: 9px;
  color: #a4a5b1;
}
.donation-card li:before {
  content: "✓";
  color: var(--donate-accent);
  margin-right: 8px;
}
.donation-card button {
  width: 100%;
  margin-top: auto;
  padding: 13px;
  border: 0;
  border-radius: 8px;
  background: var(--donate-accent);
  color: #090a10;
  font-size: 9px;
  font-weight: 950;
  cursor: pointer;
}
.donation-card button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.6);
  opacity: 0.55;
}
.donation-note {
  text-align: center;
  color: #676978;
  font-size: 8px;
  margin: 22px 0 0;
}
.donation-consent {
  width: min(720px, 100%);
  margin: 25px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  color: #8e909f;
  font-size: 9px;
  line-height: 1.6;
}
.donation-consent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--purple);
}
.donation-consent a {
  color: #c18aff;
}
.donation-dialog {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100vw - 28px));
  max-height: calc(100vh - 30px);
  overflow: auto;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--donate-accent), transparent 55%);
  border-radius: 20px;
  background: radial-gradient(circle at 90% 0%, color-mix(in srgb, var(--donate-accent), transparent 78%), transparent 35%), #10111b;
  box-shadow: 0 40px 110px #000e;
}
.donation-dialog-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-right: 24px;
}
.donation-dialog-header small,
.donation-preview-grid article > small {
  color: var(--donate-accent);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 1.7px;
}
.donation-dialog-header h2 {
  margin: 8px 0 5px;
  font-size: 28px;
}
.donation-dialog-header p {
  max-width: 470px;
  margin: 0;
  color: #858795;
  font-size: 9px;
  line-height: 1.65;
}
.donation-dialog-price {
  flex: 0 0 auto;
  color: var(--donate-accent);
  font-size: 28px;
  font-weight: 950;
}
.donation-dialog-price small { font-size: 11px; color: #9294a2; }
.donation-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.donation-preview-grid article {
  border: 1px solid #ffffff12;
  border-radius: 13px;
  padding: 18px;
  background: #090a12;
}
.donation-preview-grid h3 {
  margin: 7px 0 14px;
  font-size: 15px;
}
.donation-command-list { display: grid; gap: 8px; }
.donation-command-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px;
  border-radius: 8px;
  background: #11131d;
}
.donation-command-list code {
  min-width: 76px;
  color: var(--donate-accent);
  font-size: 9px;
  font-weight: 800;
}
.donation-command-list span,
.donation-preview-grid article > p {
  color: #818391;
  font-size: 8px;
  line-height: 1.55;
}
.donation-kit-list {
  list-style: none;
  display: grid;
  gap: 7px;
  margin: 0 0 12px;
  padding: 0;
}
.donation-kit-list li {
  color: #b7b8c2;
  font-size: 9px;
}
.donation-kit-list li:before {
  content: "◆";
  margin-right: 8px;
  color: var(--donate-accent);
  font-size: 7px;
}
.donation-owned-message {
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid #54dca955;
  border-radius: 9px;
  background: #173a302e;
  color: #7ce9c2;
  font-size: 9px;
  line-height: 1.55;
}
.donation-dialog .donation-consent { margin-top: 18px; }
.donation-confirm {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border: 0;
  border-radius: 9px;
  background: var(--donate-accent);
  color: #090a10;
  font-size: 9px;
  font-weight: 950;
  cursor: pointer;
}
.donation-confirm:disabled { cursor: not-allowed; filter: grayscale(.65); opacity: .55; }
.donation-dialog-note {
  margin: 10px 0 0;
  text-align: center;
  color: #626472;
  font-size: 7px;
}
.donation-skeleton {
  height: 300px;
  border-radius: 17px;
  background: linear-gradient(90deg, #11121b, #1a1b27, #11121b);
  background-size: 200% 100%;
  animation: shine 1.5s infinite;
}
.creator-card {
  min-height: 330px;
  border: 1px solid #a766ff3b;
  border-radius: 20px;
  background:
    radial-gradient(circle at 15% 50%, #7636c54a, transparent 34%),
    linear-gradient(120deg, #11121d, #0c0d15);
  display: grid;
  grid-template-columns: 180px 1fr 240px;
  gap: 35px;
  align-items: center;
  padding: 48px 55px;
  overflow: hidden;
  position: relative;
}
.creator-avatar {
  width: 130px;
  height: 130px;
  border-radius: 35px;
  display: grid;
  place-items: center;
  font-size: 55px;
  font-weight: 950;
  background: linear-gradient(135deg, #7040dd, #cd6fff);
  box-shadow: 0 0 65px #8e4ee266;
  border: 1px solid #ffffff2e;
}
.creator-copy > small {
  font-size: 8px;
  color: #b377ff;
  letter-spacing: 2.3px;
  font-weight: 900;
}
.creator-copy h2 {
  font-size: 37px;
  margin: 8px 0;
}
.creator-copy p {
  font-size: 11px;
  color: #878998;
  line-height: 1.75;
  max-width: 530px;
}
.creator-copy a {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  margin-top: 12px;
  color: #c89bff;
  font-size: 10px;
  font-weight: 800;
}
.creator-sign {
  height: 190px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
}
.creator-sign > span {
  font-size: 7px;
  letter-spacing: 3px;
  color: #9360df;
}
.creator-sign b {
  font-size: 22px;
  margin: 10px 0;
}
.creator-sign em {
  font-style: normal;
  color: #bd73ff;
}
.creator-sign small {
  font-size: 9px;
  color: #666876;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .header nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    margin: 0;
    padding: 14px;
    background: #10111b;
    border: 1px solid var(--line);
    border-radius: 10px;
    flex-direction: column;
  }
  .header nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
    background: none;
    border: 0;
    color: white;
    margin-left: 20px;
  }
  .live,
  .header-actions .ghost {
    display: none;
  }
  .hero h1 {
    font-size: 52px;
  }
  .server-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .launcher-mock {
    opacity: 0.35;
  }
  .download-copy {
    width: 65%;
  }
  .donation-grid {
    grid-template-columns: 1fr;
  }
  .donation-card.featured {
    transform: none;
  }
  .creator-card {
    grid-template-columns: 130px 1fr;
    padding: 38px;
  }
  .creator-avatar {
    width: 105px;
    height: 105px;
  }
  .creator-sign {
    display: none;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }
  .header {
    padding: 0 14px;
  }
  .brand b {
    font-size: 12px;
  }
  .header-actions .primary {
    display: none;
  }
  .hero {
    height: 700px;
  }
  .hero-content {
    padding-top: 160px;
  }
  .hero h1 {
    font-size: 40px;
    letter-spacing: -2.5px;
  }
  .hero-content > p {
    width: auto;
  }
  .hero-stats {
    gap: 22px;
  }
  .scroll-hint {
    display: none;
  }
  .section {
    padding-block: 75px;
  }
  .section-title h2,
  .download-copy h2 {
    font-size: 28px;
  }
  .server-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .server-card,
  .skeleton {
    min-width: 86vw;
    scroll-snap-align: center;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .download-card {
    padding: 35px 25px;
  }
  .download-copy {
    width: 100%;
  }
  .launcher-mock {
    display: none;
  }
  .creator-card {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
  .creator-avatar {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    font-size: 34px;
  }
  .auth-card {
    width: calc(100vw - 24px);
    padding: 27px 22px;
  }
  .donation-dialog { padding: 24px 18px; }
  .donation-dialog-header { flex-direction: column; gap: 10px; }
  .donation-preview-grid { grid-template-columns: 1fr; }
  .account-panel {
    width: 100%;
    right: -100%;
  }
  footer > .wrap {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  footer .wrap > div {
    margin-left: 0;
  }
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-legal nav {
    margin-left: 0;
    justify-content: flex-start;
  }
}
