* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: #0a0a0f;
  color: #e0e0f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

.logo {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #7b5ea7, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.2rem;
  color: #9090b0;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.greeting {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #c8c8e8;
}

.description {
  font-size: 1rem;
  line-height: 1.7;
  color: #7878a0;
  margin-bottom: 2.5rem;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(123, 94, 167, 0.2), rgba(79, 195, 247, 0.2));
  border: 1px solid rgba(79, 195, 247, 0.3);
  border-radius: 9999px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  color: #4fc3f7;
  letter-spacing: 0.08em;
}

footer {
  position: fixed;
  bottom: 1.5rem;
  font-size: 0.8rem;
  color: #404060;
}
