body {
  font-family: 'Fira Mono', 'Segoe UI', Consolas, monospace;
  background: radial-gradient(ellipse at 70% 20%, #10151b 60%, #000 100%);
  color: #00fff9;
  margin: 0;
  min-height: 100vh;
}

.center-box {
  margin: 36px auto 0 auto;
  background: rgba(10,20,30,0.90);
  border-radius: 1.2em;
  border: 1.5px solid #00fff944;
  box-shadow: 0 0 28px 3px #00fff922;
  backdrop-filter: blur(9px);
  max-width: 960px;
  padding: 25px 20px 24px 20px;
}

.glitch-title {
  text-align: center;
  font-size: 1.45rem;
  font-family: inherit;
  font-weight: bold;
  letter-spacing: 1.6px;
  color: #00fff9;
  margin-bottom: 18px;
  position: relative;
}

.server-table {
  width: 100%;
  border-spacing: 0;
  border-radius: 9px;
  overflow: hidden;
  margin-bottom: 19px;
  background: rgba(0,20,25,0.92);
  box-shadow: 0 0 12px #00fff933;
}
.server-table th, .server-table td {
  padding: 10px 7px;
  border-bottom: 1px solid #00fff933;
  font-size: 1em;
}
.server-table th {
  background: #131e24;
  color: #05ff32;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.05em;
  position: sticky;
  top: 0;
  z-index: 1;
}
.server-table td {
  color: #00fff9;
  background: rgba(0,18,25,0.87);
  font-size: 0.98em;
  vertical-align: middle;
}
.server-table tr:last-child td { border-bottom: none; }

.ping-btn, .edit-btn, .del-btn, .server-btn, .pingall-btn {
  border: none;
  font-weight: bold;
  font-family: inherit;
  padding: 6px 17px;
  font-size: 0.98em;
  border-radius: 8px;
  box-shadow: 0 0 6px #00fff955;
  cursor: pointer;
  transition: background .14s, color .14s, box-shadow .14s;
  margin-right: 5px;
  margin-bottom: 3px;
  margin-top: 1px;
  letter-spacing: 0.6px;
}

.ping-btn { background: linear-gradient(90deg,#05ff32 0,#00fff9 100%); color: #111; }
.ping-btn:hover { background: linear-gradient(90deg,#00fff9 10%,#05ff32 90%); }

.edit-btn { background: linear-gradient(90deg,#00fff9 5%,#05ff32 95%); color: #111; }
.edit-btn:hover { background: linear-gradient(90deg,#05ff32 5%,#00fff9 95%); }

.del-btn {
  background: linear-gradient(90deg,#ff4361 10%,#ff8fa0 90%);
  color: #fff; box-shadow: 0 0 7px #ff436177;
}
.del-btn:hover { background: linear-gradient(90deg,#ff8fa0 10%,#ff4361 90%); }

.server-btn, .pingall-btn {
  background: linear-gradient(90deg,#05ff32 10%,#00fff9 90%);
  color: #121c1d;
  width: auto;
  min-width: 130px;
  text-transform: uppercase;
}
.server-btn:hover, .pingall-btn:hover {
  background: linear-gradient(90deg,#00fff9 20%,#05ff32 80%);
}

input, select {
  background: rgba(0,7,15,0.94);
  border: 1.4px solid #00fff966;
  color: #00fff9;
  border-radius: 8px;
  font-size: 1em;
  padding: 8px 12px;
  margin-bottom: 8px;
  outline: none;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.13s;
}
input:focus, select:focus { border-color: #05ff32; }

.pw-txt { font-family: inherit; letter-spacing: 1px; font-size: 1.01em; }
.pw-hide { filter: blur(1.8px); }

.online-status { font-weight: bold; }
.online-status.online { color: #05ff32; }
.online-status.offline { color: #ff4361; }

.searchbox {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 17px;
  border-radius: 8px;
  border: 1.5px solid #00fff944;
  background: rgba(0,10,25,0.89);
  color: #00fff9;
  font-size: 1em;
  outline: none;
  transition: border .13s;
}
.searchbox:focus { border-color: #05ff32; }

.server-form label { color: #00fff9; font-size: 0.97em; font-weight: 700; }

@media (max-width:800px) {
  .center-box { padding: 9px 1vw 9px 1vw; }
  .server-table th, .server-table td { font-size: 0.93em; padding: 7px 4px; }
  .ping-btn, .edit-btn, .del-btn, .server-btn, .pingall-btn { padding: 6px 9px; font-size: 0.95em; }
}
@media (max-width:500px) {
  .server-table th, .server-table td { font-size: 0.91em; }
  .center-box { padding: 6px 2vw 8px 2vw; }
}
