* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 190, 80, 0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(60, 130, 255, 0.25), transparent 35%),
    linear-gradient(135deg, #10101a, #1d1d2e);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.background-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle, black 30%, transparent 75%);
  pointer-events: none;
}

.card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 45px;
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
  animation: appear 0.8s ease-out;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 190, 80, 0.16);
  border: 1px solid rgba(255, 190, 80, 0.35);
  color: #ffd28a;
  font-size: 14px;
  margin-bottom: 24px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffb84d;
  box-shadow: 0 0 18px #ffb84d;
  animation: pulse 1.4s infinite;
}

h1 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

h1 span {
  color: #ffbf66;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 32px;
}

.progress-wrapper {
  margin: 32px auto;
  max-width: 480px;
  background: rgba(255,255,255,0.12);
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffbf66, #ff7b54);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.status {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: -18px;
  margin-bottom: 32px;
}

.actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #ffffff;
  color: #151522;
}

.btn-secondary {
  background: #064e3b;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: #065f46;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.floating-icon {
  position: fixed;
  font-size: 42px;
  opacity: 0.12;
  animation: float 7s ease-in-out infinite;
  pointer-events: none;
}

.icon-1 {
  top: 12%;
  left: 12%;
}

.icon-2 {
  top: 18%;
  right: 14%;
  animation-delay: 1s;
}

.icon-3 {
  bottom: 14%;
  left: 18%;
  animation-delay: 2s;
}

.icon-4 {
  bottom: 18%;
  right: 18%;
  animation-delay: 3s;
}

.icon-5 {
  top: 42%;
  left: 8%;
  animation-delay: 0.5s;
}

.icon-6 {
  top: 58%;
  right: 9%;
  animation-delay: 1.6s;
}

.icon-7 {
  top: 74%;
  left: 34%;
  animation-delay: 2.4s;
}

.icon-8 {
  top: 36%;
  right: 28%;
  animation-delay: 3.2s;
}

.icon-9 {
  top: 8%;
  left: 48%;
  animation-delay: 4s;
}

.icon-10 {
  bottom: 8%;
  right: 42%;
  animation-delay: 4.8s;
}

footer {
  margin-top: 34px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(1.4);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-22px) rotate(8deg);
  }
}

@media (max-width: 600px) {
  .card {
    padding: 30px 22px;
    border-radius: 22px;
  }

  p {
    font-size: 16px;
  }

  .floating-icon {
  position: fixed;
  font-size: 42px;
  opacity: 0.12;
  animation: float 7s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
 }
}