body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: white;
  overflow-x: hidden;
  background: #0f1226;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.content {
  max-width: 480px;
  z-index: 2;
  animation: fadeIn 1.2s ease;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

h2 {
  font-weight: 500;
  margin-bottom: 20px;
}

.tagline {
  opacity: 0.9;
  margin-bottom: 30px;
}

.badge img {
  height: 60px;
  transition: transform 0.2s ease;
}

.badge img:hover {
  transform: scale(1.05);
}

.qr-section {
  margin-top: 25px;
}

#qrcode {
  background: white;
  padding: 12px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 10px;
}

.note {
  margin-top: 20px;
  opacity: 0.8;
}

/* Animated gradient blob */
.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(45deg, #6a5cff, #00c2ff, #ff4ecd);
  filter: blur(120px);
  opacity: 0.5;
  animation: moveBlob 12s infinite alternate ease-in-out;
}

@keyframes moveBlob {
  0% { transform: translate(-20%, -10%) scale(1); }
  100% { transform: translate(20%, 10%) scale(1.2); }
}

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