.app-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 184, 124, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 184, 124, 0.15);
}

.app-icon {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid #00b87c;
}

.app-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin: 8px 0;
}

.app-downloads {
  color: #007b55;
  font-weight: 600;
  font-size: 15px;
}

.app-withdrawal {
  color: #008f55;
  font-size: 14px;
  margin-top: 4px;
}

.app-tagline {
  font-style: italic;
  color: #444;
  font-size: 14px;
  margin: 6px 0 16px;
}


.download-btn {
  display: inline-block;
  background-color: #00b87c;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
  background-color: #00996a;
  transform: scale(1.05);
}
