/* Reset some defaults */
body, h1, h2, p, ul {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #1e1e2f;
  color: #f0f0f0;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 40px;
}

.container {
  background: #2c2c3c;
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #ffcc00;
  text-align: center;
}

p {
  margin-bottom: 20px;
  text-align: center;
  color: #ccc;
}

.server-info h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #444;
  padding-bottom: 5px;
  color: #66d9ef;
}

ul {
  list-style: none;
  margin-top: 10px;
}

ul li {
  background: #3a3a4f;
  margin: 8px 0;
  padding: 12px 15px;
  border-radius: 6px;
  transition: background 0.3s;
}

ul li:hover {
  background: #50506a;
}

code {
  background: #111;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: #ffcc00;
}

footer {
  margin-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}
