:root {
  color-scheme: dark;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: #000000;
  color: #ffffff;
  text-align: center;
}
.container {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
h1 {
  font-size: 3em;
  margin-bottom: 0;
}
p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.buttons {
  display: flex;
  gap: 15px;
  flex-direction: row;
  justify-content: center;
}
.btn {
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  gap: 14px;
}
.btn:hover {
  transform: scale(1.05);
}
.btn-primary {
  background: #fff;
  color: #000;
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fff;
}
.btn img {
  width: 28px;
  height: auto;
}
.mention {
  font-size: 0.9em;
  color: #888;
}
