* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #020617;
  color: white;
}

header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
}

header h1 {
  font-size: 48px;
}

header p {
  margin: 10px 0 20px;
  opacity: 0.9;
}

.buttons a {
  margin: 0 10px;
  padding: 12px 25px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 10px;
}

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  margin-bottom: 20px;
  text-align: center;
}

#status {
  text-align: center;
}

.loading {
  color: orange;
}

.online {
  color: #22c55e;
  font-weight: bold;
}

.offline {
  color: #ef4444;
  font-weight: bold;
}

ul {
  list-style: none;
  text-align: center;
}

ul li {
  margin: 10px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid #1e293b;
}

th, td {
  padding: 12px;
  text-align: center;
}

.faq h4 {
  margin-top: 15px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #020617;
  opacity: 0.6;
}