/* PHANTOM WALLET - $100M INVESTMENT GRADE IMPLEMENTATION */
.wallet-connect {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 12px 20px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(171, 125, 255, 0.25) !important;
  border-radius: 50px !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  position: relative !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 20px rgba(171, 125, 255, 0.15) !important;
}

.wallet-connect:hover {
  background: rgba(171, 125, 255, 0.12) !important;
  border-color: rgba(171, 125, 255, 0.4) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 30px rgba(171, 125, 255, 0.25) !important;
}

.wallet-connect:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 15px rgba(171, 125, 255, 0.2) !important;
}

.wallet-connect img {
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0 !important;
  filter: drop-shadow(0 0 8px rgba(171, 125, 255, 0.3)) !important;
}

.wallet-label {
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 0.02em !important;
}

.wallet-address {
  font-family: 'SF Mono', Monaco, monospace !important;
  font-size: 0.85rem !important;
  color: #b8b8b8 !important;
  background: rgba(0, 0, 0, 0.3) !important;
  padding: 2px 8px !important;
  border-radius: 12px !important;
  margin-left: 4px !important;
}

.wallet-dropdown {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  right: 0 !important;
  background: rgba(14, 15, 20, 0.95) !important;
  border: 1px solid rgba(171, 125, 255, 0.3) !important;
  border-radius: 16px !important;
  padding: 12px 0 !important;
  min-width: 220px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(30px) !important;
  z-index: 1000 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.wallet-dropdown.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.wallet-dropdown-item {
  display: block !important;
  padding: 12px 20px !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  font-weight: 500 !important;
}

.wallet-dropdown-item:hover {
  background: rgba(171, 125, 255, 0.1) !important;
  color: #fff !important;
}

/* Connected state */
.wallet-connect.connected {
  background: rgba(0, 255, 127, 0.08) !important;
  border-color: rgba(0, 255, 127, 0.3) !important;
}

.wallet-connect.connected:hover {
  background: rgba(0, 255, 127, 0.15) !important;
  border-color: rgba(0, 255, 127, 0.5) !important;
}
