.wallet-ux-install-card {
  margin: 0 auto;
  max-width: 360px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.15));
  background: var(--glass, rgba(255, 255, 255, 0.05));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.wallet-ux-install-title {
  color: var(--text, #ffffff);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.wallet-ux-install-desc {
  color: var(--text-dim, #cbd5e1);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.wallet-ux-install-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wallet-ux-btn {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.15));
  border-radius: 12px;
  color: var(--text, #ffffff);
  background: var(--glass, rgba(255, 255, 255, 0.05));
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.wallet-ux-btn-primary {
  background: var(--primary, #6366f1);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.wallet-ux-btn-primary:hover {
  background: var(--primary-hover, #4f46e5);
  transform: translateY(-1px);
}

.wallet-ux-btn-secondary:hover {
  border-color: var(--primary, #6366f1);
  color: var(--primary, #6366f1);
}

.wallet-ux-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.7);
  z-index: 300;
  padding: 20px;
}

.wallet-ux-modal.open {
  display: flex;
}

.wallet-ux-modal-content {
  width: 100%;
  max-width: 420px;
  background: rgba(30, 41, 59, 0.96);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.15));
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.wallet-ux-modal-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text, #ffffff);
}

.wallet-ux-modal-content p {
  color: var(--text-dim, #cbd5e1);
  font-size: 14px;
  line-height: 1.5;
}

.wallet-ux-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.wallet-ux-modal-actions .wallet-ux-btn {
  margin-bottom: 0;
  flex: 1;
}

@media (max-width: 480px) {
  .wallet-ux-modal-actions {
    flex-direction: column;
  }
}
