/* ================= DEPOSIT CARD ================= */
.deposit-card {
  padding: 16px;
}

/* TOP */
.deposit-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.7;
}

/* AMOUNT */
.deposit-amount {
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-mid);
}

/* INFO */
.deposit-info {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

/* BOX */
.info-box {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  font-size: 11px;
}

/* COLORS */
.daily-box {
   background: linear-gradient(135deg, var(--btn-team), var(--btn-team));
}

.earned-box {
   background: linear-gradient(135deg, var(--btn-deposit), var(--btn-deposit));
}

/* TIMER */
.timer-box {
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  background: var(--bg-start);
  text-align: center;
  font-size: 12px;
}

/* LIVE DOT */
.live-dot {
  width: 6px;
  height: 6px;
 background: var(--btn-team);
  border-radius: 50%;
  display: inline-block;
  margin-left: 5px;
  animation: pulse 1.5s infinite;
}

/* ANIMATION */
@keyframes pulse {
    0% { box-shadow: 0 0 10px var(--bg-start); }
    50% { box-shadow: 0 0 25px var(--bg-mid); }
    100% { box-shadow: 0 0 10px var(--primary-dark); }
}