body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #f8f8f8;
  margin: 0;
  padding: 0;
}

.wrap {
  max-width: 960px;
  margin: 40px auto;
  padding: 25px;
  background: rgba(25, 25, 25, 0.9);
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.5);
}

h1, h2 {
  text-align: center;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 15px;
}

input::placeholder, textarea::placeholder {
  color: #bbb;
}

button {
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  background: linear-gradient(90deg, #00ff87, #60efff);
  color: #111;
  text-shadow: 0 0 5px #000;
  transition: 0.3s;
  margin-top: 5px;
}

button:hover {
  transform: scale(1.07);
  box-shadow: 0 0 20px #00ff87;
}

.err { color: #ff4d4d; font-weight: bold; text-shadow: 0 0 5px #000; }
.ok { color: #00ff87; font-weight: bold; text-shadow: 0 0 5px #000; }

.list {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.list th {
  background: linear-gradient(90deg, #ff512f, #dd2476);
  color: #fff;
  padding: 10px;
  text-align: left;
}

.list td {
  background: rgba(0,0,0,0.5);
  border: 1px solid #333;
  padding: 10px;
  color: #eee;
}

a { color: #60efff; text-decoration: none; }
a:hover { text-decoration: underline; }
