:root {
  --bg: #0b0d10;
  --text: #e9eef5;
  --accent: #4f8cff;
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: 2rem auto;
  background: #12161c;
  padding: 1.5rem;
  border-radius: 10px;
}

h1, h2 {
  color: var(--accent);
}

ul {
  list-style-type: square;
  padding-left: 1.5rem;
}

.site-header {
  text-align: center;
  padding: 2rem 1rem;
  background: #12161c;
  border-bottom: 1px solid #1c2430;
}

.site-footer {
  text-align: center;
  padding: 1rem;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid #1c2430;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background-color: #12161c;
}

th, td {
  border: 1px solid #4f8cff;
  padding: 0.6rem;
  text-align: left;
}

th {
  background-color: #0d1b2a;
  color: #4f8cff;
}
