/* Global */
body {
  background-color: #f4f4f4;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* Topbar */
.topbar {
  background-color: #00b96b;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Balance Card */
.balance-card {
  background-color: #00b96b;
  color: #fff;
  border-radius: 1rem;
}
.balance-card .amount {
  font-size: 2rem;
  font-weight: bold;
}
.balance-card a.btn {
  font-weight: bold;
}

/* Menu Boxes */
.menu-box {
  transition: transform 0.2s;
}
.menu-box:hover {
  transform: scale(1.05);
}
.menu-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 0.5rem;
}
.menu-box span {
  font-weight: bold;
}

/* Footer Partner Slider */
.partners-slider {
  overflow: hidden;
  position: relative;
}
.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}
.slider-track img {
  height: 40px;
  margin: 0 25px;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .balance-card .amount {
    font-size: 1.5rem;
  }
}
