.meta108-deposit {
  position: relative;
  overflow: hidden;
  padding: 90px 18px;
  background:
    radial-gradient(circle at top left, rgba(0, 145, 255, .35), transparent 34%),
    linear-gradient(135deg, #04112d 0%, #062157 48%, #075bd3 100%);
  color: #ffffff;
}

.deposit-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.deposit-header {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.deposit-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(118, 220, 255, .12);
  border: 1px solid rgba(118, 220, 255, .34);
  color: #9bddff;
  font-size: 14px;
  font-weight: 800;
}

.deposit-header h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.6px;
}

.deposit-header p {
  margin: 0;
  color: #d9ecff;
  font-size: 17px;
  line-height: 1.75;
}

.deposit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.deposit-card {
  position: relative;
  overflow: hidden;
  padding: 28px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(130, 205, 255, .22);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .26);
  backdrop-filter: blur(14px);
  transition: .25s ease;
}

.deposit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 218, 255, .18), transparent 45%);
  opacity: 0;
  transition: .25s ease;
}

.deposit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(137, 215, 255, .5);
}

.deposit-card:hover::before {
  opacity: 1;
}

.deposit-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #06142f;
  background: linear-gradient(135deg, #80ddff, #1e90ff);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(30, 144, 255, .35);
}

.deposit-card h3,
.deposit-card p {
  position: relative;
  z-index: 1;
}

.deposit-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
}

.deposit-card p {
  margin: 0;
  color: #d6ebff;
  font-size: 15px;
  line-height: 1.7;
}

.deposit-note {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 18px 22px;
  border-radius: 18px;
  text-align: center;
  color: #dff2ff;
  background: rgba(6, 20, 47, .58);
  border: 1px solid rgba(120, 200, 255, .24);
}

.deposit-note strong {
  color: #8fd7ff;
}

.deposit-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.deposit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: .25s ease;
}

.deposit-btn.primary {
  color: #06142f;
  background: linear-gradient(135deg, #76dcff, #1e90ff);
  box-shadow: 0 14px 35px rgba(30, 144, 255, .35);
}

.deposit-btn.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(150, 215, 255, .48);
}

.deposit-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.deposit-bg-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  right: -140px;
  bottom: -170px;
  border-radius: 50%;
  background: rgba(61, 172, 255, .3);
  filter: blur(90px);
}

@media (max-width: 1024px) {
  .deposit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .meta108-deposit {
    padding: 64px 14px;
  }

  .deposit-header {
    margin-bottom: 30px;
  }

  .deposit-header p {
    font-size: 15.5px;
  }

  .deposit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .deposit-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .deposit-actions {
    flex-direction: column;
  }

  .deposit-btn {
    width: 100%;
  }

  .deposit-note {
    font-size: 14.5px;
    line-height: 1.7;
  }
}