/* Server Info page specific styles */
:root {
  --muted: #c5c5c5;
  --border: rgba(255, 255, 255, 0.15);
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nav {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

main {
  width: min(980px, 92%);
  border-radius: 16px;
  padding: 34px 22px 28px;
  backdrop-filter: blur(6px);
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-size: 64px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

.divider {
  width: min(920px, 92%);
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  margin: 16px auto 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 12px 0 6px;
}

.pill {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: background 0.2s ease;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  margin-top: 2rem;
}

.note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

footer {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #bdbdbd;
  font-size: 12px;
}
