body.page-server {
  background: #07070b;
  color: #e5e7eb;
}
body.page-server .loader { background: #07070b; }

.svr-page .about-hero { padding: 20px 0 80px; }
.svr-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: center;
  text-align: left;
  max-width: 1120px;
}
.svr-hero-copy .about-lead,
.svr-lead {
  margin-left: 0;
  text-align: left;
}
.svr-pills { justify-content: flex-start; }
.svr-hero-actions { justify-content: flex-start; }
.svr-hero-copy h1 { margin-bottom: 18px; }
.svr-free-note {
  margin: 16px 0 0;
  color: #9ca3af;
  font-size: 13px;
}
.svr-page .about-pill,
.svr-page .about-kicker,
.svr-page .about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.svr-console {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 40%),
    rgba(10, 10, 16, 0.92);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  animation:
    svrConsoleIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards,
    svrConsoleGlow 3.6s ease-in-out 2.8s infinite;
}
.svr-console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}
.svr-console-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f43f5e;
  opacity: 0.55;
  animation: svrDotOn 0.35s ease forwards;
}
.svr-console-bar span:nth-child(1) { animation-delay: 0.2s; }
.svr-console-bar span:nth-child(2) {
  background: #fbbf24;
  animation-delay: 0.32s;
}
.svr-console-bar span:nth-child(3) {
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45);
  animation:
    svrDotOn 0.35s ease 0.44s forwards,
    svrDotPulse 2.2s ease-in-out 2.6s infinite;
}
.svr-console-bar em {
  margin-left: 8px;
  font-style: normal;
  color: #9ca3af;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: svrFadeIn 0.4s ease 0.5s forwards;
}
.svr-console-body {
  padding: 22px 22px 26px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.85;
}
.svr-console-body p {
  margin: 0;
  color: #d1d5db;
  opacity: 0;
  transform: translateY(8px);
  animation: svrLineIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.svr-console-body p:nth-child(1) { animation-delay: 0.55s; }
.svr-console-body p:nth-child(2) { animation-delay: 0.78s; }
.svr-console-body p:nth-child(3) { animation-delay: 1.01s; }
.svr-console-body p:nth-child(4) { animation-delay: 1.24s; }
.svr-console-body p:nth-child(5) { animation-delay: 1.47s; }
.svr-console-body p:nth-child(6) { animation-delay: 1.7s; }
.svr-console-body p:nth-child(7) { animation-delay: 1.93s; }
.svr-console-body i {
  font-style: normal;
  color: #6b7280;
  margin-right: 10px;
}
.svr-console-body b { color: #fff; font-weight: 700; }
.svr-console-body .ok {
  color: #34d399;
  font-style: normal;
  font-weight: 700;
  display: inline-block;
  transform: scale(0.7);
  opacity: 0;
  animation: svrOkPop 0.35s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}
.svr-console-body p:nth-child(2) .ok { animation-delay: 0.95s; }
.svr-console-body p:nth-child(3) .ok { animation-delay: 1.18s; }
.svr-console-body p:nth-child(4) .ok { animation-delay: 1.41s; }
.svr-console-body p:nth-child(5) .ok { animation-delay: 1.64s; }
.svr-console-ready {
  margin-top: 10px;
  color: #c4b5fd;
}
.svr-console-ready:after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 1.05em;
  margin-left: 6px;
  vertical-align: -0.15em;
  background: #c4b5fd;
  border-radius: 1px;
  opacity: 0;
  animation:
    svrFadeIn 0.01s linear 2.35s forwards,
    svrCursorBlink 1.05s step-end 2.35s infinite;
}

@keyframes svrConsoleIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes svrConsoleGlow {
  0%, 100% {
    box-shadow:
      0 24px 60px rgba(0,0,0,0.4),
      0 0 0 1px rgba(167, 139, 250, 0.06),
      0 0 28px rgba(99, 102, 241, 0.08);
  }
  50% {
    box-shadow:
      0 24px 60px rgba(0,0,0,0.4),
      0 0 0 1px rgba(167, 139, 250, 0.2),
      0 0 48px rgba(99, 102, 241, 0.22);
  }
}
@keyframes svrDotOn {
  to { opacity: 1; }
}
@keyframes svrDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}
@keyframes svrFadeIn {
  to { opacity: 1; }
}
@keyframes svrLineIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes svrOkPop {
  to { opacity: 1; transform: scale(1); }
}
@keyframes svrCursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .svr-console,
  .svr-console-bar span,
  .svr-console-bar em,
  .svr-console-body p,
  .svr-console-body .ok,
  .svr-console-ready:after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  }
  .svr-console-ready:after { display: none; }
}

