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

body {
  font-family: 'Outfit', sans-serif;
  background-color: #050505; /* Deep black */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Colorful Ambient Glows for Background */
.ambient-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.4;
  animation: float 12s infinite ease-in-out alternate;
}

.glow-1 {
  background: #ec4899; /* Bright Pink */
  top: -10%;
  left: -10%;
}

.glow-2 {
  background: #8b5cf6; /* Vibrant Purple */
  bottom: -10%;
  right: -10%;
  animation-delay: -6s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.1); }
}

.container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

/* Glassmorphism Card Wrapper */
.card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  max-width: 90vw;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  max-width: 100%;
}

/* Arrow Styling & Animation */
.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 0 12px rgba(236, 72, 153, 0.6));
}

.bounce {
  animation: bounceRight 2s infinite ease-in-out;
}

@keyframes bounceRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(15px); }
}

/* Premium Button Styling */
.verify-btn {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  color: white;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 999px; /* Pill shape */
  cursor: pointer;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.5), 0 0 15px rgba(236, 72, 153, 0.3);
  animation: pulse-glow 2s infinite;
}

.btn-text {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hover Gradient Layer */
.verify-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f472b6 0%, #a78bfa 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.verify-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 40px -5px rgba(139, 92, 246, 0.7), 0 0 20px rgba(236, 72, 153, 0.5);
}

.verify-btn:hover::before {
  opacity: 1;
}

.verify-btn:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 5px 15px -5px rgba(139, 92, 246, 0.5);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.5), 0 0 15px rgba(236, 72, 153, 0.3);
  }
  50% {
    box-shadow: 0 15px 40px -5px rgba(139, 92, 246, 0.8), 0 0 35px rgba(236, 72, 153, 0.7);
  }
}

@media (max-width: 380px) {
  .card {
    padding: 1.25rem 1rem;
  }
  .verify-btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
  .content-wrapper {
    gap: 0.5rem;
  }
}
