body {
  background: #0b0f14;
  font-family: system-ui;
  color: #fff;
}

.thankyou-page {
  padding: 100px 20px;
  text-align: center;
}

.container {
  max-width: 700px;
  margin: auto;
}

.icon {
  font-size: 40px;
  color: #3aa0ff;
  margin-bottom: 20px;
}

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

.sub {
  color: #aaa;
}

.ref {
  color: #3aa0ff;
  margin: 10px 0;
}

.message {
  color: #bbb;
  margin: 20px 0;
  line-height: 1.6;
}

.actions {
  margin: 30px 0;
}

.btn-primary {
  background: #3aa0ff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 10px;
}

.btn-secondary {
  color: #aaa;
  text-decoration: none;
}

.next {
  margin-top: 40px;
  color: #ccc;
}
/* =============================
   TICK ANIMATION
============================= */

.tick-wrapper {
  width: 80px;
  margin: 0 auto 20px;
}

.tick-svg {
  width: 80px;
  height: 80px;
  stroke: #3aa0ff;
  stroke-width: 3;
  fill: none;
}

/* hidden initially */
.tick-check {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
}

.tick-circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
}

/* animation classes */
.tick-check.animate {
  animation: drawTick 0.6s ease forwards;
}

.tick-circle.animate {
  animation: drawCircle 0.8s ease forwards;
  animation-delay: 0.5s;
}

@keyframes drawTick {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}
.ref {
  color: #3aa0ff;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
}

.ref.show {
  opacity: 1;
  transform: translateY(0);
}