:root {
  --bg: #05070b;
  --bg-soft: rgba(12, 8, 5, 0.82);
  --panel: rgba(12, 8, 5, 0.9);
  --panel-strong: rgba(18, 12, 7, 0.96);
  --line: rgba(212, 152, 65, 0.28);
  --line-strong: rgba(247, 217, 132, 0.46);
  --cyan: #d49841;
  --cyan-deep: #6b3301;
  --gold: #f7d984;
  --gold-dark: #7d4c19;
  --text: #fff4d5;
  --muted: #b7a98f;
  --stone: #29313d;
  --green: #5ff29a;
  --danger: #ff6c7a;
  --radius: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.56);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Segoe UI, Arial, sans-serif;
  line-height: 1.55;
}

body::selection {
  color: #160b03;
  background: var(--cyan);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  background: url("../images/uidi-hero.png") center top / cover no-repeat;
  filter: brightness(0.68) saturate(0.92) contrast(1.04);
}

.page-shade {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.45), rgba(5, 7, 11, 0.84) 52%, #05070b 100%),
    radial-gradient(ellipse at 52% 4%, rgba(212, 152, 65, 0.18), transparent 42%),
    radial-gradient(circle at 18% 28%, rgba(247, 217, 132, 0.09), transparent 28%);
}

.spark-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 14% 20%, rgba(247, 217, 132, 0.92), transparent),
    radial-gradient(1px 1px at 31% 76%, rgba(212, 152, 65, 0.85), transparent),
    radial-gradient(1.5px 1.5px at 52% 38%, rgba(181, 101, 23, 0.75), transparent),
    radial-gradient(1px 1px at 72% 18%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1px 1px at 86% 70%, rgba(212, 152, 65, 0.7), transparent);
  animation: drift 16s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(212, 152, 65, 0.2);
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.92), rgba(5, 7, 11, 0.74));
  backdrop-filter: blur(18px) saturate(1.1);
}

.site-header.scrolled {
  background: rgba(5, 7, 11, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(118px, 13vw, 178px);
  height: auto;
  max-height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(212, 152, 65, 0.36));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: Cinzel, serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.quick-login {
  position: relative;
  display: inline-flex;
}

.quick-login-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 292px;
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(212, 152, 65, 0.36);
  border-radius: 8px;
  background: rgba(5, 7, 11, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.54), 0 0 26px rgba(212, 152, 65, 0.14);
}

.quick-login.open .quick-login-panel {
  display: flex;
}

.quick-login-panel::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 34px;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(212, 152, 65, 0.36);
  border-top: 1px solid rgba(212, 152, 65, 0.36);
  background: rgba(5, 7, 11, 0.98);
  transform: rotate(45deg);
}

.quick-login-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-login-panel input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(212, 152, 65, 0.32);
  border-radius: 8px;
  padding: 9px 11px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.42);
  outline: none;
}

.quick-login-panel input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(212, 152, 65, 0.14);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #eadfc3;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
  background: rgba(212, 152, 65, 0.1);
  border-color: rgba(212, 152, 65, 0.24);
}

.nav-wa:hover {
  color: #86efac;
  background: rgba(95, 242, 154, 0.08);
  border-color: rgba(95, 242, 154, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--cyan);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  padding: 12px 20px;
  min-height: 42px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 0.78rem;
}

.btn-lg {
  min-height: 50px;
  padding: 13px 22px;
}

