.finaease-money-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
}

.finaease-money-overlay[aria-hidden="false"] {
  display: flex;
}

.finaease-money-card {
  width: min(860px, calc(100vw - 28px));
  border-radius: 22px;
  background: var(--bs-body-bg, #fff);
  color: var(--bs-body-color, #111);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.finaease-money-cardHeader {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.finaease-money-title {
  font-weight: 700;
  margin: 0;
  font-size: 1.55rem;
}

.finaease-money-subtitle {
  margin: 0;
  font-size: 1.15rem;
  opacity: 0.85;
}

.finaease-money-cardBody {
  position: relative;
  padding: 28px 28px 24px 28px;
  min-height: 250px;
}

.finaease-money-meter {
  display: flex;
  align-items: center;
  gap: 14px;
}

.finaease-money-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: rgba(25, 135, 84, 0.2);
  color: #0f8f50;
  font-weight: 900;
  font-size: 2rem;
  box-shadow: 0 0 0 1px rgba(25, 135, 84, 0.25), 0 10px 24px rgba(25, 135, 84, 0.18);
}

.finaease-money-progress {
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex: 1;
}

.finaease-money-progress > div {
  height: 100%;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, #198754, #20c997);
  animation: finaeaseMoneyIndeterminate 1.05s ease-in-out infinite;
}

@keyframes finaeaseMoneyIndeterminate {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(270%);
  }
}

.finaease-money-rain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.finaease-money-dollar {
  position: absolute;
  top: -48px;
  font-weight: 900;
  color: #0d8b4d;
  text-shadow: 0 0 8px rgba(32, 201, 151, 0.36), 0 6px 16px rgba(0, 0, 0, 0.24);
  animation: finaeaseMoneyFall linear infinite;
  user-select: none;
  filter: saturate(1.15);
}

@keyframes finaeaseMoneyFall {
  0% {
    transform: translateY(-36px) rotate(0deg);
    opacity: 0.0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(320px) rotate(20deg);
    opacity: 0.0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .finaease-money-progress > div {
    animation: none;
    width: 55%;
  }
  .finaease-money-dollar {
    display: none;
  }
}

