/* ================================
   Full-Screen Deposit Modal
================================== */
.depositmodal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--wallet-bg);
  backdrop-filter: blur(8px);
  color: #fff;
  z-index: 9999;
  padding: 20px 16px;
  box-sizing: border-box;
  overflow: hidden;
}

/* ================================
   Modal Content
================================== */
.depositmodal-content {
  position: relative;
  width: 90%;
  max-width: 480px;
  padding: 40px 20px;
  text-align: center;
  animation: modalFadeIn 0.4s ease-out;
}

/* ================================
   Glowing Floor Effect
================================== */
.depositmodal-content::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0, 255, 179, 0.25) 0%, transparent 80%);
  z-index: -1;
  filter: blur(15px);
}
.Deposit TON h3 {
margin: 0 auto;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

/* ================================
   Close Button
================================== */
.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  font-weight: bold;
  color: #00ff99;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.close:hover {
  color: #00cc77;
}

/* ================================
   Input Field
================================== */
#depositAmount {
  width: 80%;
  padding: 5px;
  margin: 10px 0;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #fff;
  color: #003248;
  box-shadow: 0 0 6px rgba(0, 255, 179, 0.2);
}

/* ================================
   Confirm Button
================================== */
#confirmDeposit {
  background-color: var(--wallet-bg);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease, box-shadow 0.3s;
  box-shadow: 0 0 12px #00ff99cc;
}

#confirmDeposit:hover {
  background-color: #00cc77;
}

/* ================================
   Status Message
================================== */
#depositStatus {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #00ff99;
  text-align: center;
  text-shadow: 0 0 6px #00ff99aa;
}

/* ================================
   Animation
================================== */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   Responsive
================================== */
@media (max-width: 480px) {
  #depositAmount {
    width: 100%;
  }

  #confirmDeposit {
    width: 100%;
  }
}