[data-project="wallet"] .wallet-content-wechat {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100% - 60px);
}

[data-project="wallet"] .wallet-icon-wrapper {
  margin-top: 40px;
  margin-bottom: 20px;
}

[data-project="wallet"] .wallet-yen-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

[data-project="wallet"] .wallet-balance-section {
  text-align: center;
  margin-bottom: 60px;
}

[data-project="wallet"] .wallet-balance-label {
  font-size: 14px;
  color: #8E8E93;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

[data-project="wallet"] .wallet-balance-amount {
  font-size: 48px;
  font-weight: 400;
  color: #1c1c1e;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

[data-project="wallet"] .wallet-actions-wechat {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: auto;
}

[data-project="wallet"] .wallet-btn-recharge {
  width: 100%;
  height: 48px;
  background: #07C160;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

[data-project="wallet"] .wallet-btn-recharge:active {
  background: #06ad56;
  transform: scale(0.98);
}

[data-project="wallet"] .wallet-btn-withdraw {
  width: 100%;
  height: 48px;
  background: #F7F7F7;
  color: #1c1c1e;
  border: 1px solid #E5E5EA;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

[data-project="wallet"] .wallet-btn-withdraw:active {
  background: #E5E5EA;
  transform: scale(0.98);
}

[data-project="wallet"] .wallet-footer {
  margin-top: 40px;
  text-align: center;
}

[data-project="wallet"] .wallet-footer-text {
  font-size: 14px;
  color: #576B95;
  margin-bottom: 8px;
  cursor: pointer;
}

[data-project="wallet"] .wallet-footer-note {
  font-size: 12px;
  color: #C7C7CC;
}

[data-project="wallet"] .wallet-transactions-section {
  width: 100%;
  max-width: 320px;
  margin-top: 18px;
  margin-bottom: 20px;
  border: 1px solid #EAEAF0;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

[data-project="wallet"] .wallet-transactions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #F0F0F4;
  font-size: 13px;
  color: #8E8E93;
}

[data-project="wallet"] .wallet-transactions-list {
  max-height: 240px;
  overflow: auto;
}

[data-project="wallet"] .wallet-transactions-empty {
  padding: 22px 14px;
  text-align: center;
}

[data-project="wallet"] .wallet-transactions-empty-title {
  font-size: 14px;
  color: #3A3A40;
}

[data-project="wallet"] .wallet-transactions-empty-subtitle {
  margin-top: 6px;
  font-size: 12px;
  color: #A1A1AA;
}

[data-project="wallet"] .wallet-transaction-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #F5F5F8;
}

[data-project="wallet"] .wallet-transaction-row:last-child {
  border-bottom: none;
}

[data-project="wallet"] .wallet-transaction-main {
  min-width: 0;
}

[data-project="wallet"] .wallet-transaction-title {
  font-size: 14px;
  color: #1C1C1E;
}

[data-project="wallet"] .wallet-transaction-subtitle {
  margin-top: 4px;
  font-size: 12px;
  color: #8E8E93;
}

[data-project="wallet"] .wallet-transaction-side {
  text-align: right;
  white-space: nowrap;
}

[data-project="wallet"] .wallet-transaction-amount {
  font-size: 14px;
  font-weight: 600;
}

[data-project="wallet"] .wallet-transaction-amount.income {
  color: #16A34A;
}

[data-project="wallet"] .wallet-transaction-amount.expense {
  color: #111827;
}

[data-project="wallet"] .wallet-transaction-meta {
  margin-top: 4px;
  font-size: 11px;
  color: #9CA3AF;
}
