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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0b0f19;
  color: #f8fafc;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

/* Background Moving Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
  animation: orbMove 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #38bdf8, transparent 70%);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #818cf8, transparent 70%);
  bottom: -120px;
  right: -120px;
  animation-delay: -6s;
}

@keyframes orbMove {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 50px) scale(1.1); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Card Container with entrance animation */
.card {
  max-width: 500px;
  background: rgba(18, 26, 43, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 3rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: cardFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Badge with Pulsing Red Dot */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Emoji Motion Stage */
.emoji-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.main-emoji {
  font-size: 4rem;
  animation: floatMain 3.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes floatMain {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
  100% { transform: translateY(4px) rotate(-5deg); }
}

.sub-emoji-1, .sub-emoji-2, .sub-emoji-3 {
  position: absolute;
  font-size: 1.6rem;
}

.sub-emoji-1 {
  top: 0;
  left: 0;
  animation: popPulse 2.5s ease-in-out infinite alternate;
}

.sub-emoji-2 {
  top: 10px;
  right: 0;
  animation: popPulse 3s ease-in-out infinite alternate 0.5s;
}

.sub-emoji-3 {
  bottom: 5px;
  right: 15px;
  animation: spinSlow 8s linear infinite;
}

@keyframes popPulse {
  0% { transform: scale(0.8) translateY(0); opacity: 0.7; }
  100% { transform: scale(1.2) translateY(-10px); opacity: 1; }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Typography & Hand Wave */
h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.wave {
  display: inline-block;
  animation: waveHand 2.2s infinite;
  transform-origin: 70% 70%;
}

@keyframes waveHand {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.65;
}
