:root {
  --brand: #0b74ff;
  --accent: linear-gradient(to right, #ffe75e, #0b74ff);
  --bg: #fff;
  --text: #222;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main.coming-soon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #000;
  padding: 2rem;
}

.container {
  background: white;
  border-radius: 16px;
  padding: 2rem 3rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  max-width: 600px;
}

h1 {
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

p.lead {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.notice {
  background: var(--brand);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 1rem;
}

footer {
  font-size: 0.9rem;
  color: #444;
  padding: 1rem 0;
}