.btn-cyan {
  color: #160b03;
  background: linear-gradient(180deg, #f9e4ab, #d49841 50%, #6b3301);
  border: 1px solid rgba(247, 217, 132, 0.68);
  box-shadow: 0 0 28px rgba(212, 152, 65, 0.26), 0 10px 24px rgba(0, 0, 0, 0.36);
}

.btn-gold {
  color: #231800;
  background: linear-gradient(180deg, #fff28d, #e6c33a 52%, #9a7214);
  border: 1px solid rgba(255, 236, 139, 0.7);
  box-shadow: 0 0 24px rgba(235, 194, 91, 0.22), 0 10px 24px rgba(0, 0, 0, 0.32);
}

.btn-ghost {
  color: var(--text);
  background: rgba(7, 10, 15, 0.58);
  border: 1px solid rgba(235, 194, 91, 0.28);
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: rgba(235, 194, 91, 0.56);
  background: rgba(235, 194, 91, 0.08);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  filter: grayscale(0.25);
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: end;
  padding: 120px 0 52px;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy {
  width: 100%;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Cinzel, serif;
  font-size: clamp(2.5rem, 6.2vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: 0;
  color: #f9e4ab;
  text-shadow: 0 0 34px rgba(212, 152, 65, 0.28), 0 10px 34px rgba(0, 0, 0, 0.75);
}

.hero-brand-logo {
  display: block;
  width: min(520px, 76vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 28px rgba(212, 152, 65, 0.34));
}

.hero-subtitle {
  width: min(640px, 100%);
  margin: 24px auto 0;
  color: #efe4cc;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.server-card,
.game-panel,
.step-card,
.dashboard-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
}

.server-card {
  padding: 20px;
  width: min(490px, 100%);
  margin: 30px auto 0;
}

.server-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ccffe2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.server-status.is-offline {
  color: #ffd2d2;
}

.server-status.is-offline .status-dot {
  background: #ff5c5c;
  box-shadow: 0 0 16px rgba(255, 92, 92, 0.72);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.server-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

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

.server-metrics div,
.dash-stats div,
.quote-box {
  padding: 14px;
  border: 1px solid rgba(212, 152, 65, 0.16);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
}

.server-metrics strong,
.dash-stats strong,
.quote-box strong {
  display: block;
  color: var(--gold);
  font-family: Cinzel, serif;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.server-metrics span,
.dash-stats span,
.quote-box span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-section,
.section {
  padding: 44px 0 58px;
}

.live-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(560px, 1.4fr);
  gap: 24px;
  align-items: stretch;
}

.info-stack {
  display: grid;
  gap: 16px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(58, 31, 8, 0.72), rgba(18, 12, 7, 0.92));
}

.panel-header h2,
.section-head h2,
.account-card h2,
.donate-copy h2 {
  margin: 0;
  font-family: Cinzel, serif;
  color: #fff5cf;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.updates-list,
.drop-results,
.rule-list {
  list-style: none;
  margin: 0;
  padding: 14px;
}

.updates-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(212, 152, 65, 0.16);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
}

.updates-list li + li {
  margin-top: 8px;
}

.updates-list span {
  color: var(--cyan);
  font-family: Cinzel, serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.updates-list a {
  overflow: hidden;
  color: #fff4d5;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.updates-list time {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.ranking-panel {
  overflow: hidden;
}

.ranking-head {
  flex-wrap: wrap;
}

.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(212, 152, 65, 0.2);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
}

.tab {
  min-width: 76px;
  border: 0;
  border-radius: 7px;
  padding: 8px 10px;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.tab.active {
  color: #160b03;
  background: linear-gradient(180deg, #fff0b8, var(--gold));
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--gold);
  font-family: Cinzel, serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.28);
}

td {
  color: #f2ead8;
  font-size: 0.88rem;
}

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

tbody tr:hover {
  background: rgba(212, 152, 65, 0.08);
}

.rank-pos,
.ranking-table td:last-child {
  color: var(--gold);
  font-weight: 800;
}

.ranking-player {
  display: inline-block;
  margin-right: 8px;
  font-weight: 800;
}

.evolution-badge {
  display: inline-block;
  padding: 2px 7px;
  border: 1px solid rgba(93, 213, 255, 0.35);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(93, 213, 255, 0.08);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cape-color {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  background: var(--cape-color);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.muted-cell,
.ranking-empty {
  color: var(--muted);
}

.ranking-empty {
  padding: 18px 12px;
  text-align: center;
  white-space: normal;
}

.section-muted {
  border-top: 1px solid rgba(212, 152, 65, 0.12);
  border-bottom: 1px solid rgba(212, 152, 65, 0.12);
  background: rgba(0, 0, 0, 0.24);
}

.section-head {
  margin-bottom: 26px;
  text-align: center;
}

.section-head.align-left {
  margin-bottom: 0;
  text-align: left;
}

.section-head p:not(.eyebrow),
.donate-copy p,
.download-cta p,
.step-card p,
.guide-card p,
.site-footer p {
  color: var(--muted);
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.2fr);
  gap: 22px;
}

.download-cta {
  padding: 28px;
}

.download-cta h3,
.guide-card h3,
.step-card h3 {
  margin: 0 0 10px;
  color: #fff5cf;
  font-family: Cinzel, serif;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

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

.step-card {
  padding: 18px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 9px;
  color: #160b03;
  background: linear-gradient(145deg, var(--cyan), var(--gold));
  font-family: Cinzel, serif;
  font-weight: 800;
}

.panel-preview-grid,
.donate-grid,
.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.dashboard-card {
  padding: 22px;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dash-top span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-top strong {
  display: block;
  margin-top: 3px;
  font-family: Cinzel, serif;
  color: #fff5cf;
  font-size: 1.3rem;
}

.pill {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(95, 242, 154, 0.32);
  border-radius: 999px;
  color: #ccffe2 !important;
  background: rgba(95, 242, 154, 0.08);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.dash-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dash-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.guides-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.guide-card {
  padding: 20px;
}

.guide-summary {
  margin: 0 0 14px;
  line-height: 1.55;
}

.guide-more {
  margin-top: 14px;
}

.search-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(212, 152, 65, 0.24);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  outline: none;
}

input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(212, 152, 65, 0.14);
}

.drop-results {
  display: grid;
  gap: 8px;
  padding: 14px 0 0;
}

.drop-results li,
.rule-list li,
.command-list p {
  margin: 0;
  padding: 10px 11px;
  border: 1px solid rgba(212, 152, 65, 0.16);
  border-radius: 9px;
  color: #efe4cc;
  background: rgba(0, 0, 0, 0.22);
}

.mini-result-row {
  display: block;
  padding: 13px 14px;
  border: 1px solid rgba(212, 152, 65, 0.16);
  border-radius: 9px;
  color: #efe4cc;
  background: rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

.mini-result-row + .mini-result-row {
  margin-top: 10px;
}

.mini-result-row strong {
  display: block;
  color: #fff4d5;
  font-size: 0.98rem;
}

.mini-result-row span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-result-row:hover {
  border-color: rgba(212, 152, 65, 0.42);
  background: rgba(212, 152, 65, 0.08);
}

.mini-empty {
  margin: 0;
  padding: 12px 0;
  color: var(--muted);
}

.command-list {
  display: grid;
  gap: 8px;
}

.command-list p {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 10px;
}

.command-list--full p {
  grid-template-columns: minmax(120px, 170px) 1fr;
  align-items: start;
}

.command-list span small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.compact-page-hero {
  padding-top: 130px;
  padding-bottom: 34px;
}

.compact-page-hero h1 {
  margin: 0 0 12px;
  color: #fff5cf;
  font-family: Cinzel, serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: 0;
}

.compact-page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.commands-page-panel {
  padding: 22px;
}

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

.command-card {
  padding: 14px;
  border: 1px solid rgba(212, 152, 65, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.command-card code {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 800;
}

.command-card p {
  margin: 0 0 8px;
  color: #efe4cc;
  line-height: 1.5;
}

.command-card small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

code {
  color: var(--gold);
  font-weight: 800;
}

.donate-copy h2 {
  margin-bottom: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(95, 242, 154, 0.24);
  border-radius: 999px;
  color: #ccffe2;
  background: rgba(95, 242, 154, 0.08);
  font-size: 0.8rem;
  font-weight: 800;
}

.donate-card,
.account-card {
  padding: 22px;
}

.donate-card label,
.account-card label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #efe4cc;
  font-weight: 800;
}

.quote-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.quote-box.bonus {
  border-color: rgba(235, 194, 91, 0.26);
}

.payment-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.payment-readiness-alert {
  margin: 0 0 18px;
  padding: 14px 16px;
  color: #ffe3a3;
  font-weight: 800;
  line-height: 1.55;
  border: 1px solid rgba(235, 194, 91, 0.28);
  border-radius: 10px;
  background: rgba(235, 194, 91, 0.08);
}

.payment-package-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(212, 152, 65, 0.2);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
}

.payment-package-card h3 {
  margin: 0;
  color: #fff5cf;
  font-family: Cinzel, serif;
}

.payment-package-card strong {
  color: var(--gold);
  font-family: Cinzel, serif;
  font-size: 1.5rem;
}

.payment-package-card span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.payment-package-breakdown {
  display: grid;
  gap: 8px;
  margin: 0;
}

.payment-package-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(212, 152, 65, 0.12);
  padding-bottom: 8px;
}

.payment-package-breakdown dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-package-breakdown dd {
  margin: 0;
  color: #efe4cc;
  font-weight: 800;
  text-align: right;
}

.payment-package-breakdown .payment-package-total {
  border-bottom: 0;
  padding-bottom: 0;
}

.payment-package-breakdown .payment-package-total dd {
  color: var(--gold);
}

.payment-pix-box {
  display: grid;
  gap: 12px;
}

.payment-pix-box textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border: 1px solid rgba(212, 152, 65, 0.24);
  border-radius: 10px;
  padding: 12px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
}

.payment-qr {
  width: min(260px, 100%);
  height: auto;
  border: 1px solid rgba(212, 152, 65, 0.28);
  border-radius: 10px;
  background: #fff;
}

.account-grid {
  align-items: start;
}

.flash-message {
  grid-column: 1 / -1;
  padding: 13px 15px;
  border-radius: 10px;
  font-weight: 800;
  text-align: center;
}

.flash-success {
  color: #ccffe2;
  border: 1px solid rgba(95, 242, 154, 0.32);
  background: rgba(95, 242, 154, 0.1);
}

.flash-error {
  color: #ffd7dc;
  border: 1px solid rgba(255, 108, 122, 0.34);
  background: rgba(255, 108, 122, 0.1);
}

.recover-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--cyan);
  text-decoration: none;
}

.page-title {
  margin: 0;
  color: #fff5cf;
  font-family: Cinzel, serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
}

.droplist-page {
  padding-top: 72px;
}

.droplist-lead {
  width: min(760px, 100%);
  margin: 14px auto 0;
  color: var(--muted);
}

.droplist-search-panel {
  padding: 20px;
  margin-bottom: 24px;
}

.droplist-search-form label {
  display: block;
  margin-bottom: 10px;
  color: #efe4cc;
  font-weight: 800;
}

.droplist-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.droplist-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.droplist-meta-row span,
.results-summary,
.result-kind {
  border: 1px solid rgba(212, 152, 65, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.droplist-meta-row span {
  padding: 7px 10px;
}

.droplist-results {
  display: grid;
  gap: 22px;
}

.droplist-empty {
  padding: 24px;
  text-align: center;
}

.droplist-empty h2,
.result-group > h2,
.result-card h2,
.result-card h3 {
  margin: 0;
  color: #fff5cf;
  font-family: Cinzel, serif;
}

.droplist-empty p {
  color: var(--muted);
}

.quick-searches {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quick-searches button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.results-summary {
  justify-self: start;
  padding: 9px 13px;
}

.results-summary strong,
.results-summary span {
  color: var(--cyan);
}

.result-group {
  display: grid;
  gap: 14px;
}

.result-card {
  overflow: hidden;
  padding: 0 0 16px;
}

.result-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(35, 44, 56, 0.72), rgba(16, 22, 31, 0.9));
}

.result-kind {
  display: inline-flex;
  padding: 4px 8px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.result-card h2 {
  font-size: 1.35rem;
}

.result-card h3 {
  padding: 16px 18px 8px;
  font-size: 1rem;
}

.result-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.item-icon-fallback,
.mob-icon-fallback {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  color: #160b03;
  background: linear-gradient(145deg, var(--cyan), var(--gold));
  font-family: Cinzel, serif;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(212, 152, 65, 0.22);
}

.mob-icon-fallback {
  color: #fff5cf;
  background: linear-gradient(145deg, #3a1f08, #120c07);
  border: 1px solid rgba(247, 217, 132, 0.32);
}

.droplist-table a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 800;
}

.droplist-table a:hover {
  color: var(--gold);
}

.site-footer {
  padding: 38px 0 22px;
  border-top: 1px solid rgba(212, 152, 65, 0.16);
  background: rgba(0, 0, 0, 0.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 22px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 10px;
  color: #fff5cf;
  font-family: Cinzel, serif;
}

.site-footer a {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 1040px) {
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(5, 7, 11, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link,
  .main-nav .btn {
    justify-content: center;
  }

  .quick-login {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .quick-login-panel {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .quick-login-panel::before {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner,
  .live-grid,
  .download-layout,
  .panel-preview-grid,
  .donate-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1160px, calc(100% - 22px));
  }

  .header-inner {
    min-height: 64px;
  }

  .hero {
    min-height: 560px;
    padding: 96px 0 36px;
  }

  .hero-inner {
    gap: 18px;
  }

  .server-metrics,
  .steps-grid,
  .dash-stats,
  .dash-actions,
  .guides-grid,
  .payment-package-grid,
  .account-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .updates-list li {
    grid-template-columns: 1fr;
  }

  .updates-list a {
    white-space: normal;
  }

  .download-actions,
  .hero-actions,
  .search-form,
  .droplist-search-row {
    flex-direction: column;
  }

  .download-actions .btn,
  .hero-actions .btn,
  .search-form .btn,
  .droplist-search-row .btn {
    width: 100%;
  }

  .droplist-search-row {
    display: flex;
  }

  .panel-header {
    align-items: stretch;
    flex-direction: column;
  }

  .tabs {
    width: 100%;
  }

  .tab {
    flex: 1;
  }

  .command-list p {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 460px) {
  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 118px;
    max-height: 34px;
  }

  .brand-copy strong {
    font-size: 0.8rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  th,
  td {
    padding: 8px 9px;
    font-size: 0.78rem;
  }

  .server-card,
  .download-cta,
  .dashboard-card,
  .donate-card,
  .account-card,
  .guide-card {
    padding: 16px;
  }
}

.panel-body {
  min-height: 100vh;
}

.account-panel-header {
  position: sticky;
}

.account-panel-nav {
  align-items: center;
}

.panel-shell {
  padding: 118px 0 72px;
}

.panel-shell--wide {
  padding-top: 104px;
}

.account-dashboard {
  display: grid;
  gap: 26px;
}

.panel-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.panel-sidebar {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.panel-sidebar h1 {
  margin: 4px 0 12px;
  font-family: "Cinzel", serif;
  font-size: 1.7rem;
}

.panel-status,
.panel-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(74, 214, 255, 0.38);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 11px;
  text-transform: uppercase;
}

.panel-menu {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.panel-menu a {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  padding: 11px 12px;
}

.panel-menu a:hover {
  border-color: rgba(74, 214, 255, 0.35);
  color: var(--text);
}

.panel-content {
  display: grid;
  gap: 18px;
}

.panel-hero,
.panel-section {
  padding: 24px;
}

.panel-hero {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-start;
}

.panel-hero h2,
.panel-section h2 {
  margin: 0;
  font-family: "Cinzel", serif;
}

.panel-hero p:last-child {
  max-width: 680px;
  color: var(--muted);
}

.panel-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.panel-cards--summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel-card {
  min-height: 132px;
  padding: 28px;
}

.panel-card span {
  color: var(--muted);
  display: block;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.panel-card strong {
  color: var(--gold);
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  overflow-wrap: anywhere;
}

.panel-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.panel-action-card {
  min-height: 250px;
  padding: 28px;
}

.panel-action-card h2 {
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.panel-action-card p,
.panel-info-section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 18px;
}

.panel-form {
  display: grid;
  gap: 12px;
}

.panel-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-form input {
  min-height: 42px;
  padding: 10px 12px;
}

.panel-info-section {
  padding: 28px;
}

.panel-info-section h2 {
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  margin: 0;
}

.panel-info-section strong {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.panel-section-head {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

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

.panel-info-grid p {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin: 0;
  padding: 14px;
}

.panel-info-grid strong,
.panel-info-grid span {
  display: block;
}

.panel-info-grid strong {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.panel-info-grid span {
  color: var(--text);
  overflow-wrap: anywhere;
}

.panel-inline-form {
  margin-top: 18px;
}

.panel-table-wrap {
  overflow-x: auto;
}

.panel-table {
  min-width: 420px;
  width: 100%;
}

.panel-empty {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .panel-layout,
  .panel-cards,
  .panel-action-grid,
  .panel-info-grid {
    grid-template-columns: 1fr;
  }

  .panel-sidebar {
    position: static;
  }

  .panel-hero {
    flex-direction: column;
  }

  .account-dashboard,
  .panel-cards--summary,
  .panel-action-grid,
  .panel-card,
  .panel-action-card,
  .panel-section {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 460px) {
  .panel-card,
  .panel-action-card,
  .panel-info-section {
    padding: 22px;
  }

  .panel-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-table {
    min-width: 320px;
  }
}
