body {
  margin: 0;
  padding: 0;
  background: #fcfcfc;
  font-family: 'Inter', Arial, sans-serif;
  min-height: 100vh;
}

.hw-center-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Mobile: tetap mulai dari atas */
  min-height: 100vh;
  width: 100vw;
}

.hw-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 32px 0 38px 0;
  letter-spacing: 0.01rem;
}

.hw-wallet-list {
  width: 92vw;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hw-wallet-item {
  background: #f6f6f6;
  border-radius: 18px;
  padding: 28px 28px 28px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 1.5px 7px rgba(40,60,50,0.02);
  transition: box-shadow 0.16s;
  text-decoration: none !important;
  color: inherit !important;
}

.hw-wallet-name {
  text-decoration: none !important;
  color: #111 !important;
}

.hw-wallet-item:hover {
  box-shadow: 0 6px 16px rgba(40,60,50,0.07);
}

.hw-wallet-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hw-wallet-info img {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain;
}

.hw-wallet-name {
  font-size: 1.28rem;
  font-weight: 600;
  color: #141414;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hw-new-badge {
  background: #d8fae3;
  color: #25b864;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 3px 13px 3px 13px;
  margin-left: 7px;
  display: inline-block;
}

.hw-wallet-arrow {
  color: #bbb;
  margin-left: 16px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  opacity: 0.83;
}

@media (max-width: 600px) {
  .hw-title { font-size: 1.28rem; margin-bottom: 24px; }
  .hw-wallet-list { gap: 13px; }
  .hw-wallet-item { padding: 19px 15px 19px 13px; }
  .hw-wallet-info img { width: 28px; height: 28px; }
  .hw-wallet-name { font-size: 1.05rem;}
  .hw-new-badge { font-size: 0.85rem; padding: 2px 8px; }
}

/* DESKTOP MODE - CARD CENTER */
@media (min-width: 900px) {
  body {
    background: #f4f4f4;
  }
  .hw-center-card {
    position: absolute;
    left: 50%;
    top: 50%;
    min-width: 450px;
    max-width: 430px;
    width: 100%;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 32px rgba(0,0,0,0.11);
    transform: translate(-50%, -50%);
    padding: 40px 0 40px 0;
    min-height: unset;
    height: auto;
    justify-content: flex-start;
  }
  .hw-title {
    margin-top: 0;
    margin-bottom: 32px;
    font-size: 1.6rem;
  }
  .hw-wallet-list {
    width: 98%;
    max-width: 400px;
    margin: 0 auto;
  }
}