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

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

.stars {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(99,57,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0,180,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  padding: 2rem;
  width: 100%;
  max-width: 560px;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(99,57,255,0.15);
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hat {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

h1 {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
}

.tagline {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.tagline strong { color: #c4b5fd; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.3), transparent);
  margin: 1.5rem 0;
}

.desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 1.8rem;
}

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.stack span {
  background: rgba(99,57,255,0.15);
  border: 1px solid rgba(99,57,255,0.3);
  color: #a78bfa;
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
}

.footer {
  font-size: 0.8rem;
  color: #6b7280;
}

.footer a { color: #60a5fa; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
