.wallet-support {
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: black;
}

.wallet-support a {
  text-decoration: none;
  color: inherit;
}

.wallet-support-heading {
  text-align: center;
  font-size: 3vw;
  font-weight: 600;
  margin-bottom: 2vw;
  margin-top: 5vw;
  background: linear-gradient(45deg, #0000ff, #1e90ff, #00bfff, #87ceeb, #b0e0e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wallet-support-text {
  display: block;
  text-align: center;
  width: 100%;
  color: whitesmoke;
  font-size: 0.9vw;
  font-weight: 200;
  padding-bottom: 2vw;
  margin: 0 auto;
}

.item-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 20px;
  justify-items: center;
}

.item {
  background-color: #1f1f1f;
  padding: 15px;
  height: 160px;
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.logo {
  width: 70%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  border-radius: 45px;
  margin-bottom: 10px;
}

.item img {
  max-width: 80%;
  max-height: 80px;
  height: auto;
  border-radius: 45px;
  margin-bottom: 10px;
  object-fit: contain;
}

.logo-title {
  font-size: 12px;
  margin-top: -10px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

@media (max-width: 768px) {
  .wallet-support-heading { font-size: 5vw; margin-top: 6vw; }
  .wallet-support-text { font-size: 2vw; }
  .item-list { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; }
  .item { width: 130px; height: 150px; }
}

@media (max-width: 576px) {
  .wallet-support-heading { font-size: 7vw; }
  .wallet-support-text { font-size: 3vw; }
  .item-list { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; padding: 0 10px; }
  .item { width: 110px; height: 130px; }
  .logo-title { font-size: 10px; }
}
