@keyframes confetti-fall {
  0% {
    transform: translateY(-100%) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(calc(100vh + 100px)) rotate(720deg);
    opacity: 0;
  }
}

.native-modal-overlay.show {
  display: flex !important;
}

.income-section {
  padding: 0 20px 15px 20px !important;
  margin-bottom: 0 !important;
}

.income-grid {
  margin-bottom: 15px !important;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 45%;
}

.stat-label {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 4px;
}

.stat-value {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}

/* Modern PWA Banner */
.pwa-banner {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 25px auto;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
  animation: floatUp 1.2s ease-out;
}

/* Banner Image */
.pwa-banner img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Hover Animation */
.pwa-banner:hover img {
  transform: scale(1.04);
  box-shadow: 0 0 25px rgba(0, 198, 255, 0.3);
}

/* Soft Glow Border */
.pwa-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 198, 255, 0.25),
    rgba(0, 255, 157, 0.25)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pwa-banner:hover::after {
  opacity: 1;
}

/* Subtle Float Animation */
@keyframes floatUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Optional Glow Pulse (looping) */
@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.4);
  }
}

.pwa-banner img {
  animation: glowPulse 3s infinite ease-in-out;
}
