body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
  margin: 0;
}

h1 {
  color: gold;
  font-size: 24px;
  margin-bottom: 30px;
}

p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.content-container {
  max-width: 600px;
  margin: auto;
}

.note {
  color: #ccc;
  font-style: italic;
  margin-top: 30px;
}

.utility-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.utility-button {
  background-color: transparent;
  color: #ccc;
  border: 1px solid #777;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 60%;
  max-width: 300px;
  text-align: center;
}

.utility-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}
