.wallet-info {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  display: none;
  border: 2px solid #4f0099;
}

.wallet-info.active {
  display: block;
  animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wallet-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.network-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.network-badge.bsc {
  background: linear-gradient(135deg, #f0b90b 0%, #f8d12f 100%);
  color: #000;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.wallet-address-display {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #333;
  background: white;
  padding: 10px;
  border-radius: 8px;
  word-break: break-all;
  margin: 10px 0;
  border: 1px solid #dee2e6;
}

.balance-display {
  background: white;
  padding: 15px;
  border-radius: 10px;
  margin: 10px 0;
  text-align: center;
  border: 2px solid #f0b90b;
}

.balance-amount {
  font-size: 28px;
  font-weight: bold;
  color: #03b61b;
  display: block;
  margin: 5px 0;
}

.balance-label {
  font-size: 12px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disconnect-btn {
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 20px;
}

.btn-wallet {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-wallet:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(79, 0, 153, 0.3);
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.network-warning {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  display: none;
}

.network-warning.active {
  display: block;
}

.switch-network-btn {
  margin-top: 10px;
  padding: 8px 20px;
  background: #f0b90b;
  color: #000;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.switch-network-btn:hover {
  background: #f8d12f;
  transform: scale(1.05);
}