body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 700px;
  padding: 2rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #cccccc;
}

.links a {
  margin: 0 1rem;
  text-decoration: none;
  color: #66b2ff;
  font-weight: bold;
}

.links a:hover {
  text-decoration: underline;
}

.unstyled-link {
  color: inherit;         /* Same color as surrounding text */
  text-decoration: underline;
  font-weight: inherit;
}

.unstyled-link:hover {
  text-decoration: underline;
  color: #66b2ff; /* optional: subtle color on hover */
}