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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background: #050b07;
  color: white;
}

.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  perspective: 1200px;
}

.footer {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.footer a {
  color: #22c55e;
  text-decoration: none;
}
.footer a:hover {
  color: #16a34a;
}

.glass-card {
  width: min(420px, 100%);
  padding: 48px 24px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-align: center;
  transition: transform 0.15s ease;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 40%);
  pointer-events: none;
}

.currency-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 800;
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.35);
  animation: float 4s ease-in-out infinite;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(134, 239, 172, 0.2);
  color: #86efac;
  font-size: 13px;
  font-weight: 600;
}

h1 {
  margin-top: 24px;
  font-size: clamp(2.5rem, 7vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 15px;
}

.progress-wrapper {
  margin-top: 32px;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress {
  height: 100%;
  width: 65%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #86efac);
  animation: pulse 2s infinite;
}

.status {
  display: block;
  margin-top: 18px;
  color: #86efac;
  font-weight: 600;
}

.bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.blur-1 {
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, 0.25);
  top: -80px;
  left: -80px;
  animation: drift 12s infinite alternate;
}

.blur-2 {
  width: 260px;
  height: 260px;
  background: rgba(16, 185, 129, 0.18);
  bottom: -80px;
  right: -60px;
  animation: drift 10s infinite alternate-reverse;
}

.blur-3 {
  width: 180px;
  height: 180px;
  background: rgba(134, 239, 172, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(60px, 40px);
  }
}

/*# sourceMappingURL=style.min.css.map */
