* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #f4f5f7;
  color: #333;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 1rem;
}

h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #0d6efd;
}

p {
  margin-bottom: 0.75rem;
}

a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.social-links a {
  margin-right: 8px; /* or whatever you're using */
  margin-left: 8px;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 2px; /* perfect spacing */
}

.crossed {
  text-decoration: line-through;
  opacity: 0.6;
}

.soon {
  opacity: 0.8;
  font-style: italic;
}


footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #777;
}