.svr-sec { padding: 8px 0 72px; }

.svr-pack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.svr-pack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 26px 16px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 50%),
    rgba(12, 12, 18, 0.92);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.svr-pack:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 50%),
    rgba(16, 16, 24, 0.96);
  border-color: rgba(255,255,255,0.16);
}
.svr-pack-logo {
  width: 64px;
  height: 64px;
  transition: transform 0.25s ease;
}
.svr-pack:hover .svr-pack-logo { transform: scale(1.08); }
.svr-pack-logo svg { width: 100%; height: 100%; display: block; }
.svr-pack strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.svr-pack span {
  color: #6b7280;
  font-size: 12px;
}
.svr-pack .is-apache { color: #f87171; }
.svr-pack .is-php { color: #93c5fd; }
.svr-pack .is-mysql { color: #fb923c; }
.svr-pack .is-pma { color: #c084fc; }
.svr-pack .is-ssl { color: #34d399; }
.svr-pack .is-mail { color: #22d3ee; }
.svr-pack .is-composer { color: #fbbf24; }
.svr-pack .is-node { color: #4ade80; }

.svr-dl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svr-dl {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 36px 32px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(420px 180px at 12% 0%, rgba(99,102,241,0.2), transparent 70%),
    radial-gradient(380px 160px at 96% 100%, rgba(236,72,153,0.12), transparent 72%),
    rgba(12, 12, 18, 0.92);
}
.svr-dl h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.03em;
}
.svr-dl p {
  margin: 0 0 16px;
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.6;
}
.svr-dl ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d1d5db;
  font-size: 14px;
}
.svr-dl li {
  position: relative;
  padding: 7px 0 7px 18px;
}
.svr-dl li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #d946ef);
}
.svr-dl-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.svr-dl-side .about-btn { width: 100%; }
.svr-dl-hint {
  margin: 0 !important;
  font-size: 13px !important;
}
.about-btn.is-wait {
  opacity: 0.72;
  pointer-events: none;
  cursor: default;
}
.pnl-install {
  grid-template-columns: 1fr;
  gap: 22px;
}
.pnl-os {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.pnl-os span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(165,180,252,0.35);
  background: rgba(99,102,241,0.12);
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pnl-cmd {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.35);
  overflow: hidden;
}
.pnl-cmd-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}
.pnl-cmd-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3f3f46;
}
.pnl-cmd-bar span:first-child { background: #f87171; }
.pnl-cmd-bar span:nth-child(2) { background: #fbbf24; }
.pnl-cmd-bar span:nth-child(3) { background: #34d399; }
.pnl-cmd-bar em {
  margin-left: 6px;
  font-style: normal;
  color: #9ca3af;
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.pnl-cmd-line {
  margin: 0;
  padding: 4px 16px 0;
  overflow-x: auto;
  white-space: pre;
}
.pnl-cmd-line code {
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.55;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
@media (max-width: 720px) {
  .pnl-cmd-line { white-space: pre-wrap; overflow-x: visible; }
  .pnl-cmd-line code { overflow-wrap: anywhere; }
}
.pnl-cmd-copy {
  align-self: flex-start;
  margin: 0 16px 16px;
}

.svr-donate-sec {
  position: relative;
  padding: 24px 0 80px;
  overflow: hidden;
}
.svr-donate-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.1);
  filter: blur(100px);
  pointer-events: none;
}
.svr-donate {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px 40px;
  border-radius: 32px;
  border: 1px solid rgba(244, 114, 182, 0.18);
  background:
    radial-gradient(520px 220px at 50% 0%, rgba(236,72,153,0.12), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%),
    rgba(12, 12, 18, 0.94);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.svr-donate-hearts {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 22px;
}
.svr-donate-hearts span {
  display: inline-flex;
  color: #f472b6;
}
.svr-donate-hearts span:nth-child(1) { opacity: 1; }
.svr-donate-hearts span:nth-child(2) { opacity: 0.85; }
.svr-donate-hearts span:nth-child(3) { opacity: 0.7; }
.svr-donate-hearts span:nth-child(4) { opacity: 0.55; }
.svr-donate-hearts span:nth-child(5) { opacity: 0.4; }
.svr-donate-hearts .svr-ico path {
  stroke: #f472b6;
  fill: rgba(244, 114, 182, 0.45);
}
.svr-donate-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 22px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 114, 182, 0.28);
  background: rgba(255,255,255,0.04);
  color: #f9a8d4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.svr-donate h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.svr-donate-h-white {
  display: block;
  color: #fff;
}
.svr-donate-h-grad {
  display: block;
  background: linear-gradient(90deg, #f472b6, #fb7185);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.svr-donate-lead {
  margin: 0 auto 28px;
  max-width: 560px;
  color: #9ca3af;
  font-size: 17px;
  line-height: 1.65;
}
.svr-donate-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 22px;
}
.svr-amounts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.svr-amt {
  appearance: none;
  flex: 1 1 72px;
  min-width: 72px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-radius: 14px;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.svr-amt:hover,
.svr-amt.is-on {
  border-color: transparent;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  box-shadow: 0 10px 24px rgba(236,72,153,0.28);
}
.svr-amt-custom-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #9ca3af;
  font-weight: 700;
}
.svr-amt-custom-row.is-on {
  border-color: rgba(244, 114, 182, 0.4);
}
.svr-amt-custom-row input {
  flex: 1;
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  outline: none;
}
.svr-amt-custom-row input::placeholder { color: #6b7280; }
.svr-donate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.svr-donate-actions .about-btn { min-width: 200px; }
.svr-donate-actions .about-btn-ghost {
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.svr-wallets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}
.svr-wallet {
  padding: 16px 16px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.svr-wallet span {
  display: block;
  margin-bottom: 8px;
  color: #f9a8d4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.svr-wallet code {
  display: block;
  margin-bottom: 10px;
  color: #e5e7eb;
  font-size: 12px;
  word-break: break-all;
}
.svr-copy {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.svr-copy.is-ok { color: #34d399; border-color: rgba(52,211,153,0.4); }

.svr-forum-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.svr-forum-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 20px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  background:
    linear-gradient(#12121a, #12121a) padding-box,
    linear-gradient(145deg, rgba(165,180,252,.85), rgba(232,121,249,.55), rgba(251,191,36,.42)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 16px 40px rgba(99,102,241,.16);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svr-forum-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(99,102,241,.22);
}
.svr-forum-ico {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fde68a;
  background: linear-gradient(135deg, rgba(99,102,241,.35), rgba(217,70,239,.22));
}
.svr-forum-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svr-forum-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 12px;
  color: rgba(196,181,253,.75);
}
.svr-forum-chip {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(251,191,36,.12);
  border: 1px solid rgba(251,191,36,.28);
}
.svr-forum-body strong {
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.svr-forum-body em {
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(203,213,225,.7);
}
.svr-forum-go {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(90deg, #a5b4fc 0%, #e879f9 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.svr-faq { margin-top: 8px; }

.pnl-dash {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 40%),
    rgba(10, 10, 16, 0.94);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  overflow: hidden;
}
.pnl-dash-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}
.pnl-dash-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f43f5e;
}
.pnl-dash-bar span:nth-child(2) { background: #fbbf24; }
.pnl-dash-bar span:nth-child(3) { background: #34d399; }
.pnl-dash-bar em {
  margin-left: 8px;
  font-style: normal;
  color: #9ca3af;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.pnl-live {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #34d399;
}
.pnl-live:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52,211,153,0.18);
  vertical-align: 1px;
}
.pnl-dash-body { padding: 20px 22px 22px; }
.pnl-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.pnl-meta small {
  display: block;
  color: #6b7280;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pnl-meta strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.pnl-meters { display: grid; gap: 10px; }
.pnl-meter span {
  display: flex;
  justify-content: space-between;
  color: #d1d5db;
  font-size: 12px;
  margin-bottom: 6px;
}
.pnl-meter span i { font-style: normal; color: #9ca3af; }
.pnl-meter em {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.pnl-meter em i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6366f1, #e879f9 60%, #fbbf24);
}
.pnl-acts {
  display: flex;
  gap: 8px;
  margin: 16px 0 14px;
}
.pnl-acts span {
  flex: 1;
  text-align: center;
  padding: 8px 6px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e5e7eb;
  font-size: 12px;
  font-weight: 600;
}
.pnl-log {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.75;
}
.pnl-log p { margin: 0; color: #d1d5db; }
.pnl-log i { font-style: normal; color: #6b7280; margin-right: 8px; }
.pnl-log .ok { color: #34d399; font-style: normal; font-weight: 700; }

.drv-box {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 40%),
    rgba(10, 10, 16, 0.94);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  overflow: hidden;
}
.drv-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}
.drv-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f43f5e;
}
.drv-bar span:nth-child(2) { background: #fbbf24; }
.drv-bar span:nth-child(3) { background: #34d399; }
.drv-bar em {
  margin-left: 8px;
  font-style: normal;
  color: #9ca3af;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.drv-live {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #34d399;
}
.drv-live:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52,211,153,0.18);
  vertical-align: 1px;
}
.drv-body { padding: 18px 20px 20px; }
.drv-path {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.drv-path small {
  display: block;
  color: #6b7280;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.drv-path strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 14px;
}
.drv-files {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.drv-files li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  color: #e5e7eb;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.drv-files i {
  width: 14px;
  height: 11px;
  border-radius: 2px 2px 1px 1px;
  background: #fbbf24;
  box-shadow: 0 -3px 0 -1px #f59e0b;
}
.drv-files i.is-file {
  width: 11px;
  height: 14px;
  border-radius: 2px;
  background: #a5b4fc;
  box-shadow: none;
}
.drv-files b { flex: 1; font-weight: 600; }
.drv-files em { font-style: normal; color: #6b7280; font-size: 12px; }
.drv-log {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.75;
}
.drv-log p { margin: 0; color: #d1d5db; }
.drv-log i { font-style: normal; color: #6b7280; margin-right: 8px; }
.drv-log .ok { color: #34d399; font-style: normal; font-weight: 700; }

@media (max-width: 1100px) {
  .svr-pack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .svr-hero-grid,
  .svr-dl,
  .svr-dl-grid,
  .svr-wallets,
  .pnl-meta {
    grid-template-columns: 1fr;
  }
  .svr-hero-grid { text-align: center; }
  .svr-lead,
  .svr-hero-copy .about-lead { margin-left: auto; margin-right: auto; text-align: center; }
  .svr-pills,
  .svr-hero-actions { justify-content: center; }
}
@media (max-width: 560px) {
  .svr-pack-grid { grid-template-columns: 1fr 1fr; }
  .svr-dl,
  .svr-donate { padding: 28px 18px; }
  .svr-donate-actions { flex-direction: column; }
  .svr-donate-actions .about-btn { width: 100%; min-width: 0; }
  .svr-forum-card { flex-wrap: wrap; }
  .svr-forum-go { width: 100%; margin-left: 66px; }
}
