@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #0a0a0a 0%, #000 100%);
  color: #fff;
  text-align: center;
  overflow-x: show;
}

header {
  padding: 50px 20px 20px;
}

header h1 {
  font-size: 3rem;
  margin: 0;
  color: #0059ff;
  text-shadow:none;
}

.highlight {
  color: #00bfff;
}

.subtitle {
  color: #ffffff;
  font-size: 1rem;
  margin-top: 10px;
}

.controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px auto;
}

input, select {
  background: #111;
  border: 1px solid #333;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.2s;
}

input:focus, select:focus {
  border-color: #0059ff;
  outline: none;
  box-shadow: 0 0 10px #ffffff50;
}

.server-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.server-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px #000;
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: left;
}

.server-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #00bfff80;
}

.server-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.server-card .info {
  padding: 20px;
}

.server-card h2 {
  color: #00bfff;
  margin-top: 0;
}

.server-card p {
  color: #ccc;
  margin: 6px 0;
}

.links a {
  display: inline-block;
  background: #00bfff;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 8px;
  transition: 0.2s;
}

.links a:hover {
  background: #0095ff;
}

footer {
  background: #0a0a0a;
  color: #888;
  padding: 25px 0;
  border-top: 1px solid #222;
  margin-top: 60px;
}
