.withdraw-success-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding: 20px 18px;
  color: #dcfce7;
  text-align: center;
  line-height: 1.45;
  background: linear-gradient(145deg, rgba(34, 197, 94, .18), rgba(0, 229, 168, .08));
  border: 1px solid rgba(74, 222, 128, .5);
  border-radius: 16px;
  animation: withdraw-success-pop .45s cubic-bezier(.2, .9, .25, 1.2) both;
}

.withdraw-success-card strong {
  max-width: 300px;
  font-size: 1rem;
}

.withdraw-success-check {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: #fff;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, .12), 0 14px 34px rgba(34, 197, 94, .28);
  animation: withdraw-success-pulse .65s .22s ease-out both;
}

.withdraw-success-check svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.withdraw-success-check path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: withdraw-success-draw .45s .2s ease-out forwards;
}

@keyframes withdraw-success-pop {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes withdraw-success-pulse {
  0% { transform: scale(.72); }
  65% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes withdraw-success-draw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .withdraw-success-card,
  .withdraw-success-check,
  .withdraw-success-check path {
    animation: none;
  }

  .withdraw-success-check path { stroke-dashoffset: 0; }
}
