/* Simple, clean placeholder style */

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #0a84ff, #0077b6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.logo h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.footer {
  margin-top: 40px;
  font-size: 0.9rem;
  opacity: 0.7;
}

