* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #171717;
  color: #fff;
}

.wallet-support {
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: #0d0d0d;
  min-height: 100vh;
  transition: opacity 0.3s ease;
}

.wallet-support.modal-open {
  opacity: 0.1;
  pointer-events: none;
}

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

.wallet-support-text {
  text-align: center;
  width: 100%;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  font-weight: 100;
  padding-bottom: 25px;
}

.item-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.item {
  background-color: #1f1f1f;
  padding: 12px;
  height: 140px;
  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, border 0.3s ease;
  cursor: pointer;
  border: 1px solid #2a2a2a;
}

.item:hover {
  transform: scale(0.92);
  box-shadow: 0 8px 20px rgba(98,211,255,0.15);
  border-color: rgba(98,211,255,0.3);
}

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

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

.logo-title {
  font-size: 11px;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  text-decoration: none;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .wallet-support-heading { font-size: 28px; margin-top: 50px; }
  .item-list { gap: 12px; padding: 0 15px; }
  .item { width: 120px; height: 125px; }
}

@media (max-width: 576px) {
  .wallet-support-heading { font-size: 24px; }
  .item-list { gap: 10px; padding: 0 10px; }
  .item { width: 105px; height: 115px; }
  .logo-title { font-size: 10px; }
}
